Fill in zeros if a part of a timecode is entered.
authorCarl Hetherington <cth@carlh.net>
Mon, 22 Nov 2021 19:47:14 +0000 (20:47 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 22 Nov 2021 19:47:14 +0000 (20:47 +0100)
It looks better if zeros are added elsewhere when you, for example,
put a number into the seconds box and click "set".

src/wx/timecode.cc
src/wx/timecode.h

index 0e798bb3aee2ae7815e65d806936984245b1d45b..0230d665d10cc8bc29cf917ab280522255f75311 100644 (file)
@@ -105,7 +105,7 @@ TimecodeBase::clear ()
 void
 TimecodeBase::changed ()
 {
-       if (_set_button) {
+       if (_set_button && !_ignore_changed) {
                _set_button->Enable (true);
        }
 }
@@ -117,6 +117,21 @@ TimecodeBase::set_clicked ()
        if (_set_button) {
                _set_button->Enable (false);
        }
+
+       _ignore_changed = true;
+       if (_hours->GetValue().IsEmpty()) {
+               _hours->SetValue(wxT("0"));
+       }
+       if (_minutes->GetValue().IsEmpty()) {
+               _minutes->SetValue(wxT("0"));
+       }
+       if (_seconds->GetValue().IsEmpty()) {
+               _seconds->SetValue(wxT("0"));
+       }
+       if (_frames->GetValue().IsEmpty()) {
+               _frames->SetValue(wxT("0"));
+       }
+       _ignore_changed = false;
 }
 
 void
index ccab0ecfcb1686229b8da208163bc25fa240b2d9..c31a6740c5ea86c86e1fb9a2763dba874a23e85d 100644 (file)
@@ -54,6 +54,8 @@ protected:
        wxTextCtrl* _frames;
        wxButton* _set_button;
        wxStaticText* _fixed;
+
+       bool _ignore_changed = false;
 };
 
 template <class T>