add --fatal, -f, option : makes glib critical messages abort the program
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / eventhooks.h
index d9f3560589b2aabda1e78ae6ccd1e4fb7ab401a3..1f528be7ca13299265c7afe5514599edf2aabec5 100644 (file)
@@ -1,4 +1,23 @@
-/* eventhooks.c defines the hooks that are given to processTrace as parameter.
+/* This file is part of the Linux Trace Toolkit viewer
+ * Copyright (C) 2003-2004 Mathieu Desnoyers
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License Version 2 as
+ * published by the Free Software Foundation;
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
+ * MA 02111-1307, USA.
+ */
+
+
+/* eventhooks.h defines the hooks that are given to processTrace as parameter.
  * These hooks call the drawing API to draw the information on the screen,
  * using information from Context, but mostly state (running, waiting...).
  */
@@ -8,7 +27,7 @@
 #define _EVENT_HOOKS_H
 
 #include <gtk/gtk.h>
-#include <lttv/mainWindow.h>
+#include <lttvwindow/mainwindow.h>
 #include <ltt/time.h>
 
 #include "processlist.h"
  * library call, then used by the drawing hooks. Then, once all the events are
  * sent, it is freed by the hook called after the reading.
  */
-typedef struct _EventRequest
-{
-  ControlFlowData *control_flow_data;
-  LttTime time_begin, time_end;
-  gint  x_begin, x_end;
+//typedef struct _EventRequest
+//{
+//  ControlFlowData *control_flow_data;
+//  LttTime time_begin, time_end;
+//  gint  x_begin, x_end;
   /* Fill the Events_Context during the initial expose, before calling for
    * events.
    */
   //GArray Events_Context; //FIXME
-} EventRequest ;
+//} EventRequest ;
 
 
 
@@ -38,7 +57,7 @@ typedef struct _EventRequest
 
 void send_test_data(ProcessList *process_list, Drawing_t *drawing);
 
-GtkWidget *h_guicontrolflow(MainWindow *mw, LttvTracesetSelector * s, char * key);
+GtkWidget *h_guicontrolflow(Tab *tab, LttvTracesetSelector * s, char * key);
 
 int event_selected_hook(void *hook_data, void *call_data);
 
@@ -73,12 +92,17 @@ int draw_after_hook(void *hook_data, void *call_data);
 
 void draw_closure(gpointer key, gpointer value, gpointer user_data);
 
+int  before_data_request(void *hook_data, void *call_data);
 int  after_data_request(void *hook_data, void *call_data);
 
 
 gint update_time_window_hook(void *hook_data, void *call_data);
 gint update_current_time_hook(void *hook_data, void *call_data);
+gint traceset_notify(void *hook_data, void *call_data);
+gint redraw_notify(void *hook_data, void *call_data);
+gint continue_notify(void *hook_data, void *call_data);
 
+gint after_process_traceset_hook(void *hook_data, void *call_data);
 
 
 
This page took 0.031776 seconds and 4 git commands to generate.