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
|
#ifndef __OBJECTS_OBJVIEW_CONTROLLER_HH__
#define __OBJECTS_OBJVIEW_CONTROLLER_HH__
#include "objects_parser.hh"
#include "objview_graph.hh"
namespace rtfl {
namespace objects {
class ObjViewController: public ObjectsControllerBase
{
private:
ObjViewGraph *graph;
public:
ObjViewController (ObjViewGraph *graph) { this->graph = graph; }
void objMsg (tools::CommonLineInfo *info, const char *id,
const char *aspect, int prio, const char *message);
void objMark (tools::CommonLineInfo *info, const char *id,
const char *aspect, int prio, const char *message);
void objMsgStart (tools::CommonLineInfo *info, const char *id);
void objMsgEnd (tools::CommonLineInfo *info, const char *id);
void objEnter (tools::CommonLineInfo *info, const char *id,
const char *aspect, int prio, const char *funname,
const char *args);
void objLeave (tools::CommonLineInfo *info, const char *id,
const char *vals);
void objCreate (tools::CommonLineInfo *info, const char *id,
const char *klass);
void objIdent (tools::CommonLineInfo *info, const char *id1,
const char *id2);
void objNoIdent (tools::CommonLineInfo *info);
void objAssoc (tools::CommonLineInfo *info, const char *parent,
const char *child);
void objSet (tools::CommonLineInfo *info, const char *id, const char *var,
const char *val);
void objClassColor (tools::CommonLineInfo *info, const char *klass,
const char *color);
void objObjectColor (tools::CommonLineInfo *info, const char *id,
const char *color);
void objDelete (tools::CommonLineInfo *info, const char *id);
};
} // namespace objects
} // namespace rtfl
#endif // __OBJECTS_OBJVIEW_CONTROLLER_HH__
|