diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-07-01 23:37:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-07-01 23:37:01 +0100 |
| commit | ee37079f77166aaa309ffe7b3475b4f79f88eaa8 (patch) | |
| tree | c21a20ccb9fba3376247ee6961f1a24b82a7214d /src/wx/playhead_to_frame_dialog.h | |
| parent | f9783b204b672ed5c951125b2476d45ecc50915c (diff) | |
Add frame number dialog on frame position click.
Diffstat (limited to 'src/wx/playhead_to_frame_dialog.h')
| -rw-r--r-- | src/wx/playhead_to_frame_dialog.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/wx/playhead_to_frame_dialog.h b/src/wx/playhead_to_frame_dialog.h new file mode 100644 index 000000000..b6a902a55 --- /dev/null +++ b/src/wx/playhead_to_frame_dialog.h @@ -0,0 +1,34 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic 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. + + DCP-o-matic 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + +#include "table_dialog.h" +#include "timecode.h" + +class PlayheadToFrameDialog : public TableDialog +{ +public: + PlayheadToFrameDialog (wxWindow* parent, int fps); + + DCPTime get () const; + +private: + wxTextCtrl* _frame; + int _fps; +}; |
