change function names
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Event_Hooks.h
index ef4308755cb5ed2b297db725b1f0d780a1cac6c4..21f7df5cd3d16d1113a502a60fe2ce0999994882 100644 (file)
@@ -9,15 +9,19 @@
 
 #include <gtk/gtk.h>
 #include <lttv/mainWindow.h>
+#include "Process_List.h"
+#include "Drawing.h"
 
-GtkWidget *hGuiControlFlow(mainWindow *pmParentWindow);
+void send_test_data(ProcessList *Process_List, Drawing_t *Drawing);
 
-int Event_Selected_Hook(void *hook_data, void *call_data);
+GtkWidget *h_guicontrolflow(MainWindow *pmParentWindow, LttvTracesetSelector * s, char * key);
+
+int event_selected_hook(void *hook_data, void *call_data);
 
 /* Hook called before drawing. Gets the initial context at the beginning of the
  * drawing interval and copy it to the context in Event_Request.
  */
-int Draw_Before_Hook(void *hook_data, void *call_data);
+int draw_before_hook(void *hook_data, void *call_data);
 
 /*
  * The draw event hook is called by the reading API to have a
@@ -39,8 +43,12 @@ int Draw_Before_Hook(void *hook_data, void *call_data);
  * The choice of lines'color is defined by the context of the last event for this
  * process.
  */
-int Draw_Event_Hook(void *hook_data, void *call_data);
+int draw_event_hook(void *hook_data, void *call_data);
+
+int draw_after_hook(void *hook_data, void *call_data);
+
+void update_time_window_hook(void *hook_data, void *call_data);
+void update_current_time_hook(void *hook_data, void *call_data);
 
-int Draw_After_Hook(void *hook_data, void *call_data);
 
 #endif // _EVENT_HOOKS_H
This page took 0.023342 seconds and 4 git commands to generate.