diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-19 20:21:27 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-19 20:21:27 +0100 |
| commit | e6e20d9b37ebdd50768777d7b603ad4f736d790b (patch) | |
| tree | ee75ed8217211206f6f791c93d716705490fd4c0 /src/wx/timing_panel.h | |
| parent | e1b818fe3eb59d854c1b8b7951a8af58c3095ba2 (diff) | |
Split timing panel into its own class.
Diffstat (limited to 'src/wx/timing_panel.h')
| -rw-r--r-- | src/wx/timing_panel.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h new file mode 100644 index 000000000..b5c9ef026 --- /dev/null +++ b/src/wx/timing_panel.h @@ -0,0 +1,37 @@ +/* + Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "film_editor_panel.h" + +class Timecode; + +class TimingPanel : public FilmEditorPanel +{ +public: + TimingPanel (FilmEditor *); + + void film_content_changed (boost::shared_ptr<Content>, int); + +private: + void start_changed (); + void length_changed (); + + Timecode* _start; + Timecode* _length; +}; |
