git-svn-id: http://ltt.polymtl.ca/svn@239 04897980-b3bd-0310-b5e0-8ef037075253
[lttv.git] / ltt / branches / poly / include / lttv / gtkTraceSet.h
index 2cc493b72b25522bb09063f56a271419a0aff013..62aaf2ad4f8f75e0685fe9702cc7ac62723981e2 100644 (file)
@@ -24,7 +24,7 @@
  * @param view_constructor constructor of the viewer. 
  */
 
-void ToolbarItemReg(GdkPixmap * pixmap, char *tooltip, void *view_constructor);
+void ToolbarItemReg(char ** pixmap, char *tooltip, lttv_constructor view_constructor);
 
 
 /**
@@ -35,7 +35,7 @@ void ToolbarItemReg(GdkPixmap * pixmap, char *tooltip, void *view_constructor);
  * a reference to find out where the pixmap and tooltip are.
  */
 
-void ToolbarItemUnreg(void *view_constructor);
+void ToolbarItemUnreg(lttv_constructor view_constructor);
 
 
 /**
@@ -47,7 +47,7 @@ void ToolbarItemUnreg(void *view_constructor);
  * @param view_constructor constructor of the viewer. 
  */
 
-void MenuItemReg(char *menu_path, char *menu_text, void *view_constructor);
+void MenuItemReg(char *menu_path, char *menu_text, lttv_constructor view_constructor);
 
 
 /**
@@ -58,7 +58,7 @@ void MenuItemReg(char *menu_path, char *menu_text, void *view_constructor);
  * a reference to find out where the menu_path and menu_text are.
  */
 
-void MenuItemUnreg(void *view_constructor);
+void MenuItemUnreg(lttv_constructor view_constructor);
 
 
 /**
@@ -322,7 +322,8 @@ void SetHPaneDividor(mainWindow *main_win, gint position);
  * @param end the end time of the last event to be processed.
  */
 
-void processTraceset(mainWindow *main_win, LttTime start, LttTime end);
+void processTraceset(mainWindow *main_win, LttTime start, 
+                    LttTime end, unsigned maxNumEvents);
 
 
 /**
@@ -369,3 +370,11 @@ void contextRemoveHooks(mainWindow *main_win ,
                        LttvHooks *after_event);
 
 
+/**
+ * Function to get the life span of the traceset
+ * @param main_win the main window the viewer belongs to.
+ * @param start start time of the traceset.
+ * @param end end time of the traceset.
+ */
+
+void getTracesetTimeSpan(mainWindow *main_win, LttTime * start, LttTime* end);
This page took 0.02445 seconds and 4 git commands to generate.