Ubuntu 13.10 appears to have a broken GtkFileChooserButton in its GTK as well as...
[dcpomatic.git] / src / wx / timecode.h
index ca6deb9692a033085f0e5f5bba26663385f6aca2..5b094e39f0c2c3cf6d67d36eba70a804acf73017 100644 (file)
@@ -29,16 +29,22 @@ public:
        void set (Time, int);
        Time get (int) const;
 
+       void set_editable (bool);
+
        boost::signals2::signal<void ()> Changed;
 
 private:
-       void changed (wxCommandEvent &);
-       void set_clicked (wxCommandEvent &);
+       void changed ();
+       void set_clicked ();
        
+       wxSizer* _sizer;
+       wxPanel* _editable;
        wxTextCtrl* _hours;
+       wxStaticText* _hours_label;
        wxTextCtrl* _minutes;
        wxTextCtrl* _seconds;
        wxTextCtrl* _frames;
        wxButton* _set_button;
+       wxStaticText* _fixed;
 };