summaryrefslogtreecommitdiff
path: root/objects/objcount_controller.hh
diff options
context:
space:
mode:
Diffstat (limited to 'objects/objcount_controller.hh')
-rw-r--r--objects/objcount_controller.hh50
1 files changed, 50 insertions, 0 deletions
diff --git a/objects/objcount_controller.hh b/objects/objcount_controller.hh
new file mode 100644
index 0000000..6af5ba7
--- /dev/null
+++ b/objects/objcount_controller.hh
@@ -0,0 +1,50 @@
+#ifndef __OBJECTS_OBJCOUNT_CONTROLLER_HH__
+#define __OBJECTS_OBJCOUNT_CONTROLLER_HH__
+
+#include "objects_parser.hh"
+#include "objcount_window.hh"
+
+namespace rtfl {
+
+namespace objects {
+
+class ObjCountController: public ObjectsControllerBase
+{
+private:
+ ObjCountTable *table;
+
+public:
+ ObjCountController (ObjCountTable *table) { this->table = table; }
+
+ 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_OBJCOUNT_CONTROLLER_HH__