summaryrefslogtreecommitdiff
path: root/src/wx/controls.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-02-01 23:58:04 +0100
committerCarl Hetherington <cth@carlh.net>2021-02-01 23:58:04 +0100
commitb539d468acc3ca73cc58a4434002e511a4995f7d (patch)
tree0b87689706f9248853b62179195fa881d17730b0 /src/wx/controls.h
parent4a2efeb3c35babad46eebfbb56fa9a0a7c215d3b (diff)
C++11 tidying.
Diffstat (limited to 'src/wx/controls.h')
-rw-r--r--src/wx/controls.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/wx/controls.h b/src/wx/controls.h
index a2c80b809..9a22d7709 100644
--- a/src/wx/controls.h
+++ b/src/wx/controls.h
@@ -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,9 +18,11 @@
*/
+
#ifndef DCPOMATIC_CONTROLS_H
#define DCPOMATIC_CONTROLS_H
+
#include "lib/dcpomatic_time.h"
#include "lib/types.h"
#include "lib/film.h"
@@ -30,6 +32,7 @@ DCPOMATIC_DISABLE_WARNINGS
DCPOMATIC_ENABLE_WARNINGS
#include <boost/signals2.hpp>
+
class FilmViewer;
class Film;
class ClosedCaptionsDialog;
@@ -39,10 +42,12 @@ class wxToggleButton;
class wxListCtrl;
class ContentView;
+
namespace dcp {
class CPL;
}
+
class Controls : public wxPanel
{
public:
@@ -64,6 +69,7 @@ public:
void forward_frame ();
protected:
+
virtual void started ();
virtual void stopped ();
virtual void setup_sensitivity ();
@@ -117,4 +123,5 @@ private:
boost::signals2::scoped_connection _config_changed_connection;
};
+
#endif