summaryrefslogtreecommitdiff
path: root/src/wx/timecode.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-07-19 11:41:47 +0100
committerCarl Hetherington <cth@carlh.net>2013-07-19 11:41:47 +0100
commit91273da19c689e44f3baa368d4b4efbe75cd8fe5 (patch)
treeb38e643c9de71b16168128a7f2f00ccb75009605 /src/wx/timecode.cc
parentd6b125826e28c0633137d667371defc33f95f648 (diff)
parentba17803f7e33be2bea1363b5a7115e4713dd5997 (diff)
Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
Diffstat (limited to 'src/wx/timecode.cc')
-rw-r--r--src/wx/timecode.cc29
1 files changed, 17 insertions, 12 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc
index 6ce1c1cb8..82c27c5b5 100644
--- a/src/wx/timecode.cc
+++ b/src/wx/timecode.cc
@@ -18,6 +18,7 @@
*/
#include <boost/lexical_cast.hpp>
+#include "lib/util.h"
#include "timecode.h"
#include "wx_util.h"
@@ -27,7 +28,6 @@ using boost::lexical_cast;
Timecode::Timecode (wxWindow* parent)
: wxPanel (parent)
- , _in_set (false)
{
wxClientDC dc (parent);
wxSize size = dc.GetTextExtent (wxT ("9999"));
@@ -48,31 +48,34 @@ Timecode::Timecode (wxWindow* parent)
_hours->SetMaxLength (2);
sizer->Add (_hours);
add_label_to_sizer (sizer, this, wxT (":"), false);
- _minutes = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size);
+ _minutes = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size, 0, validator);
_minutes->SetMaxLength (2);
sizer->Add (_minutes);
add_label_to_sizer (sizer, this, wxT (":"), false);
- _seconds = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size);
+ _seconds = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size, 0, validator);
_seconds->SetMaxLength (2);
sizer->Add (_seconds);
add_label_to_sizer (sizer, this, wxT ("."), false);
- _frames = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size);
+ _frames = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size, 0, validator);
_frames->SetMaxLength (2);
sizer->Add (_frames);
+ _set_button = new wxButton (this, wxID_ANY, _("Set"));
+ sizer->Add (_set_button, 0, wxLEFT | wxRIGHT, 8);
_hours->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (Timecode::changed), 0, this);
_minutes->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (Timecode::changed), 0, this);
_seconds->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (Timecode::changed), 0, this);
_frames->Connect (wxID_ANY, wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler (Timecode::changed), 0, this);
+ _set_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (Timecode::set_clicked), 0, this);
+ _set_button->Enable (false);
+
SetSizerAndFit (sizer);
}
void
Timecode::set (Time t, int fps)
{
- _in_set = true;
-
int const h = t / (3600 * TIME_HZ);
t -= h * 3600 * TIME_HZ;
int const m = t / (60 * TIME_HZ);
@@ -85,8 +88,6 @@ Timecode::set (Time t, int fps)
_minutes->SetValue (wxString::Format (wxT ("%d"), m));
_seconds->SetValue (wxString::Format (wxT ("%d"), s));
_frames->SetValue (wxString::Format (wxT ("%d"), f));
-
- _in_set = false;
}
Time
@@ -101,15 +102,19 @@ Timecode::get (int fps) const
t += lexical_cast<int> (s.empty() ? "0" : s) * TIME_HZ;
string const f = wx_to_std (_frames->GetValue());
t += lexical_cast<int> (f.empty() ? "0" : f) * TIME_HZ / fps;
+
return t;
}
void
Timecode::changed (wxCommandEvent &)
{
- if (_in_set) {
- return;
- }
-
+ _set_button->Enable (true);
+}
+
+void
+Timecode::set_clicked (wxCommandEvent &)
+{
Changed ();
+ _set_button->Enable (false);
}