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