File: monitor.h

package info (click to toggle)
nam 1.15-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 29,112 kB
  • sloc: cpp: 17,340; tcl: 10,655; sh: 2,997; ansic: 1,252; makefile: 139; perl: 66
file content (60 lines) | stat: -rw-r--r-- 1,190 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef nam_monitor_h
#define nam_monitor_h

class Animation;
class NetView;
class View;
class Node;

struct MonPacket {
  int id;
};

struct MonRoute {
  int src;
  int group;
  Node *node;
};

/*MonState is used when an Animation deletes itself, but it is likely
  that another animation will be created soon that should inherit the
  monitor*/
#define MON_PACKET 1
#define MON_ROUTE 2
struct MonState {
  int type;
  union {
    MonPacket pkt;
    MonRoute route;
  };
};

class Monitor {
public:
  Monitor(int mon, Animation *a, double size);
  ~Monitor();
  void update(double now, char *result, int len);
  inline Monitor *next() const { return next_; }  
  void next(Monitor *next) { next_=next; }
  Animation *anim() const { return anim_; }
  void anim(Animation *a) { anim_=a;}
  void draw (View *nv, float x, float y);
  void size(double size);
  void draw_monitor(View *nv, float ymin, float ymax) const;

  int monitor_number() const {return mon_num_;}
  void delete_monitor_object(Animation *m);
  struct MonState *mon_state_;
protected:
  Monitor* next_;
  int mon_num_;
  Animation *anim_;
  int paint_;
  float x_;
  float y_;
  double size_;
  char label_[20];
};


#endif