Updated es_ES translation from Manuel AC.
[dcpomatic.git] / src / wx / video_panel.h
index a373f091e6f4a71e64efcbe4020af736b166cfd1..2ecf3c87f449135756c21e280c439cc63abeb6ce 100644 (file)
@@ -17,6 +17,7 @@
 
 */
 
+#include "lib/film.h"
 #include "film_editor_panel.h"
 
 class wxChoice;
@@ -29,25 +30,31 @@ class VideoPanel : public FilmEditorPanel
 public:
        VideoPanel (FilmEditor *);
 
+       void film_changed (Film::Property);
        void film_content_changed (boost::shared_ptr<Content>, int);
 
-       void setup_scaling_description ();
-       
 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 &);
-
-       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;
 };