Ubuntu 13.10 appears to have a broken GtkFileChooserButton in its GTK as well as...
[dcpomatic.git] / src / wx / timecode.h
index f243ee0b8d219c8ebeb94d68e9a0be956b44bcaa..5b094e39f0c2c3cf6d67d36eba70a804acf73017 100644 (file)
@@ -17,6 +17,7 @@
 
 */
 
+#include <boost/signals2.hpp>
 #include <wx/wx.h>
 #include "lib/types.h"
 
@@ -28,9 +29,22 @@ public:
        void set (Time, int);
        Time get (int) const;
 
+       void set_editable (bool);
+
+       boost::signals2::signal<void ()> Changed;
+
 private:
+       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;
 };
+