Remove #BABEL_CLEANUP for some function definition
[lttv.git] / lttv / modules / gui / controlflow / drawing.h
CommitLineData
ce0214a6 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
f0d936c0 20#ifndef _DRAWING_H
21#define _DRAWING_H
22
558aa013 23#include <glib.h>
76a67e8a 24#include <gdk/gdk.h>
25#include <gtk/gtk.h>
fa2c4dbe 26#include <ltt/ltt.h>
88bf15f0 27#ifdef BABEL_CLEANUP
ca0f8a8e 28#include <lttv/tracecontext.h>
88bf15f0 29#endif //babel_cleanup
ca0f8a8e 30#include <lttv/state.h>
31#include <lttvwindow/lttvwindow.h>
d66666fe 32#include "cfv.h"
33#include "drawitem.h"
f0d936c0 34
432a7065 35
a56a1ba4 36#define SAFETY 50 // safety pixels at right and bottom of pixmap buffer
432a7065 37
9a1ec01b 38typedef enum _draw_color {
39 COL_BLACK,
40 COL_WHITE,
41 COL_RUN_USER_MODE,/* green */
42 COL_RUN_SYSCALL, /* pale blue */
43 COL_RUN_TRAP, /* yellow */
faf074a3 44 COL_RUN_IRQ, /* orange */
45 COL_RUN_SOFT_IRQ, /* red */
9a1ec01b 46 COL_WAIT, /* dark red */
47 COL_WAIT_CPU, /* dark yellow */
48 COL_ZOMBIE, /* dark purple */
49 COL_WAIT_FORK, /* dark green */
50 COL_EXIT, /* "less dark" magenta */
c7620c79 51 COL_DEAD, /* black */
9a1ec01b 52 COL_MODE_UNKNOWN, /* white */
53 COL_UNNAMED, /* white */
54 NUM_COLORS } draw_color;
e800cf84 55
56extern GdkColor drawing_colors[NUM_COLORS];
57
fa2c4dbe 58/* This part of the viewer does :
76a67e8a 59 * Draw horizontal lines, getting graphic context as arg.
fa2c4dbe 60 * Copy region of the screen into another.
76a67e8a 61 * Modify the boundaries to reflect a scale change. (resize)
847b479d 62 * Refresh the physical screen with the pixmap
189a5d08 63 * A helper function is provided here to convert from time to process
fa2c4dbe 64 * identifier to pixels and the contrary (will be useful for mouse selection).
5f16133f 65 * Insert an empty square in the drawing, moving the bottom part.
66 *
189a5d08 67 * Note: The last point is exactly why it would not be so easy to add the
68 * vertical line functionnality as in the original version of LTT. In order
69 * to do so, we should keep all processes in the list for the duration of
70 * all the trace instead of dynamically adding and removing them when we
71 * scroll. Another possibility is to redraw all the visible area when a new
72 * process is added to the list. The second solution seems more appropriate
73 * to me.
74 *
75 *
5f16133f 76 * The pixmap used has the width of the physical window, but the height
77 * of the shown processes.
fa2c4dbe 78 */
f0d936c0 79
e8d11122 80#ifndef TYPE_DRAWING_T_DEFINED
81#define TYPE_DRAWING_T_DEFINED
f0d936c0 82typedef struct _Drawing_t Drawing_t;
e8d11122 83#endif //TYPE_DRAWING_T_DEFINED
84
85#ifndef TYPE_CONTROLFLOWDATA_DEFINED
86#define TYPE_CONTROLFLOWDATA_DEFINED
87typedef struct _ControlFlowData ControlFlowData;
88#endif //TYPE_CONTROLFLOWDATA_DEFINED
f0d936c0 89
f7afe191 90struct _Drawing_t {
3cb8b205 91 GtkWidget *vbox;
14963be0 92 GtkWidget *drawing_area;
51705146 93 //GtkWidget *scrolled_window;
94 GtkWidget *hbox;
95 GtkWidget *viewport;
96 GtkWidget *scrollbar;
97
98 GtkWidget *ruler_hbox;
3cb8b205 99 GtkWidget *ruler;
51705146 100 GtkWidget *padding;
1c736ed5 101 //GdkPixmap *pixmap;
68997a22 102 ControlFlowData *control_flow_data;
a56a1ba4 103
104 PangoLayout *pango_layout;
105
a43d67ba 106 gint height, width, depth;
0af21a59 107 /* height and width of allocated buffer pixmap */
108 gint alloc_height, alloc_width;
a56a1ba4 109
ca0f8a8e 110 /* X coordinate of damaged region */
a2b3ec75 111 gint damage_begin, damage_end; /* damaged region to be exposed,
112 updated per chunk */
113 LttTime last_start;
ca0f8a8e 114 GdkGC *dotted_gc;
51705146 115 GdkGC *gc;
6cec4cd2 116 GdkGC *ruler_gc_butt;
117 GdkGC *ruler_gc_round;
dbd243b1 118
119 /* Position of the horizontal selector, -1 for none */
120 gint horizontal_sel;
f7afe191 121};
122
68997a22 123Drawing_t *drawing_construct(ControlFlowData *control_flow_data);
501d5405 124void drawing_destroy(Drawing_t *drawing);
f0d936c0 125
501d5405 126GtkWidget *drawing_get_widget(Drawing_t *drawing);
3cb8b205 127GtkWidget *drawing_get_drawing_area(Drawing_t *drawing);
128
2eef04b5 129
130void drawing_data_request(Drawing_t *drawing,
2eef04b5 131 gint x, gint y,
132 gint width,
133 gint height);
134
501d5405 135void drawing_draw_line( Drawing_t *drawing,
b6db18f8 136 GdkPixmap *pixmap,
a56a1ba4 137 guint x1, guint y1,
138 guint x2, guint y2,
139 GdkGC *GC);
76a67e8a 140
501d5405 141//void drawing_copy( Drawing_t *drawing,
a56a1ba4 142// guint xsrc, guint ysrc,
143// guint xdest, guint ydest,
144// guint width, guint height);
f0d936c0 145
b9a010a2 146/* Clear the drawing : make it 1xwidth. */
147void drawing_clear(Drawing_t *drawing);
148
5f16133f 149/* Insert a square corresponding to a new process in the list */
501d5405 150void drawing_insert_square(Drawing_t *drawing,
a56a1ba4 151 guint y,
152 guint height);
5f16133f 153
154/* Remove a square corresponding to a removed process in the list */
501d5405 155void drawing_remove_square(Drawing_t *drawing,
a56a1ba4 156 guint y,
157 guint height);
5f16133f 158
3cb8b205 159void drawing_update_ruler(Drawing_t *drawing, TimeWindow *time_window);
921a9317 160
b9a010a2 161void drawing_request_expose(EventsRequest *events_request,
b9a010a2 162 LttTime end_time);
163
921a9317
YB
164void drawing_data_request_begin(EventsRequest *events_request);
165
166void drawing_chunk_begin(EventsRequest *events_request, LttvTraceset *ts);
167
dbd243b1 168
169
170void
171tree_row_activated(GtkTreeModel *treemodel,
172 GtkTreePath *arg1,
173 GtkTreeViewColumn *arg2,
174 gpointer user_data);
175
6550d711 176
177/* convert_pixels_to_time
178 *
179 * Convert from window pixel and time interval to an absolute time.
180 */
04cd9a1e 181static inline void convert_pixels_to_time(
6550d711 182 gint width,
183 guint x,
184 TimeWindow time_window,
185 LttTime *time)
186{
187 double time_d;
188
189 time_d = time_window.time_width_double;
190 time_d = time_d / (double)width * (double)x;
191 *time = ltt_time_from_double(time_d);
192 *time = ltt_time_add(time_window.start_time, *time);
193}
194
195
04cd9a1e 196static inline void convert_time_to_pixels(
6550d711 197 TimeWindow time_window,
198 LttTime time,
199 int width,
200 guint *x)
201{
202 double time_d;
203#ifdef EXTRA_CHECK
204 g_assert(ltt_time_compare(window_time_begin, time) <= 0 &&
205 ltt_time_compare(window_time_end, time) >= 0);
206#endif //EXTRA_CHECK
207
208 time = ltt_time_sub(time, time_window.start_time);
209
210 time_d = ltt_time_to_double(time);
211
212 if(time_window.time_width_double == 0.0) {
213 g_assert(time_d == 0.0);
214 *x = 0;
215 } else {
216 *x = (guint)(time_d / time_window.time_width_double * (double)width);
217 }
218
219}
220
221
222
f0d936c0 223#endif // _DRAWING_H
This page took 0.07928 seconds and 4 git commands to generate.