summaryrefslogtreecommitdiff
path: root/src/wx/video_view.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-09 17:59:10 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-10 23:43:55 +0100
commitfc4f75abd3b062e8297990a482e77e32458cd169 (patch)
treebb562bd9ec330f0c5973fd6e796bdd19adfd4ac1 /src/wx/video_view.h
parentf9db80a8e61cedd001d10b555d0798798a773668 (diff)
Tidy up sized emissions from VideoView.
Diffstat (limited to 'src/wx/video_view.h')
-rw-r--r--src/wx/video_view.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/video_view.h b/src/wx/video_view.h
index f4dec9c68..060d982f7 100644
--- a/src/wx/video_view.h
+++ b/src/wx/video_view.h
@@ -22,6 +22,7 @@
#define DCPOMATIC_VIDEO_VIEW_H
#include <boost/shared_ptr.hpp>
+#include <boost/signals2.hpp>
class Image;
class wxWindow;
@@ -33,6 +34,8 @@ public:
virtual void set_image (boost::shared_ptr<const Image> image) = 0;
virtual wxWindow* get () const = 0;
+
+ boost::signals2::signal<void()> Sized;
};
#endif