Fix audio channel mapping disappearing on Windows.
[dcpomatic.git] / src / wx / timecode.h
index ca6deb9692a033085f0e5f5bba26663385f6aca2..880b44a31be8754ca54634e542d9e739e328b745 100644 (file)
@@ -29,16 +29,21 @@ 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;
        wxTextCtrl* _minutes;
        wxTextCtrl* _seconds;
        wxTextCtrl* _frames;
        wxButton* _set_button;
+       wxStaticText* _fixed;
 };