diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-30 20:14:47 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-30 20:14:47 +0100 |
| commit | e241b3d295fe4158239170f17391e08473e159c5 (patch) | |
| tree | f6a41e3d1d7aa098bec7c5ab097718d93b9b5e68 /src/wx/timecode.h | |
| parent | 7951f34412a4e2e71928fb3494075b70a3b29a4a (diff) | |
Make length editable only for still images.
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; }; |
