execution mode added
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / drawing.h
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Mathieu Desnoyers
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
20 #ifndef _DRAWING_H
21 #define _DRAWING_H
22
23 #include <glib.h>
24 #include <gdk/gdk.h>
25 #include <gtk/gtk.h>
26 #include <ltt/ltt.h>
27 #include <lttv/tracecontext.h>
28 #include <lttv/state.h>
29 #include <lttvwindow/lttvwindow.h>
30 #include "cfv.h"
31 #include "drawitem.h"
32
33
34 #define SAFETY 50 // safety pixels at right and bottom of pixmap buffer
35
36
37 typedef enum _draw_color { COL_BLACK,
38 COL_WHITE,
39 COL_WAIT_FORK,
40 COL_WAIT_CPU,
41 COL_ZOMBIE,
42 COL_WAIT,
43 COL_RUN,
44 COL_USER_MODE,
45 COL_SYSCALL,
46 COL_TRAP,
47 COL_IRQ,
48 COL_MODE_UNKNOWN,
49 NUM_COLORS } draw_color;
50
51 extern GdkColor drawing_colors[NUM_COLORS];
52
53 /* This part of the viewer does :
54 * Draw horizontal lines, getting graphic context as arg.
55 * Copy region of the screen into another.
56 * Modify the boundaries to reflect a scale change. (resize)
57 * Refresh the physical screen with the pixmap
58 * A helper function is provided here to convert from time to process
59 * identifier to pixels and the contrary (will be useful for mouse selection).
60 * Insert an empty square in the drawing, moving the bottom part.
61 *
62 * Note: The last point is exactly why it would not be so easy to add the
63 * vertical line functionnality as in the original version of LTT. In order
64 * to do so, we should keep all processes in the list for the duration of
65 * all the trace instead of dynamically adding and removing them when we
66 * scroll. Another possibility is to redraw all the visible area when a new
67 * process is added to the list. The second solution seems more appropriate
68 * to me.
69 *
70 *
71 * The pixmap used has the width of the physical window, but the height
72 * of the shown processes.
73 */
74
75 typedef struct _Drawing_t Drawing_t;
76
77 struct _Drawing_t {
78 GtkWidget *vbox;
79 GtkWidget *drawing_area;
80 //GtkWidget *scrolled_window;
81 GtkWidget *hbox;
82 GtkWidget *viewport;
83 GtkWidget *scrollbar;
84
85 GtkWidget *ruler_hbox;
86 GtkWidget *ruler;
87 GtkWidget *padding;
88 GdkPixmap *pixmap;
89 ControlFlowData *control_flow_data;
90
91 PangoLayout *pango_layout;
92
93 gint height, width, depth;
94
95 /* X coordinate of damaged region */
96 gint damage_begin, damage_end; /* damaged region to be exposed,
97 updated per chunk */
98 LttTime last_start;
99 GdkGC *dotted_gc;
100 GdkGC *gc;
101 };
102
103 Drawing_t *drawing_construct(ControlFlowData *control_flow_data);
104 void drawing_destroy(Drawing_t *drawing);
105
106 GtkWidget *drawing_get_widget(Drawing_t *drawing);
107 GtkWidget *drawing_get_drawing_area(Drawing_t *drawing);
108
109 void drawing_draw_line( Drawing_t *drawing,
110 GdkPixmap *pixmap,
111 guint x1, guint y1,
112 guint x2, guint y2,
113 GdkGC *GC);
114
115 //void drawing_copy( Drawing_t *drawing,
116 // guint xsrc, guint ysrc,
117 // guint xdest, guint ydest,
118 // guint width, guint height);
119
120 /* Clear the drawing : make it 1xwidth. */
121 void drawing_clear(Drawing_t *drawing);
122
123 /* Insert a square corresponding to a new process in the list */
124 void drawing_insert_square(Drawing_t *drawing,
125 guint y,
126 guint height);
127
128 /* Remove a square corresponding to a removed process in the list */
129 void drawing_remove_square(Drawing_t *drawing,
130 guint y,
131 guint height);
132
133 void convert_pixels_to_time(
134 gint width,
135 guint x,
136 LttTime window_time_begin,
137 LttTime window_time_end,
138 LttTime *time);
139
140 void convert_time_to_pixels(
141 LttTime window_time_begin,
142 LttTime window_time_end,
143 LttTime time,
144 gint width,
145 guint *x);
146
147 void drawing_update_ruler(Drawing_t *drawing, TimeWindow *time_window);
148
149 void drawing_request_expose(EventsRequest *events_request,
150 LttvTracesetState *tss,
151 LttTime end_time);
152
153 void drawing_data_request_begin(EventsRequest *events_request,
154 LttvTracesetState *tss);
155 void drawing_chunk_begin(EventsRequest *events_request, LttvTracesetState *tss);
156
157 #endif // _DRAWING_H
This page took 0.032522 seconds and 5 git commands to generate.