more tab fixes
[lttv.git] / ltt / branches / poly / lttv / modules / gui / lttvwindow / lttvwindow / init_module.c
CommitLineData
e076699e 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Mathieu Desnoyers and XangXiu Yang
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
fb87279e 19/*
20 * Initial main.c file generated by Glade. Edit as required.
21 * Glade will not overwrite this file.
22 */
23
24#ifdef HAVE_CONFIG_H
25# include <config.h>
26#endif
27
28#include <gtk/gtk.h>
29
fb87279e 30#include <lttv/lttv.h>
0a6808c0 31#include <lttv/attribute.h>
32#include <lttv/hook.h>
33#include <lttv/option.h>
34#include <lttv/module.h>
d8f124de 35#include <lttv/tracecontext.h>
ec25ff5e 36#include <lttv/state.h>
6b1d3120 37#include <lttv/stats.h>
13f86ce2 38#include <lttvwindow/menu.h>
39#include <lttvwindow/toolbar.h>
fb87279e 40
41#include "interface.h"
42#include "support.h"
13f86ce2 43#include <lttvwindow/mainwindow.h>
2d262115 44#include <lttvwindow/mainwindow-private.h>
fb87279e 45#include "callbacks.h"
a5dcde2f 46#include <ltt/trace.h>
47
fb87279e 48
ec25ff5e 49/** Array containing instanced objects. */
68b48a45 50GSList * g_main_window_list = NULL ;
ec25ff5e 51
f7afe191 52LttvHooks
ec25ff5e 53 *main_hooks;
54
f7afe191 55/* Initial trace from command line */
68b48a45 56LttvTrace *g_init_trace = NULL;
f7afe191 57
ec25ff5e 58static char *a_trace;
59
60void lttv_trace_option(void *hook_data)
61{
308711e5 62 LttTrace *trace;
63
64 trace = ltt_trace_open(a_trace);
65 if(trace == NULL) g_critical("cannot open trace %s", a_trace);
68b48a45 66 g_init_trace = lttv_trace_new(trace);
ec25ff5e 67}
fb87279e 68
69/*****************************************************************************
70 * Functions for module loading/unloading *
71 *****************************************************************************/
72/**
73 * plugin's init function
74 *
75 * This function initializes the GUI.
76 */
77
68b48a45 78static gboolean window_creation_hook(void *hook_data, void *call_data)
fb87279e 79{
2a2fa4f0 80 g_debug("GUI window_creation_hook()");
fb87279e 81#ifdef ENABLE_NLS
82 bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
83 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
84 textdomain (GETTEXT_PACKAGE);
85#endif
86
87 gtk_set_locale ();
08b1c66e 88 gtk_init (&lttv_argc, &lttv_argv);
fb87279e 89
90 add_pixmap_directory (PACKAGE_DATA_DIR "/" PACKAGE "/pixmaps");
91 add_pixmap_directory ("pixmaps");
077ba5c0 92 add_pixmap_directory ("../modules/gui/main/pixmaps");
fb87279e 93
08b1c66e 94 construct_main_window(NULL);
fb87279e 95
96 gtk_main ();
0a6808c0 97
ec25ff5e 98 return FALSE;
0a6808c0 99}
100
08b1c66e 101static void init() {
0a6808c0 102
ec25ff5e 103 LttvAttributeValue value;
f7afe191 104
105 // Global attributes only used for interaction with main() here.
ec25ff5e 106 LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes());
107
2a2fa4f0 108 g_debug("GUI init()");
558aa013 109
ec25ff5e 110 lttv_option_add("trace", 't',
111 "add a trace to the trace set to analyse",
112 "pathname of the directory containing the trace",
113 LTTV_OPT_STRING, &a_trace, lttv_trace_option, NULL);
114
ec25ff5e 115 g_assert(lttv_iattribute_find_by_path(attributes, "hooks/main/before",
116 LTTV_POINTER, &value));
117 g_assert((main_hooks = *(value.v_pointer)) != NULL);
118
2d262115 119 lttv_hooks_add(main_hooks, window_creation_hook, NULL, LTTV_PRIO_DEFAULT);
0a6808c0 120
fb87279e 121}
122
7a859036 123void
bca3b81f 124main_window_destructor(MainWindow * mw)
7a859036 125{
2d262115 126 g_assert(GTK_IS_WIDGET(mw->mwindow));
127 gtk_widget_destroy(mw->mwindow);
fb87279e 128}
129
130
fb87279e 131/**
132 * plugin's destroy function
133 *
134 * This function releases the memory reserved by the module and unregisters
135 * everything that has been registered in the gtkTraceSet API.
136 */
08b1c66e 137static void destroy() {
fb87279e 138
7a859036 139 LttvAttributeValue value;
308711e5 140 LttvTrace *trace;
2d262115 141 GSList *iter = NULL;
142
ec25ff5e 143 lttv_option_remove("trace");
144
08b1c66e 145 lttv_hooks_remove_data(main_hooks, window_creation_hook, NULL);
ec25ff5e 146
2a2fa4f0 147 g_debug("GUI destroy()");
fb87279e 148
68b48a45 149 if(g_main_window_list){
2d262115 150 for(iter=g_main_window_list;iter!=NULL;iter=g_slist_next(iter)) {
151 main_window_destructor((MainWindow*)iter->data);
152 }
68b48a45 153 g_slist_free(g_main_window_list);
2176f952 154 }
ec25ff5e 155
fb87279e 156}
157
158
db2c9c14 159LTTV_MODULE("lttvwindow", "Viewer main window", \
08b1c66e 160 "Viewer with multiple windows, tabs and panes for graphical modules", \
2d262115 161 init, destroy, "stats", "option")
This page took 0.035457 seconds and 4 git commands to generate.