viewer -> lttvwindow name change
[lttv.git] / ltt / branches / poly / lttv / modules / gui / lttvwindow / lttvwindow / mainwindow.h
CommitLineData
d2aa3c05 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Xiangxiu 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
19#ifndef _MAIN_WINDOW_
20#define _MAIN_WINDOW_
21
22#include <gtk/gtk.h>
23
24#include <ltt/ltt.h>
25#include <lttv/attribute.h>
26#include <lttv/traceset.h>
d8f124de 27#include <lttv/tracecontext.h>
d2aa3c05 28
13f86ce2 29#include <lttvwindow/common.h>
30#include <lttvwindow/gtkmultivpaned.h>
d2aa3c05 31#include <lttv/hook.h>
32#include <lttv/stats.h>
33
d2aa3c05 34typedef struct _TracesetInfo {
35 //FIXME? TracesetContext and stats in same or different variable ?
36 LttvTracesetStats * traceset_context;
37 LttvTraceset * traceset;
38} TracesetInfo ;
39
40
41struct _MainWindow{
42 GtkWidget* mwindow; /* Main Window */
43 int window_width;
44
45 /* Status bar information */
46 // guint MainSBarContextID; /* Context ID of main status bar */
47 // guint BegTimeSBarContextID; /* Context ID of BegTime status bar */
48 // guint EndTimeSBarContextID; /* Context ID of EndTime status bar */
49
50 /* Child windows */
51 //openTracesetWindow* OpenTracesetWindow;/* Window to get prof and proc file*/
52 //viewTimeFrameWindow* ViewTimeFrameWindow;/*Window to select time frame */
53 //gotoEventWindow* GotoEventWindow; /*search for event description*/
54 //openFilterWindow* OpenFilterWindow; /* Open a filter selection window */
55 GtkWidget* help_contents;/* Window to display help contents */
56 GtkWidget* about_box; /* Window about information */
57
58 // lttv_trace_filter * filter; /* trace filter associated with the window */
59
60 /* Attributes for trace reading hooks local to the main window */
61 LttvIAttribute * attributes;
62
63 Tab * tab;
64 Tab * current_tab;
65
d2aa3c05 66};
67
68
69struct _Tab{
70 GtkWidget * label;
71 GtkMultiVPaned * multi_vpaned;
72
73 // startTime is the left of the visible area. Corresponds to the scrollbar
74 // value.
75 // Time_Width is a zoom dependant value (corresponding to page size)
76 TimeWindow time_window;
77
78 // The current time is the time selected in the visible area by the user,
79 // not the scrollbar value.
80 LttTime current_time;
81 LttvIAttribute * attributes;
82
83 struct _Tab * next;
84 MainWindow * mw;
85
86 /* Traceset related information */
87 TracesetInfo * traceset_info;
a43d67ba 88
89 /* A list of time requested for the next process trace */
90 GArray *time_requests;
91 gboolean time_request_pending;
d2aa3c05 92};
93
d2aa3c05 94#endif /* _MAIN_WINDOW_ */
95
96
This page took 0.027687 seconds and 4 git commands to generate.