Fix crash if quick_refresh() fails.
[dcpomatic.git] / src / wx / content_panel.h
index fe48e1e93d12246eff6183a6b7452116d68ba0f4..475567d28e46e5ada0940e429fc34b1814d4d3eb 100644 (file)
@@ -32,6 +32,7 @@ class wxListEvent;
 class TimelineDialog;
 class FilmEditor;
 class ContentSubPanel;
+class AudioPanel;
 class Film;
 class FilmViewer;
 
@@ -47,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);
@@ -68,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 &);
@@ -88,12 +93,13 @@ private:
        wxListCtrl* _content;
        wxButton* _add_file;
        wxButton* _add_folder;
+       wxButton* _add_dcp;
        wxButton* _remove;
        wxButton* _earlier;
        wxButton* _later;
        wxButton* _timeline;
        ContentSubPanel* _video_panel;
-       ContentSubPanel* _audio_panel;
+       AudioPanel* _audio_panel;
        ContentSubPanel* _subtitle_panel;
        ContentSubPanel* _timing_panel;
        std::list<ContentSubPanel *> _panels;