summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view_item.h
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2005-09-25 22:26:56 +0000
committerTaybin Rutkin <taybin@taybin.com>2005-09-25 22:26:56 +0000
commit14d43ca9fe28a8309b4a52fa85e2b0c64a92248b (patch)
tree0ca37421248da4aaba70869fbc0156bf64e3b0ce /gtk2_ardour/time_axis_view_item.h
parentd38e2213d79b1c8952c776a3b60f7709457edc0c (diff)
Switched to use libgnomecanvas (not the C++ one).
git-svn-id: svn://localhost/trunk/ardour2@30 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view_item.h')
-rw-r--r--gtk2_ardour/time_axis_view_item.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/gtk2_ardour/time_axis_view_item.h b/gtk2_ardour/time_axis_view_item.h
index 27f7a8de91..5152d3c656 100644
--- a/gtk2_ardour/time_axis_view_item.h
+++ b/gtk2_ardour/time_axis_view_item.h
@@ -22,7 +22,7 @@
#define __gtk_ardour_time_axis_view_item_h__
#include <sigc++/signal.h>
-#include <gtk-canvas.h>
+#include <libgnomecanvas/libgnomecanvas.h>
#include <jack/jack.h>
#include <string>
@@ -220,22 +220,22 @@ class TimeAxisViewItem : public sigc::trackable, public Selectable
/**
*
*/
- GtkCanvasItem* get_canvas_frame() ;
+ GnomeCanvasItem* get_canvas_frame() ;
/**
*
*/
- GtkCanvasItem* get_canvas_group();
+ GnomeCanvasItem* get_canvas_group();
/**
*
*/
- GtkCanvasItem* get_name_highlight();
+ GnomeCanvasItem* get_name_highlight();
/**
*
*/
- GtkCanvasItem* get_name_text();
+ GnomeCanvasItem* get_name_text();
/**
* Sets the samples per unit of this item.
@@ -334,7 +334,7 @@ class TimeAxisViewItem : public sigc::trackable, public Selectable
* @param start the start point of this item
* @param duration the duration of this item
*/
- TimeAxisViewItem(std::string it_name, GtkCanvasGroup* parent, TimeAxisView& tv, double spu, GdkColor& base_color,
+ TimeAxisViewItem(std::string it_name, GnomeCanvasGroup* parent, TimeAxisView& tv, double spu, GdkColor& base_color,
jack_nframes_t start, jack_nframes_t duration, Visibility v = Visibility (0));
/**
@@ -440,13 +440,13 @@ class TimeAxisViewItem : public sigc::trackable, public Selectable
uint32_t lock_handle_color_g ;
uint32_t lock_handle_color_b ;
- GtkCanvasItem* group ; /* the group */
- GtkCanvasItem* vestigial_frame ; /* simplerect */
- GtkCanvasItem* frame ; /* simplerect */
- GtkCanvasItem* name_text ; /* text */
- GtkCanvasItem* name_highlight ; /* simplerect */
- GtkCanvasItem* frame_handle_start ; /* simplerect */
- GtkCanvasItem* frame_handle_end ; /* simplerect */
+ GnomeCanvasItem* group ; /* the group */
+ GnomeCanvasItem* vestigial_frame ; /* simplerect */
+ GnomeCanvasItem* frame ; /* simplerect */
+ GnomeCanvasItem* name_text ; /* text */
+ GnomeCanvasItem* name_highlight ; /* simplerect */
+ GnomeCanvasItem* frame_handle_start ; /* simplerect */
+ GnomeCanvasItem* frame_handle_end ; /* simplerect */
}; /* class TimeAxisViewItem */