fixed some drawing details
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Drawing.h
1 #ifndef _DRAWING_H
2 #define _DRAWING_H
3
4 #include <glib.h>
5 #include <gdk/gdk.h>
6 #include <gtk/gtk.h>
7 #include <ltt/ltt.h>
8 #include "CFV.h"
9 #include "Draw_Item.h"
10
11
12 #define SAFETY 50 // safety pixels at right and bottom of pixmap buffer
13
14 /* This part of the viewer does :
15 * Draw horizontal lines, getting graphic context as arg.
16 * Copy region of the screen into another.
17 * Modify the boundaries to reflect a scale change. (resize)
18 * Refresh the physical screen with the pixmap
19 * A helper function is provided here to convert from time to process
20 * identifier to pixels and the contrary (will be useful for mouse selection).
21 * Insert an empty square in the drawing, moving the bottom part.
22 *
23 * Note: The last point is exactly why it would not be so easy to add the
24 * vertical line functionnality as in the original version of LTT. In order
25 * to do so, we should keep all processes in the list for the duration of
26 * all the trace instead of dynamically adding and removing them when we
27 * scroll. Another possibility is to redraw all the visible area when a new
28 * process is added to the list. The second solution seems more appropriate
29 * to me.
30 *
31 *
32 * The pixmap used has the width of the physical window, but the height
33 * of the shown processes.
34 */
35
36 typedef struct _Drawing_t Drawing_t;
37
38 struct _Drawing_t {
39 GtkWidget *Drawing_Area_V;
40 GdkPixmap *Pixmap;
41 ControlFlowData *Control_Flow_Data;
42
43 gint height, width, depth;
44
45 };
46
47 Drawing_t *drawing_construct(ControlFlowData *Control_Flow_Data);
48 void drawing_destroy(Drawing_t *Drawing);
49
50 GtkWidget *drawing_get_widget(Drawing_t *Drawing);
51
52 //void Drawing_Refresh ( Drawing_t *Drawing,
53 // guint x, guint y,
54 // guint width, guint height);
55
56 void drawing_draw_line( Drawing_t *Drawing,
57 GdkPixmap *Pixmap,
58 guint x1, guint y1,
59 guint x2, guint y2,
60 GdkGC *GC);
61
62 //void Drawing_copy( Drawing_t *Drawing,
63 // guint xsrc, guint ysrc,
64 // guint xdest, guint ydest,
65 // guint width, guint height);
66
67 /* Insert a square corresponding to a new process in the list */
68 void drawing_insert_square(Drawing_t *Drawing,
69 guint y,
70 guint height);
71
72 /* Remove a square corresponding to a removed process in the list */
73 void drawing_remove_square(Drawing_t *Drawing,
74 guint y,
75 guint height);
76
77
78 //void Drawing_Resize(Drawing_t *Drawing, guint h, guint w);
79
80 void convert_pixels_to_time(
81 gint width,
82 guint x,
83 LttTime *window_time_begin,
84 LttTime *window_time_end,
85 LttTime *time);
86
87 void convert_time_to_pixels(
88 LttTime window_time_begin,
89 LttTime window_time_end,
90 LttTime time,
91 gint width,
92 guint *x);
93
94 #endif // _DRAWING_H
This page took 0.036941 seconds and 4 git commands to generate.