specific popt link
[lttv.git] / ltt / branches / poly / 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>
d66666fe 27#include "cfv.h"
28#include "drawitem.h"
f0d936c0 29
432a7065 30
a56a1ba4 31#define SAFETY 50 // safety pixels at right and bottom of pixmap buffer
432a7065 32
fa2c4dbe 33/* This part of the viewer does :
76a67e8a 34 * Draw horizontal lines, getting graphic context as arg.
fa2c4dbe 35 * Copy region of the screen into another.
76a67e8a 36 * Modify the boundaries to reflect a scale change. (resize)
847b479d 37 * Refresh the physical screen with the pixmap
189a5d08 38 * A helper function is provided here to convert from time to process
fa2c4dbe 39 * identifier to pixels and the contrary (will be useful for mouse selection).
5f16133f 40 * Insert an empty square in the drawing, moving the bottom part.
41 *
189a5d08 42 * Note: The last point is exactly why it would not be so easy to add the
43 * vertical line functionnality as in the original version of LTT. In order
44 * to do so, we should keep all processes in the list for the duration of
45 * all the trace instead of dynamically adding and removing them when we
46 * scroll. Another possibility is to redraw all the visible area when a new
47 * process is added to the list. The second solution seems more appropriate
48 * to me.
49 *
50 *
5f16133f 51 * The pixmap used has the width of the physical window, but the height
52 * of the shown processes.
fa2c4dbe 53 */
f0d936c0 54
55typedef struct _Drawing_t Drawing_t;
56
f7afe191 57struct _Drawing_t {
3cb8b205 58 GtkWidget *vbox;
14963be0 59 GtkWidget *drawing_area;
3cb8b205 60 GtkWidget *ruler;
b6db18f8 61 GdkPixmap *pixmap;
68997a22 62 ControlFlowData *control_flow_data;
a56a1ba4 63
64 PangoLayout *pango_layout;
65
66 gint height, width, depth;
67
f7afe191 68};
69
68997a22 70Drawing_t *drawing_construct(ControlFlowData *control_flow_data);
501d5405 71void drawing_destroy(Drawing_t *drawing);
f0d936c0 72
501d5405 73GtkWidget *drawing_get_widget(Drawing_t *drawing);
3cb8b205 74GtkWidget *drawing_get_drawing_area(Drawing_t *drawing);
75
501d5405 76//void drawing_Refresh ( Drawing_t *drawing,
a56a1ba4 77// guint x, guint y,
78// guint width, guint height);
847b479d 79
501d5405 80void drawing_draw_line( Drawing_t *drawing,
b6db18f8 81 GdkPixmap *pixmap,
a56a1ba4 82 guint x1, guint y1,
83 guint x2, guint y2,
84 GdkGC *GC);
76a67e8a 85
501d5405 86//void drawing_copy( Drawing_t *drawing,
a56a1ba4 87// guint xsrc, guint ysrc,
88// guint xdest, guint ydest,
89// guint width, guint height);
f0d936c0 90
5f16133f 91/* Insert a square corresponding to a new process in the list */
501d5405 92void drawing_insert_square(Drawing_t *drawing,
a56a1ba4 93 guint y,
94 guint height);
5f16133f 95
96/* Remove a square corresponding to a removed process in the list */
501d5405 97void drawing_remove_square(Drawing_t *drawing,
a56a1ba4 98 guint y,
99 guint height);
5f16133f 100
f0d936c0 101
501d5405 102//void drawing_Resize(Drawing_t *drawing, guint h, guint w);
76a67e8a 103
fa2c4dbe 104void convert_pixels_to_time(
a56a1ba4 105 gint width,
106 guint x,
224446ce 107 LttTime window_time_begin,
108 LttTime window_time_end,
a56a1ba4 109 LttTime *time);
fa2c4dbe 110
111void convert_time_to_pixels(
a56a1ba4 112 LttTime window_time_begin,
113 LttTime window_time_end,
114 LttTime time,
115 gint width,
116 guint *x);
f0d936c0 117
3cb8b205 118void drawing_update_ruler(Drawing_t *drawing, TimeWindow *time_window);
119
f0d936c0 120#endif // _DRAWING_H
This page took 0.03294 seconds and 4 git commands to generate.