diff options
Diffstat (limited to 'src/wx/timecode.h')
| -rw-r--r-- | src/wx/timecode.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/timecode.h b/src/wx/timecode.h index bebfa3f5f..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<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; }; |
