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