Disable warnings around all wx includes.
[dcpomatic.git] / src / wx / kdm_output_panel.h
index e8515d2c6c3e6ef90e831de73ff2746e357db05b..829b26544a679bc8a303b752e21965da7bf180ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015-2017 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2022 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
-#include "lib/kdm_with_metadata.h"
+
 #include "wx_util.h"
-#include "name_format_editor.h"
+#include "lib/kdm_with_metadata.h"
+#include "lib/warnings.h"
 #include <dcp/types.h>
+DCPOMATIC_DISABLE_WARNINGS
 #include <wx/wx.h>
+DCPOMATIC_ENABLE_WARNINGS
 #include <boost/filesystem.hpp>
 
-class wxRadioButton;
-class wxDirPickerCtrl;
+
 class DirPickerCtrl;
-class KDMTimingPanel;
 class Job;
-class Log;
+class KDMChoice;
+class NameFormatEditor;
+class wxDirPickerCtrl;
+class wxRadioButton;
+
 
 class KDMOutputPanel : public wxPanel
 {
@@ -52,7 +57,7 @@ public:
        }
 
        std::pair<std::shared_ptr<Job>, int> make (
-               std::list<KDMWithMetadataPtr > screen_kdms,
+               std::list<KDMWithMetadataPtr> screen_kdms,
                std::string name,
                std::function<bool (boost::filesystem::path)> confirm_overwrite
                );
@@ -60,8 +65,10 @@ public:
 private:
        void kdm_write_type_changed ();
        void advanced_clicked ();
+       void write_to_changed ();
+       void email_changed ();
 
-       wxChoice* _type;
+       KDMChoice* _type;
        NameFormatEditor* _container_name_format;
        NameFormatEditor* _filename_format;
        wxCheckBox* _write_to;