X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_panel.h;h=452d4a4f853c259584d5c53b4930fe9cfdbc61e1;hb=e60bb3e51bd1508b149e6b8f6608f09b5196ae26;hp=ab198411ddf5b9296aa19aab163621af55b34bb4;hpb=391d85619ac19a2a93696ddc35c222eb9bb5d9d6;p=dcpomatic.git diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h index ab198411d..452d4a4f8 100644 --- a/src/wx/content_panel.h +++ b/src/wx/content_panel.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,17 +32,18 @@ class TimelineDialog; class FilmEditor; class ContentSubPanel; class Film; +class FilmViewer; -class ContentPanel +class ContentPanel : public boost::noncopyable { public: - ContentPanel (wxNotebook *, boost::shared_ptr); + ContentPanel (wxNotebook *, boost::shared_ptr, FilmViewer* viewer); boost::shared_ptr film () const { return _film; } - void set_film (boost::shared_ptr f); + void set_film (boost::shared_ptr); void set_general_sensitivity (bool s); void set_selection (boost::weak_ptr); @@ -64,9 +65,8 @@ public: FFmpegContentList selected_ffmpeg (); void add_file_clicked (); - -private: - void sequence_video_changed (); + +private: void selection_changed (); void add_folder_clicked (); void remove_clicked (); @@ -79,6 +79,8 @@ private: void setup (); void setup_sensitivity (); + void add_files (std::list); + wxPanel* _panel; wxSizer* _sizer; wxNotebook* _notebook; @@ -89,7 +91,6 @@ private: wxButton* _earlier; wxButton* _later; wxButton* _timeline; - wxCheckBox* _sequence_video; ContentSubPanel* _video_panel; ContentSubPanel* _audio_panel; ContentSubPanel* _subtitle_panel;