Bump version
[dcpomatic.git] / src / wx / film_editor.h
index 0f62f4479b61dbf62da49c856cc2f30b46461ac9..8ecec3ec76801b6612d1a196a6a9465bde774a91 100644 (file)
@@ -37,6 +37,7 @@ class TimelineDialog;
 class Ratio;
 class Timecode;
 class FilmEditorPanel;
+class SubtitleContent;
 
 /** @class FilmEditor
  *  @brief A wx widget to edit a film's metadata, and perform various functions.
@@ -76,7 +77,8 @@ private:
        void use_dci_name_toggled ();
        void edit_dci_button_clicked ();
        void content_selection_changed ();
-       void content_add_clicked ();
+       void content_add_file_clicked ();
+       void content_add_folder_clicked ();
        void content_remove_clicked ();
        void container_changed ();
        void dcp_content_type_changed ();
@@ -90,6 +92,7 @@ private:
        void sequence_video_changed ();
        void content_right_click (wxListEvent &);
        void three_d_changed ();
+       void standard_changed ();
 
        /* Handle changes to the model */
        void film_changed (Film::Property);
@@ -123,7 +126,8 @@ private:
        wxCheckBox* _use_dci_name;
        wxChoice* _container;
        wxListCtrl* _content;
-       wxButton* _content_add;
+       wxButton* _content_add_file;
+       wxButton* _content_add_folder;
        wxButton* _content_remove;
        wxButton* _content_earlier;
        wxButton* _content_later;
@@ -138,6 +142,7 @@ private:
        wxButton* _best_frame_rate;
        wxCheckBox* _three_d;
        wxChoice* _resolution;
+       wxChoice* _standard;
 
        ContentMenu _menu;