X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_panel.h;h=0f5e28ac491f8317ed30c39a0418c17f3de0ec95;hb=661de111c0dbc968ecb004eca5b26f8400b136f1;hp=5701696e5257163de997e22c6b6c0245312750de;hpb=1f82930e73679d6aec5223caa255f564339a1a2a;p=dcpomatic.git diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h index 5701696e5..0f5e28ac4 100644 --- a/src/wx/content_panel.h +++ b/src/wx/content_panel.h @@ -33,7 +33,7 @@ class FilmEditor; class ContentSubPanel; class Film; -class ContentPanel +class ContentPanel : public boost::noncopyable { public: ContentPanel (wxNotebook *, boost::shared_ptr); @@ -63,20 +63,23 @@ public: SubtitleContentList selected_subtitle (); FFmpegContentList selected_ffmpeg (); + void add_file_clicked (); + private: - void sequence_video_changed (); void selection_changed (); - void add_file_clicked (); void add_folder_clicked (); void remove_clicked (); void earlier_clicked (); void later_clicked (); void right_click (wxListEvent &); + void files_dropped (wxDropFilesEvent &); void timeline_clicked (); void setup (); void setup_sensitivity (); + void add_files (std::list); + wxPanel* _panel; wxSizer* _sizer; wxNotebook* _notebook; @@ -87,7 +90,6 @@ private: wxButton* _earlier; wxButton* _later; wxButton* _timeline; - wxCheckBox* _sequence_video; ContentSubPanel* _video_panel; ContentSubPanel* _audio_panel; ContentSubPanel* _subtitle_panel;