summaryrefslogtreecommitdiff
path: root/src/wx/playhead_to_frame_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-07-01 23:37:01 +0100
committerCarl Hetherington <cth@carlh.net>2016-07-01 23:37:01 +0100
commitee37079f77166aaa309ffe7b3475b4f79f88eaa8 (patch)
treec21a20ccb9fba3376247ee6961f1a24b82a7214d /src/wx/playhead_to_frame_dialog.cc
parentf9783b204b672ed5c951125b2476d45ecc50915c (diff)
Add frame number dialog on frame position click.
Diffstat (limited to 'src/wx/playhead_to_frame_dialog.cc')
-rw-r--r--src/wx/playhead_to_frame_dialog.cc38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/wx/playhead_to_frame_dialog.cc b/src/wx/playhead_to_frame_dialog.cc
new file mode 100644
index 000000000..bb3c5b5fb
--- /dev/null
+++ b/src/wx/playhead_to_frame_dialog.cc
@@ -0,0 +1,38 @@
+/*
+ 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 "playhead_to_frame_dialog.h"
+#include "lib/raw_convert.h"
+
+PlayheadToFrameDialog::PlayheadToFrameDialog (wxWindow* parent, int fps)
+ : TableDialog (parent, _("Move to frame"), 2, 1, true)
+ , _fps (fps)
+{
+ add (_("Go to"), true);
+ _frame = add (new wxTextCtrl (this, wxID_ANY, wxT ("")));
+
+ layout ();
+}
+
+DCPTime
+PlayheadToFrameDialog::get () const
+{
+ return DCPTime::from_frames (raw_convert<Frame> (wx_to_std (_frame->GetValue ())) - 1, _fps);
+}