correct bug : need EXIT and ZOMBIE states : one for exit event, the other for schedul...
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / drawing.h
index 1139d48b6127ba716b3141a100757617a958e621..30b70f1ea6eb6874c3ba9ca88375d7087df9a07b 100644 (file)
 
 #define SAFETY 50 // safety pixels at right and bottom of pixmap buffer
 
+
+typedef enum _draw_color { COL_BLACK,
+                           COL_WHITE,
+                           COL_WAIT_FORK,
+                           COL_WAIT_CPU,
+                           COL_EXIT,
+                           COL_ZOMBIE,
+                           COL_WAIT,
+                           COL_RUN,
+                           COL_USER_MODE,
+                           COL_SYSCALL,
+                           COL_TRAP,
+                           COL_IRQ,
+                           COL_MODE_UNKNOWN,
+                           NUM_COLORS } draw_color;
+
+extern GdkColor drawing_colors[NUM_COLORS];
+
 /* This part of the viewer does :
  * Draw horizontal lines, getting graphic context as arg.
  * Copy region of the screen into another.
@@ -76,10 +94,14 @@ struct _Drawing_t {
   gint      height, width, depth;
   
   /* X coordinate of damaged region */
-  gint      damage_begin, damage_end;
-  LttTime   last_start;
+  gint      damage_begin, damage_end; /* damaged region to be exposed,
+                                         updated per chunk */
+  LttTime   last_start;               
   GdkGC     *dotted_gc;
   GdkGC     *gc;
+
+  /* Position of the horizontal selector, -1 for none */
+  gint horizontal_sel;
 };
 
 Drawing_t *drawing_construct(ControlFlowData *control_flow_data);
@@ -136,4 +158,12 @@ void drawing_data_request_begin(EventsRequest *events_request,
                                 LttvTracesetState *tss);
 void drawing_chunk_begin(EventsRequest *events_request, LttvTracesetState *tss);
 
+
+
+void
+tree_row_activated(GtkTreeModel *treemodel,
+                   GtkTreePath *arg1,
+                   GtkTreeViewColumn *arg2,
+                   gpointer user_data);
+
 #endif // _DRAWING_H
This page took 0.022814 seconds and 4 git commands to generate.