summaryrefslogtreecommitdiff
path: root/gtk2_ardour/simplerect.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-11-13 18:13:50 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-11-13 18:13:50 +0000
commitab91bcfdace8f4c3e76de3a9ffbfff93102997fb (patch)
tree9e2ffe6593f3917b1b1a30caf1cb5e41c782bfee /gtk2_ardour/simplerect.h
parent435d1d49642cda521d4934aa1b3ba6433ce8c639 (diff)
time_axis_view now compiles
git-svn-id: svn://localhost/trunk/ardour2@86 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/simplerect.h')
-rw-r--r--gtk2_ardour/simplerect.h26
1 files changed, 23 insertions, 3 deletions
diff --git a/gtk2_ardour/simplerect.h b/gtk2_ardour/simplerect.h
index 0228e64343..329823ab2f 100644
--- a/gtk2_ardour/simplerect.h
+++ b/gtk2_ardour/simplerect.h
@@ -110,9 +110,29 @@ private:
public:
- SimpleRect(Group& parent, double x1, double y1, double x2, double y2);
- explicit SimpleRect(Group& parent);
-
+ SimpleRect(Group& parent, double x1, double y1, double x2, double y2);
+ explicit SimpleRect(Group& parent);
+
+ Glib::PropertyProxy<double> property_x1();
+ Glib::PropertyProxy_ReadOnly<double> property_x1() const;
+ Glib::PropertyProxy<double> property_y1();
+ Glib::PropertyProxy_ReadOnly<double> property_y1() const;
+ Glib::PropertyProxy<double> property_x2();
+ Glib::PropertyProxy_ReadOnly<double> property_x2() const;
+ Glib::PropertyProxy<double> property_y2();
+ Glib::PropertyProxy_ReadOnly<double> property_y2() const;
+ Glib::PropertyProxy<guint> property_outline_pixels();
+ Glib::PropertyProxy_ReadOnly<guint> property_outline_pixels() const;
+ Glib::PropertyProxy<guint> property_outline_what();
+ Glib::PropertyProxy_ReadOnly<guint> property_outline_what() const;
+ Glib::PropertyProxy<bool> property_fill();
+ Glib::PropertyProxy_ReadOnly<bool> property_fill() const;
+ Glib::PropertyProxy<guint> property_fill_color_rgba();
+ Glib::PropertyProxy_ReadOnly<guint> property_fill_color_rgba() const;
+ Glib::PropertyProxy<guint> property_outline_color_rgba();
+ Glib::PropertyProxy_ReadOnly<guint> property_outline_color_rgba() const;
+ Glib::PropertyProxy<bool> property_draw();
+ Glib::PropertyProxy_ReadOnly<bool> property_draw() const;
};