X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftimecode.h;h=5b094e39f0c2c3cf6d67d36eba70a804acf73017;hb=6b57a4d4516272cfd9b3b3ae982da7285fb879d3;hp=465239fe53cdd5dbbb0495f4bdba89a6ead05a2c;hpb=2918fd61b33f54269e2143f659d320ff555c4e8a;p=dcpomatic.git diff --git a/src/wx/timecode.h b/src/wx/timecode.h index 465239fe5..5b094e39f 100644 --- a/src/wx/timecode.h +++ b/src/wx/timecode.h @@ -29,16 +29,22 @@ public: void set (Time, int); Time get (int) const; + void set_editable (bool); + boost::signals2::signal Changed; private: - void changed (wxCommandEvent &); - void update_clicked (wxCommandEvent &); + void changed (); + void set_clicked (); + wxSizer* _sizer; + wxPanel* _editable; wxTextCtrl* _hours; + wxStaticText* _hours_label; wxTextCtrl* _minutes; wxTextCtrl* _seconds; wxTextCtrl* _frames; - wxButton* _update_button; + wxButton* _set_button; + wxStaticText* _fixed; };