Fix crash if quick_refresh() fails.
[dcpomatic.git] / src / wx / content_panel.h
index e1a66770c446633fcf72cfda2d9140b26833c26e..475567d28e46e5ada0940e429fc34b1814d4d3eb 100644 (file)
@@ -48,6 +48,7 @@ public:
        void set_film (boost::shared_ptr<Film>);
        void set_general_sensitivity (bool s);
        void set_selection (boost::weak_ptr<Content>);
+       void set_selection (ContentList cl);
 
        void film_changed (Film::Property p);
        void film_content_changed (int p);
@@ -69,9 +70,12 @@ public:
        void add_file_clicked ();
        bool remove_clicked (bool hotkey);
 
+       boost::signals2::signal<void (void)> SelectionChanged;
+
 private:
        void selection_changed ();
        void add_folder_clicked ();
+       void add_dcp_clicked ();
        void earlier_clicked ();
        void later_clicked ();
        void right_click (wxListEvent &);
@@ -89,6 +93,7 @@ private:
        wxListCtrl* _content;
        wxButton* _add_file;
        wxButton* _add_folder;
+       wxButton* _add_dcp;
        wxButton* _remove;
        wxButton* _earlier;
        wxButton* _later;