fix stop
[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
a43d67ba 66 gint height, width, depth;
67 gboolean data_injected;
a56a1ba4 68
f7afe191 69};
70
68997a22 71Drawing_t *drawing_construct(ControlFlowData *control_flow_data);
501d5405 72void drawing_destroy(Drawing_t *drawing);
f0d936c0 73
501d5405 74GtkWidget *drawing_get_widget(Drawing_t *drawing);
3cb8b205 75GtkWidget *drawing_get_drawing_area(Drawing_t *drawing);
76
501d5405 77void drawing_draw_line( Drawing_t *drawing,
b6db18f8 78 GdkPixmap *pixmap,
a56a1ba4 79 guint x1, guint y1,
80 guint x2, guint y2,
81 GdkGC *GC);
76a67e8a 82
501d5405 83//void drawing_copy( Drawing_t *drawing,
a56a1ba4 84// guint xsrc, guint ysrc,
85// guint xdest, guint ydest,
86// guint width, guint height);
f0d936c0 87
5f16133f 88/* Insert a square corresponding to a new process in the list */
501d5405 89void drawing_insert_square(Drawing_t *drawing,
a56a1ba4 90 guint y,
91 guint height);
5f16133f 92
93/* Remove a square corresponding to a removed process in the list */
501d5405 94void drawing_remove_square(Drawing_t *drawing,
a56a1ba4 95 guint y,
96 guint height);
5f16133f 97
f0d936c0 98
501d5405 99//void drawing_Resize(Drawing_t *drawing, guint h, guint w);
76a67e8a 100
fa2c4dbe 101void convert_pixels_to_time(
a56a1ba4 102 gint width,
103 guint x,
224446ce 104 LttTime window_time_begin,
105 LttTime window_time_end,
a56a1ba4 106 LttTime *time);
fa2c4dbe 107
108void convert_time_to_pixels(
a56a1ba4 109 LttTime window_time_begin,
110 LttTime window_time_end,
111 LttTime time,
112 gint width,
113 guint *x);
f0d936c0 114
3cb8b205 115void drawing_update_ruler(Drawing_t *drawing, TimeWindow *time_window);
116
a43d67ba 117void drawing_data_request_end(Drawing_t *drawing,
118 TimeWindow req_time_window);
119
120
f0d936c0 121#endif // _DRAWING_H
This page took 0.0319 seconds and 4 git commands to generate.