Re-try de.po with (hopefully) the correct encoding.
[ardour.git] / gtk2_ardour / audio_clock.h
index f4681c279c2c989d2cca85efbfc54efd19bf581e..400d5a7f28a1be746c4d2d6481442eafab340f3c 100644 (file)
@@ -59,6 +59,8 @@ class AudioClock : public CairoWidget, public ARDOUR::SessionHandlePtr
        void set_widget_name (const std::string& name);
        void set_active_state (Gtkmm2ext::ActiveState s);
        void set_editable (bool yn);
+       void set_corner_radius (double);
+       void set_fixed_width (bool);
 
        void focus ();
 
@@ -94,6 +96,8 @@ class AudioClock : public CairoWidget, public ARDOUR::SessionHandlePtr
        /** true if this clock follows the playhead, meaning that certain operations are redundant */
        bool             _follows_playhead;
        bool             _off;
+       bool             _fixed_width;
+       int              layout_x_offset;
 
        Gtk::Menu  *ops_menu;
 
@@ -108,11 +112,14 @@ class AudioClock : public CairoWidget, public ARDOUR::SessionHandlePtr
        Pango::AttrList editing_attributes;
        Pango::AttrList info_attributes;
 
+       int first_height;
+       int first_width;
        int layout_height;
        int layout_width;
        int info_height;
        int upper_height;
        double mode_based_info_ratio;
+       double corner_radius;
 
        static const double info_font_scale_factor;
        static const double separator_height;
@@ -209,8 +216,10 @@ class AudioClock : public CairoWidget, public ARDOUR::SessionHandlePtr
        void show_edit_status (int length);
 
        void drop_focus ();
-       
+       void dpi_reset ();
+
        double bg_r, bg_g, bg_b, bg_a;
+       double cursor_r, cursor_g, cursor_b, cursor_a;
 };
 
 #endif /* __audio_clock_h__ */