summaryrefslogtreecommitdiff
path: root/src/wx/standard_controls.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-29 09:14:20 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-29 20:53:49 +0200
commit39fb8198febde1937019db1c300ec363aab5aa56 (patch)
tree52bc32134e8ae2b5587b3a62130baa9acf815b60 /src/wx/standard_controls.cc
parentb249700e1da7dd6631a8b4440587f4093a2bdef1 (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/standard_controls.cc')
-rw-r--r--src/wx/standard_controls.cc16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/wx/standard_controls.cc b/src/wx/standard_controls.cc
index c78844ca1..1e4ecc8d7 100644
--- a/src/wx/standard_controls.cc
+++ b/src/wx/standard_controls.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
This file is part of DCP-o-matic.
@@ -18,13 +18,16 @@
*/
-#include "standard_controls.h"
+
#include "film_viewer.h"
-#include <wx/wx.h>
+#include "standard_controls.h"
#include <wx/tglbtn.h>
+#include <wx/wx.h>
+
using std::shared_ptr;
+
StandardControls::StandardControls (wxWindow* parent, shared_ptr<FilmViewer> viewer, bool editor_controls)
: Controls (parent, viewer, editor_controls)
, _play_button (new wxToggleButton(this, wxID_ANY, _("Play")))
@@ -33,6 +36,7 @@ StandardControls::StandardControls (wxWindow* parent, shared_ptr<FilmViewer> vie
_play_button->Bind (wxEVT_TOGGLEBUTTON, boost::bind(&StandardControls::play_clicked, this));
}
+
void
StandardControls::started ()
{
@@ -40,6 +44,7 @@ StandardControls::started ()
_play_button->SetValue (true);
}
+
void
StandardControls::stopped ()
{
@@ -47,12 +52,14 @@ StandardControls::stopped ()
_play_button->SetValue (false);
}
+
void
StandardControls::play_clicked ()
{
check_play_state ();
}
+
void
StandardControls::check_play_state ()
{
@@ -67,6 +74,7 @@ StandardControls::check_play_state ()
}
}
+
void
StandardControls::setup_sensitivity ()
{
@@ -75,6 +83,7 @@ StandardControls::setup_sensitivity ()
_play_button->Enable (_film && !_film->content().empty() && !active_job);
}
+
void
StandardControls::play ()
{
@@ -82,6 +91,7 @@ StandardControls::play ()
play_clicked ();
}
+
void
StandardControls::stop ()
{