Lua Script Example to toggle monitor section
[ardour.git] / libs / canvas / canvas / ruler.h
index 751ddcc104a6d2d7b9041fb6528b2722021f5cf1..59ce625dca8145ecfe34c4e70e6d7d86d24d68c9 100644 (file)
@@ -70,19 +70,18 @@ public:
 
        void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
 
-       void set_divide_colors (Color top, Color bottom);
+       void set_divide_colors (Gtkmm2ext::Color top, Gtkmm2ext::Color bottom);
        void set_divide_height (double);
 private:
        const Metric* _metric;
 
-       /* lower and upper and sample positions, which are also canvas coordinates
-        */
+       /* lower and upper and sample positions, which are also canvas coordinates */
 
-       Coord         _lower;
-       Coord         _upper;
-       double        _divide_height;
-       Color         _divider_color_top;
-       Color         _divider_color_bottom;
+       Coord            _lower;
+       Coord            _upper;
+       double           _divide_height;
+       Gtkmm2ext::Color _divider_color_top;
+       Gtkmm2ext::Color _divider_color_bottom;
 
        Pango::FontDescription* _font_description;
        mutable std::vector<Mark> marks;