Ubuntu 13.10 appears to have a broken GtkFileChooserButton in its GTK as well as...
[dcpomatic.git] / src / wx / timecode.h
index 9b6fe66542e9fec1c1bc8d15d26ccd1c7133fbc6..5b094e39f0c2c3cf6d67d36eba70a804acf73017 100644 (file)
@@ -29,15 +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 changed ();
+       void set_clicked ();
        
+       wxSizer* _sizer;
+       wxPanel* _editable;
        wxTextCtrl* _hours;
+       wxStaticText* _hours_label;
        wxTextCtrl* _minutes;
        wxTextCtrl* _seconds;
        wxTextCtrl* _frames;
-
-       bool _in_set;
+       wxButton* _set_button;
+       wxStaticText* _fixed;
 };
+