Fix erroneous disabling of Make DCP option after creating one (#230).
[dcpomatic.git] / src / wx / video_panel.h
index 4cc9cd79ccb62f3c5743dec0174e284528521718..2ecf3c87f449135756c21e280c439cc63abeb6ce 100644 (file)
@@ -34,22 +34,27 @@ public:
        void film_content_changed (boost::shared_ptr<Content>, int);
 
 private:
-       void left_crop_changed (wxCommandEvent &);
-       void right_crop_changed (wxCommandEvent &);
-       void top_crop_changed (wxCommandEvent &);
-       void bottom_crop_changed (wxCommandEvent &);
-       void edit_filters_clicked (wxCommandEvent &);
-       void ratio_changed (wxCommandEvent &);
-
-       void setup_scaling_description ();
-       
-       wxChoice* _ratio;
-       wxStaticText* _ratio_description;
-       wxStaticText* _scaling_description;
+       void left_crop_changed ();
+       void right_crop_changed ();
+       void top_crop_changed ();
+       void bottom_crop_changed ();
+       void edit_filters_clicked ();
+       void ratio_changed ();
+       void frame_type_changed ();
+       void edit_colour_conversion_clicked ();
+
+       void setup_description ();
+
+       wxChoice* _frame_type;
        wxSpinCtrl* _left_crop;
        wxSpinCtrl* _right_crop;
        wxSpinCtrl* _top_crop;
        wxSpinCtrl* _bottom_crop;
+       wxChoice* _ratio;
+       wxStaticText* _ratio_description;
+       wxStaticText* _description;
        wxStaticText* _filters;
        wxButton* _filters_button;
+       wxStaticText* _colour_conversion;
+       wxButton* _colour_conversion_button;
 };