Add a couple of missing ellipses to menu items.
[ardour.git] / gtk2_ardour / audio_clock.h
index 8e0ab53a9d1285b8730f64f90e12ea69cd6c558f..4ce057b01bd603b1ff9fdb2ce35105d53a1467c8 100644 (file)
@@ -45,8 +45,7 @@ class AudioClock : public Gtk::VBox, public ARDOUR::SessionHandlePtr
                Timecode,
                BBT,
                MinSec,
-               Frames,
-               Off
+               Frames
        };
 
        AudioClock (const std::string& clock_name, bool is_transient, const std::string& widget_name,
@@ -54,6 +53,8 @@ class AudioClock : public Gtk::VBox, public ARDOUR::SessionHandlePtr
        ~AudioClock ();
 
        Mode mode() const { return _mode; }
+       void set_off (bool yn);
+       bool off() const { return _off; }
 
        void focus ();
 
@@ -94,12 +95,14 @@ class AudioClock : public Gtk::VBox, public ARDOUR::SessionHandlePtr
        bool              editable;
        /** true if this clock follows the playhead, meaning that certain operations are redundant */
        bool             _follows_playhead;
+       bool             _off;
 
        Gtk::Menu  *ops_menu;
 
        CairoEditableText* display;
 
        enum Field {
+               Timecode_Sign,
                Timecode_Hours,
                Timecode_Minutes,
                Timecode_Seconds,