controlflow: move legend icon to plugin toolbar
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / cfv.h
index 3e469bab9514dca82d3eb6980f30426a363341c8..c8516e18e5774fa1c34a68dacb8e884cdb1d9e54 100644 (file)
 
 #include <gtk/gtk.h>
 #include <lttvwindow/mainwindow.h>
+#include <lttv/filter.h>
 #include "processlist.h"
+#include <lttvwindow/lttv_plugin_tab.h>
 
 extern GQuark LTT_NAME_CPU;
 
-
 #ifndef TYPE_DRAWING_T_DEFINED
 #define TYPE_DRAWING_T_DEFINED
 typedef struct _Drawing_t Drawing_t;
@@ -42,7 +43,13 @@ struct _ControlFlowData {
 
   GtkWidget *top_widget;
   Tab *tab;
-
+  LttvPluginTab *ptab;
+  
+  GtkWidget *hbox;
+  GtkWidget *toolbar; /* Vbox that contains the viewer's toolbar */
+  GtkToolItem *button_prop; /* Properties button. */
+  GtkToolItem *button_filter; /* Properties button. */
+  GtkToolItem *button_legend; /* Properties button. */
   GtkWidget *box; /* box that contains the hpaned. necessary for it to work */
   GtkWidget *h_paned;
 
@@ -60,14 +67,16 @@ struct _ControlFlowData {
   guint background_info_waiting; /* Number of background requests waited for
                                     in order to have all the info ready. */
 
+  LttvFilter *filter;
+
 } ;
 
 /* Control Flow Data constructor */
-ControlFlowData *guicontrolflow(void);
+ControlFlowData *guicontrolflow(LttvPluginTab *ptab);
 void
-guicontrolflow_destructor_full(ControlFlowData *control_flow_data);
+guicontrolflow_destructor_full(gpointer data);
 void
-guicontrolflow_destructor(ControlFlowData *control_flow_data);
+guicontrolflow_destructor(gpointer data);
 
 static inline GtkWidget *guicontrolflow_get_widget(
                                      ControlFlowData *control_flow_data)
This page took 0.023466 seconds and 4 git commands to generate.