X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2FAPI%2FgtkTraceSet.c;h=ac5d2406451b94ac307cdd3f275948f95604f30d;hb=10f2da9501711d45ea6d3130efaa1337c7315e31;hp=de756675e8443695b3c1d5920e427c6b7cce231b;hpb=a0d851edacdc42e69ba355ebdce5d4c150a81741;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c b/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c index de756675..ac5d2406 100644 --- a/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c +++ b/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c @@ -26,27 +26,6 @@ * Internal function parts */ -/** - * Function to remove toolbar from the GUI - * @param view_constructor constructor of the viewer. - */ - -void RemoveToolbar(lttv_constructor view_constructor) -{ - g_printf("Toolbar for the viewer will be removed\n"); -} - -/** - * Function to remove menu entry from the GUI - * @param view_constructor constructor of the viewer. - */ - -void RemoveMenu(lttv_constructor view_constructor) -{ - g_printf("Menu entry for the viewer will be removed\n"); -} - - /** * Function to set/update traceset for the viewers * @param main_win main window @@ -136,8 +115,9 @@ void ToolbarItemUnreg(lttv_constructor view_constructor) "viewers/toolbar", LTTV_POINTER, &value)); toolbar = (LttvToolbars*)*(value.v_pointer); - if(lttv_toolbars_remove(toolbar, view_constructor)) - RemoveToolbar(view_constructor); + main_window_remove_toolbar_item(view_constructor); + + lttv_toolbars_remove(toolbar, view_constructor); } @@ -185,8 +165,9 @@ void MenuItemUnreg(lttv_constructor view_constructor) "viewers/menu", LTTV_POINTER, &value)); menu = (LttvMenus*)*(value.v_pointer); - if(lttv_menus_remove(menu, view_constructor)) - RemoveMenu(view_constructor); + main_window_remove_menu_item(view_constructor); + + lttv_menus_remove(menu, view_constructor); } @@ -210,11 +191,11 @@ void UpdateStatus(mainWindow *main_win, char *info) * @param time_interval a pointer where time interval will be stored. */ -void GetTimeWindow(mainWindow *main_win, TimeWindow *Time_Window) +void GetTimeWindow(mainWindow *main_win, TimeWindow *time_window) { - //Time_Window->startTime = main_win->CurrentTab->Time_Window.startTime; - //Time_Window->Time_Width = main_win->CurrentTab->Time_Window.Time_Width; - *Time_Window = main_win->CurrentTab->Time_Window; + //time_window->startTime = main_win->CurrentTab->Time_Window.startTime; + //time_window->Time_Width = main_win->CurrentTab->Time_Window.Time_Width; + *time_window = main_win->CurrentTab->Time_Window; } /** @@ -226,11 +207,11 @@ void GetTimeWindow(mainWindow *main_win, TimeWindow *Time_Window) * @param time_interval a pointer where time interval will be stored. */ -void getTracesetTimeSpan(mainWindow *main_win, TimeInterval *Time_Interval) +void getTracesetTimeSpan(mainWindow *main_win, TimeInterval *time_interval) { - //Time_Window->startTime = main_win->CurrentTab->Time_Window.startTime; - //Time_Window->Time_Width = main_win->CurrentTab->Time_Window.Time_Width; - *Time_Interval = *(LTTV_TRACESET_CONTEXT(main_win->Traceset_Info->TracesetContext)->Time_Span); + //time_window->startTime = main_win->CurrentTab->Time_Window.startTime; + //time_window->Time_Width = main_win->CurrentTab->Time_Window.Time_Width; + *time_interval = *(LTTV_TRACESET_CONTEXT(main_win->Traceset_Info->TracesetContext)->Time_Span); } @@ -243,16 +224,16 @@ void getTracesetTimeSpan(mainWindow *main_win, TimeInterval *Time_Interval) * @param time_interval a pointer where time interval is stored. */ -void SetTimeWindow(mainWindow *main_win, TimeWindow *Time_Window) +void SetTimeWindow(mainWindow *main_win, TimeWindow *time_window) { LttvAttributeValue value; LttvHooks * tmp; - main_win->CurrentTab->Time_Window = *Time_Window; + main_win->CurrentTab->Time_Window = *time_window; g_assert(lttv_iattribute_find_by_path(main_win->CurrentTab->Attributes, "hooks/updatetimewindow", LTTV_POINTER, &value)); tmp = (LttvHooks*)*(value.v_pointer); if(tmp == NULL) return; - lttv_hooks_call(tmp, Time_Window); + lttv_hooks_call(tmp, time_window); }