specific popt link
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / drawing.h
index 6ffc61a52a624b14e57aafeb03245c8ef03cd500..e37e56dfbb168c042b77606f1f946b10bf40b2af 100644 (file)
@@ -1,3 +1,22 @@
+/* This file is part of the Linux Trace Toolkit viewer
+ * Copyright (C) 2003-2004 Mathieu Desnoyers
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License Version 2 as
+ * published by the Free Software Foundation;
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
+ * MA 02111-1307, USA.
+ */
+
+
 #ifndef _DRAWING_H
 #define _DRAWING_H
 
@@ -36,7 +55,9 @@
 typedef struct _Drawing_t Drawing_t;
 
 struct _Drawing_t {
+  GtkWidget *vbox;
   GtkWidget *drawing_area;
+  GtkWidget *ruler;
   GdkPixmap *pixmap;
   ControlFlowData *control_flow_data;
   
@@ -50,7 +71,8 @@ Drawing_t *drawing_construct(ControlFlowData *control_flow_data);
 void drawing_destroy(Drawing_t *drawing);
 
 GtkWidget *drawing_get_widget(Drawing_t *drawing);
-  
+GtkWidget *drawing_get_drawing_area(Drawing_t *drawing);
+
 //void drawing_Refresh (  Drawing_t *drawing,
 //      guint x, guint y,
 //      guint width, guint height);
@@ -82,8 +104,8 @@ void drawing_remove_square(Drawing_t *drawing,
 void convert_pixels_to_time(
     gint width,
     guint x,
-    LttTime *window_time_begin,
-    LttTime *window_time_end,
+    LttTime window_time_begin,
+    LttTime window_time_end,
     LttTime *time);
 
 void convert_time_to_pixels(
@@ -93,4 +115,6 @@ void convert_time_to_pixels(
     gint width,
     guint *x);
 
+void drawing_update_ruler(Drawing_t *drawing, TimeWindow *time_window);
+
 #endif // _DRAWING_H
This page took 0.038519 seconds and 4 git commands to generate.