X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2Fcontrolflow%2Fcfv.h;h=c8516e18e5774fa1c34a68dacb8e884cdb1d9e54;hb=fc5000a1b014e55f5f9cb0b9f185f77e931b0dd0;hp=31c42fdf79de148d91428d5a058f252d93af3e08;hpb=6cec4cd266bde25f87dad0a059fd98c7381eb8c2;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/cfv.h b/ltt/branches/poly/lttv/modules/gui/controlflow/cfv.h index 31c42fdf..c8516e18 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/cfv.h +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/cfv.h @@ -23,11 +23,12 @@ #include #include +#include #include "processlist.h" +#include 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(Tab *tab); +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)