Make KDM output options checkboxes rather than radios (part of #848).
[dcpomatic.git] / src / wx / kdm_output_panel.h
index efc9c0c9307e578d5d34cfcecfcb32415bff13d7..98e2622a9b77b00809b5a5e98b9bbc705f22b084 100644 (file)
@@ -34,6 +34,7 @@ public:
 
        boost::filesystem::path directory () const;
        bool write_to () const;
+       bool email () const;
        dcp::Formulation formulation () const;
        dcp::NameFormat name_format () const;
 
@@ -43,11 +44,11 @@ public:
 private:
        wxChoice* _type;
        NameFormatEditor* _filename_format;
-       wxRadioButton* _write_to;
+       wxCheckBox* _write_to;
 #ifdef DCPOMATIC_USE_OWN_PICKER
        DirPickerCtrl* _folder;
 #else
        wxDirPickerCtrl* _folder;
 #endif
-       wxRadioButton* _email;
+       wxCheckBox* _email;
 };