Un-check screens when they or their cinema are deleted.
[dcpomatic.git] / src / wx / content_colour_conversion_dialog.h
index 471c1f8849dad60688d489e45e91d57dfd2a0aeb..84fb47e5adb2a38c66232cc656a9c21053aebe77 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "lib/colour_conversion.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
+#include <boost/signals2.hpp>
+
 
 class ColourConversionEditor;
 
+
 class ContentColourConversionDialog : public wxDialog
 {
 public:
@@ -36,10 +43,11 @@ private:
        void preset_check_clicked ();
        void preset_choice_changed ();
 
-       wxCheckBox* _preset_check;
+       CheckBox* _preset_check;
        wxChoice* _preset_choice;
        ColourConversionEditor* _editor;
        bool _setting;
 
        boost::signals2::scoped_connection _editor_connection;
 };
+