now, main window resize will change the scale, not time interval
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Drawing.c
CommitLineData
fa2c4dbe 1
76a67e8a 2#include <gtk/gtk.h>
3#include <gdk/gdk.h>
f0d936c0 4
831a876d 5#include <lttv/processTrace.h>
f66eba62 6#include <lttv/gtkTraceSet.h>
7#include <lttv/hook.h>
831a876d 8
f66eba62 9#include "Drawing.h"
10#include "CFV.h"
11#include "CFV-private.h"
12#include "Event_Hooks.h"
6d5ed1c3 13
14#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
15#define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
16
f0d936c0 17/*****************************************************************************
18 * Drawing functions *
19 *****************************************************************************/
20
831a876d 21//FIXME Colors will need to be dynamic. Graphic context part not done so far.
f0d936c0 22typedef enum
23{
24 RED,
25 GREEN,
26 BLUE,
27 WHITE,
28 BLACK
29
30} ControlFlowColors;
31
32/* Vector of unallocated colors */
33static GdkColor CF_Colors [] =
34{
35 { 0, 0xffff, 0x0000, 0x0000 }, // RED
36 { 0, 0x0000, 0xffff, 0x0000 }, // GREEN
37 { 0, 0x0000, 0x0000, 0xffff }, // BLUE
38 { 0, 0xffff, 0xffff, 0xffff }, // WHITE
39 { 0, 0x0000, 0x0000, 0x0000 } // BLACK
40};
41
42
831a876d 43/* Function responsible for updating the exposed area.
44 * It must call processTrace() to ask for this update.
432a7065 45 * Note : this function cannot clear the background, because it may
46 * erase drawing already present (SAFETY).
831a876d 47 */
4c69e0cc 48void drawing_data_request(Drawing_t *Drawing,
f7afe191 49 GdkPixmap **Pixmap,
847b479d 50 gint x, gint y,
4c69e0cc 51 gint width,
847b479d 52 gint height)
53{
d9b7ca88 54 if(width < 0) return ;
55 if(height < 0) return ;
f66eba62 56 ControlFlowData *control_flow_data =
57 (ControlFlowData*)g_object_get_data(
58 G_OBJECT(
59 Drawing->Drawing_Area_V),
60 "Control_Flow_Data");
61
62 LttTime start, end;
63 LttTime window_end = ltt_time_add(control_flow_data->Time_Window.time_width,
64 control_flow_data->Time_Window.start_time);
65
e9a9c513 66 g_critical("req : window_end : %u, %u", window_end.tv_sec,
67 window_end.tv_nsec);
68
69 g_critical("req : time width : %u, %u", control_flow_data->Time_Window.time_width.tv_sec,
70 control_flow_data->Time_Window.time_width.tv_nsec);
71
72 g_critical("x is : %i, x+width is : %i", x, x+width);
73
80a52ff8 74 convert_pixels_to_time(Drawing->Drawing_Area_V->allocation.width, x,
f66eba62 75 &control_flow_data->Time_Window.start_time,
76 &window_end,
77 &start);
78
80a52ff8 79 convert_pixels_to_time(Drawing->Drawing_Area_V->allocation.width, x + width,
f66eba62 80 &control_flow_data->Time_Window.start_time,
81 &window_end,
82 &end);
83
84 LttvTracesetContext * tsc =
85 get_traceset_context(control_flow_data->Parent_Window);
86
432a7065 87 //send_test_process(
e9a9c513 88 //guicontrolflow_get_process_list(Drawing->Control_Flow_Data),
89 //Drawing);
f66eba62 90 //send_test_drawing(
91 //guicontrolflow_get_process_list(Drawing->Control_Flow_Data),
92 //Drawing, *Pixmap, x, y, width, height);
831a876d 93
8d088fb2 94 // Let's call processTrace() !!
f66eba62 95 EventRequest event_request; // Variable freed at the end of the function.
96 event_request.Control_Flow_Data = control_flow_data;
97 event_request.time_begin = start;
98 event_request.time_end = end;
99
e9a9c513 100 g_critical("req : start : %u, %u", event_request.time_begin.tv_sec,
101 event_request.time_begin.tv_nsec);
102
103 g_critical("req : end : %u, %u", event_request.time_end.tv_sec,
104 event_request.time_end.tv_nsec);
105
f66eba62 106 LttvHooks *event = lttv_hooks_new();
80a52ff8 107 state_add_event_hooks_api(control_flow_data->Parent_Window);
f66eba62 108 lttv_hooks_add(event, draw_event_hook, &event_request);
109
110 lttv_process_traceset_seek_time(tsc, start);
111 lttv_traceset_context_add_hooks(tsc,
112 NULL, NULL, NULL, NULL, NULL, NULL,
113 NULL, NULL, NULL, event, NULL);
114 lttv_process_traceset(tsc, end, G_MAXULONG);
115 lttv_traceset_context_remove_hooks(tsc, NULL, NULL, NULL, NULL, NULL, NULL,
116 NULL, NULL, NULL, event, NULL);
117
80a52ff8 118 state_remove_event_hooks_api(control_flow_data->Parent_Window);
f66eba62 119 lttv_hooks_destroy(event);
847b479d 120}
121
122/* Callbacks */
123
124
125/* Create a new backing pixmap of the appropriate size */
bd24a9af 126/* As the scaling will always change, it's of no use to copy old
127 * pixmap.
128 */
847b479d 129static gboolean
130configure_event( GtkWidget *widget, GdkEventConfigure *event,
131 gpointer user_data)
f0d936c0 132{
847b479d 133 Drawing_t *Drawing = (Drawing_t*)user_data;
f0d936c0 134
86c520a7 135
136 /* First, get the new time interval of the main window */
137 /* we assume (see documentation) that the main window
138 * has updated the time interval before this configure gets
139 * executed.
140 */
141 get_time_window(Drawing->Control_Flow_Data->Parent_Window,
bd24a9af 142 &Drawing->Control_Flow_Data->Time_Window);
143
f7afe191 144 /* New Pixmap, size of the configure event */
bd24a9af 145 //GdkPixmap *Pixmap = gdk_pixmap_new(widget->window,
146 // widget->allocation.width + SAFETY,
147 // widget->allocation.height + SAFETY,
148 // -1);
847b479d 149
f7afe191 150 g_critical("drawing configure event");
bd24a9af 151 g_critical("New draw size : %i by %i",widget->allocation.width, widget->allocation.height);
152
153
154 if (Drawing->Pixmap)
155 gdk_pixmap_unref(Drawing->Pixmap);
156
f7afe191 157 /* If no old Pixmap present */
bd24a9af 158 //if(Drawing->Pixmap == NULL)
847b479d 159 {
f7afe191 160 Drawing->Pixmap = gdk_pixmap_new(
161 widget->window,
432a7065 162 widget->allocation.width + SAFETY,
163 widget->allocation.height + SAFETY,
f7afe191 164 //ProcessList_get_height
165 // (GuiControlFlow_get_Process_List(Drawing->Control_Flow_Data)),
166 -1);
432a7065 167 Drawing->width = widget->allocation.width;
168 Drawing->height = widget->allocation.height;
bd24a9af 169
432a7065 170
171 // Clear the image
172 gdk_draw_rectangle (Drawing->Pixmap,
173 widget->style->white_gc,
174 TRUE,
175 0, 0,
176 widget->allocation.width+SAFETY,
177 widget->allocation.height+SAFETY);
178
bd24a9af 179 //g_info("init data request");
432a7065 180
181
182 /* Initial data request */
bd24a9af 183 // Do not need to ask for data of 1 pixel : not synchronized with
184 // main window time at this moment.
432a7065 185 drawing_data_request(Drawing, &Drawing->Pixmap, 0, 0,
847b479d 186 widget->allocation.width,
432a7065 187 widget->allocation.height);
bd24a9af 188
189 Drawing->width = widget->allocation.width;
190 Drawing->height = widget->allocation.height;
191
192 return TRUE;
193
194
847b479d 195
196 }
bd24a9af 197#ifdef NOTUSE
847b479d 198// /* Draw empty background */
199// gdk_draw_rectangle (Pixmap,
200// widget->style->black_gc,
201// TRUE,
202// 0, 0,
203// widget->allocation.width,
204// widget->allocation.height);
205
bd24a9af 206 /* Copy old data to new pixmap */
207 gdk_draw_drawable (Pixmap,
208 widget->style->white_gc,
209 Drawing->Pixmap,
210 0, 0,
211 0, 0,
212 -1, -1);
213
80a52ff8 214 if (Drawing->Pixmap)
215 gdk_pixmap_unref(Drawing->Pixmap);
216
217 Drawing->Pixmap = Pixmap;
432a7065 218
219 // Clear the bottom part of the image (SAFETY)
220 gdk_draw_rectangle (Pixmap,
221 widget->style->white_gc,
222 TRUE,
223 0, Drawing->height+SAFETY,
224 Drawing->width+SAFETY, // do not overlap
225 (widget->allocation.height) - Drawing->height);
bd24a9af 226
432a7065 227 // Clear the right part of the image (SAFETY)
228 gdk_draw_rectangle (Pixmap,
229 widget->style->white_gc,
230 TRUE,
231 Drawing->width+SAFETY, 0,
232 (widget->allocation.width) - Drawing->width, // do not overlap
233 Drawing->height+SAFETY);
80a52ff8 234
432a7065 235 /* Clear the backgound for data request, but not SAFETY */
236 gdk_draw_rectangle (Pixmap,
237 Drawing->Drawing_Area_V->style->white_gc,
238 TRUE,
239 Drawing->width + SAFETY, 0,
240 widget->allocation.width - Drawing->width, // do not overlap
241 widget->allocation.height+SAFETY);
bd24a9af 242
432a7065 243 /* Request data for missing space */
244 g_info("missing data request");
245 drawing_data_request(Drawing, &Pixmap, Drawing->width, 0,
246 widget->allocation.width - Drawing->width,
847b479d 247 widget->allocation.height);
80fd7048 248
847b479d 249 Drawing->width = widget->allocation.width;
250 Drawing->height = widget->allocation.height;
251
252 return TRUE;
bd24a9af 253#endif //NOTUSE
847b479d 254}
255
256
257/* Redraw the screen from the backing pixmap */
258static gboolean
259expose_event( GtkWidget *widget, GdkEventExpose *event, gpointer user_data )
260{
261 Drawing_t *Drawing = (Drawing_t*)user_data;
262 g_critical("drawing expose event");
263
264 gdk_draw_pixmap(widget->window,
265 widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
266 Drawing->Pixmap,
267 event->area.x, event->area.y,
268 event->area.x, event->area.y,
269 event->area.width, event->area.height);
270
271 return FALSE;
272}
273
4c69e0cc 274Drawing_t *drawing_construct(ControlFlowData *Control_Flow_Data)
847b479d 275{
76a67e8a 276 Drawing_t *Drawing = g_new(Drawing_t, 1);
f0d936c0 277
278 Drawing->Drawing_Area_V = gtk_drawing_area_new ();
f7afe191 279 Drawing->Control_Flow_Data = Control_Flow_Data;
280
847b479d 281 //gtk_widget_set_size_request(Drawing->Drawing_Area_V->window, 50, 50);
f0d936c0 282 g_object_set_data_full(
283 G_OBJECT(Drawing->Drawing_Area_V),
76a67e8a 284 "Link_Drawing_Data",
f0d936c0 285 Drawing,
3cff8cc1 286 (GDestroyNotify)drawing_destroy);
f0d936c0 287
847b479d 288 //gtk_widget_modify_bg( Drawing->Drawing_Area_V,
289 // GTK_STATE_NORMAL,
290 // &CF_Colors[BLACK]);
291
292 //gdk_window_get_geometry(Drawing->Drawing_Area_V->window,
293 // NULL, NULL,
294 // &(Drawing->width),
295 // &(Drawing->height),
296 // -1);
297
298 //Drawing->Pixmap = gdk_pixmap_new(
299 // Drawing->Drawing_Area_V->window,
300 // Drawing->width,
301 // Drawing->height,
302 // Drawing->depth);
303
304 Drawing->Pixmap = NULL;
305
306// Drawing->Pixmap = gdk_pixmap_new(Drawing->Drawing_Area_V->window,
307// Drawing->Drawing_Area_V->allocation.width,
308// Drawing->Drawing_Area_V->allocation.height,
309// -1);
310
847b479d 311 g_signal_connect (G_OBJECT(Drawing->Drawing_Area_V),
312 "configure_event",
313 G_CALLBACK (configure_event),
314 (gpointer)Drawing);
315
316 g_signal_connect (G_OBJECT(Drawing->Drawing_Area_V),
317 "expose_event",
318 G_CALLBACK (expose_event),
319 (gpointer)Drawing);
320
f0d936c0 321 return Drawing;
322}
323
4c69e0cc 324void drawing_destroy(Drawing_t *Drawing)
f0d936c0 325{
326
76a67e8a 327 // Do not unref here, Drawing_t destroyed by it's widget.
328 //g_object_unref( G_OBJECT(Drawing->Drawing_Area_V));
f0d936c0 329
330 g_free(Drawing);
331}
332
4c69e0cc 333GtkWidget *drawing_get_widget(Drawing_t *Drawing)
76a67e8a 334{
335 return Drawing->Drawing_Area_V;
336}
337
f66eba62 338/* convert_pixels_to_time
f0d936c0 339 *
f66eba62 340 * Convert from window pixel and time interval to an absolute time.
f0d936c0 341 */
fa2c4dbe 342void convert_pixels_to_time(
e9a9c513 343 gint width,
fa2c4dbe 344 guint x,
345 LttTime *window_time_begin,
346 LttTime *window_time_end,
76a67e8a 347 LttTime *time)
f0d936c0 348{
fa2c4dbe 349 LttTime window_time_interval;
f0d936c0 350
308711e5 351 window_time_interval = ltt_time_sub(*window_time_end,
352 *window_time_begin);
e9a9c513 353 *time = ltt_time_mul(window_time_interval, (x/(float)width));
308711e5 354 *time = ltt_time_add(*window_time_begin, *time);
fa2c4dbe 355}
356
357
358
359void convert_time_to_pixels(
360 LttTime window_time_begin,
361 LttTime window_time_end,
362 LttTime time,
e9a9c513 363 int width,
76a67e8a 364 guint *x)
fa2c4dbe 365{
366 LttTime window_time_interval;
76a67e8a 367 float interval_float, time_float;
fa2c4dbe 368
308711e5 369 window_time_interval = ltt_time_sub(window_time_end,window_time_begin);
fa2c4dbe 370
308711e5 371 time = ltt_time_sub(time, window_time_begin);
fa2c4dbe 372
308711e5 373 interval_float = ltt_time_to_double(window_time_interval);
374 time_float = ltt_time_to_double(time);
76a67e8a 375
e9a9c513 376 *x = (guint)(time_float/interval_float * width);
f0d936c0 377
378}
379
4c69e0cc 380void drawing_refresh ( Drawing_t *Drawing,
847b479d 381 guint x, guint y,
382 guint width, guint height)
383{
6d5ed1c3 384 g_info("Drawing.c : drawing_refresh %u, %u, %u, %u", x, y, width, height);
f7afe191 385 GdkRectangle update_rect;
386
847b479d 387 gdk_draw_drawable(
388 Drawing->Drawing_Area_V->window,
389 Drawing->Drawing_Area_V->
390 style->fg_gc[GTK_WIDGET_STATE (Drawing->Drawing_Area_V)],
391 GDK_DRAWABLE(Drawing->Pixmap),
392 x, y,
393 x, y,
394 width, height);
f7afe191 395
396 update_rect.x = 0 ;
397 update_rect.y = 0 ;
398 update_rect.width = Drawing->width;
399 update_rect.height = Drawing->height ;
400 gtk_widget_draw( Drawing->Drawing_Area_V, &update_rect);
401
847b479d 402}
403
404
4c69e0cc 405void drawing_draw_line( Drawing_t *Drawing,
847b479d 406 GdkPixmap *Pixmap,
407 guint x1, guint y1,
408 guint x2, guint y2,
409 GdkGC *GC)
410{
411 gdk_draw_line (Pixmap,
412 GC,
413 x1, y1, x2, y2);
414}
415
416
fa2c4dbe 417
418
4c69e0cc 419void drawing_resize(Drawing_t *Drawing, guint h, guint w)
f0d936c0 420{
f0d936c0 421 Drawing->height = h ;
76a67e8a 422 Drawing->width = w ;
f0d936c0 423
76a67e8a 424 gtk_widget_set_size_request ( Drawing->Drawing_Area_V,
425 Drawing->width,
f0d936c0 426 Drawing->height);
427
428
429}
847b479d 430
431
5f16133f 432/* Insert a square corresponding to a new process in the list */
433/* Applies to whole Drawing->width */
4c69e0cc 434void drawing_insert_square(Drawing_t *Drawing,
5f16133f 435 guint y,
436 guint height)
437{
bd24a9af 438 //GdkRectangle update_rect;
5f16133f 439
440 /* Allocate a new pixmap with new height */
441 GdkPixmap *Pixmap = gdk_pixmap_new(Drawing->Drawing_Area_V->window,
432a7065 442 Drawing->width + SAFETY,
443 Drawing->height + height + SAFETY,
5f16133f 444 -1);
445
446 /* Copy the high region */
447 gdk_draw_drawable (Pixmap,
448 Drawing->Drawing_Area_V->style->black_gc,
449 Drawing->Pixmap,
450 0, 0,
451 0, 0,
432a7065 452 Drawing->width + SAFETY, y);
5f16133f 453
454
455
456
457 /* add an empty square */
458 gdk_draw_rectangle (Pixmap,
1ab3d149 459 Drawing->Drawing_Area_V->style->black_gc,
5f16133f 460 TRUE,
461 0, y,
432a7065 462 Drawing->width + SAFETY, // do not overlap
5f16133f 463 height);
464
465
466
467 /* copy the bottom of the region */
468 gdk_draw_drawable (Pixmap,
469 Drawing->Drawing_Area_V->style->black_gc,
470 Drawing->Pixmap,
471 0, y,
472 0, y + height,
bd24a9af 473 Drawing->width+SAFETY, Drawing->height - y + SAFETY);
5f16133f 474
475
476
477
478 if (Drawing->Pixmap)
479 gdk_pixmap_unref(Drawing->Pixmap);
480
481 Drawing->Pixmap = Pixmap;
482
483 Drawing->height+=height;
484
485 /* Rectangle to update, from new Drawing dimensions */
bd24a9af 486 //update_rect.x = 0 ;
487 //update_rect.y = y ;
488 //update_rect.width = Drawing->width;
489 //update_rect.height = Drawing->height - y ;
490 //gtk_widget_draw( Drawing->Drawing_Area_V, &update_rect);
5f16133f 491}
492
493
494/* Remove a square corresponding to a removed process in the list */
4c69e0cc 495void drawing_remove_square(Drawing_t *Drawing,
5f16133f 496 guint y,
497 guint height)
498{
bd24a9af 499 //GdkRectangle update_rect;
5f16133f 500
501 /* Allocate a new pixmap with new height */
502 GdkPixmap *Pixmap = gdk_pixmap_new(
503 Drawing->Drawing_Area_V->window,
432a7065 504 Drawing->width + SAFETY,
505 Drawing->height - height + SAFETY,
5f16133f 506 -1);
507
508 /* Copy the high region */
509 gdk_draw_drawable (Pixmap,
510 Drawing->Drawing_Area_V->style->black_gc,
511 Drawing->Pixmap,
512 0, 0,
513 0, 0,
432a7065 514 Drawing->width + SAFETY, y);
5f16133f 515
516
517
518 /* Copy up the bottom of the region */
519 gdk_draw_drawable (Pixmap,
520 Drawing->Drawing_Area_V->style->black_gc,
521 Drawing->Pixmap,
522 0, y + height,
523 0, y,
432a7065 524 Drawing->width, Drawing->height - y - height + SAFETY);
5f16133f 525
526
527 if (Drawing->Pixmap)
528 gdk_pixmap_unref(Drawing->Pixmap);
529
530 Drawing->Pixmap = Pixmap;
531
532 Drawing->height-=height;
533
534 /* Rectangle to update, from new Drawing dimensions */
bd24a9af 535 //update_rect.x = 0 ;
536 //update_rect.y = y ;
537 //update_rect.width = Drawing->width;
538 //update_rect.height = Drawing->height - y ;
539 //gtk_widget_draw( Drawing->Drawing_Area_V, &update_rect);
5f16133f 540}
189a5d08 541
542
This page took 0.047864 seconds and 4 git commands to generate.