X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_panel.h;h=d1ba1a7603422074c2bb97717bb2b97c2efb407b;hb=f479e6edc5152edfa4b21f85e925b890818817af;hp=2a74df215fcbdf03588e5e8f5590be04068e0ad6;hpb=f02a6f52ec33a4dc6f8f8b6bce9445dcd32fa11a;p=dcpomatic.git diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h index 2a74df215..d1ba1a760 100644 --- a/src/wx/content_panel.h +++ b/src/wx/content_panel.h @@ -20,54 +20,41 @@ #include "content_menu.h" +#include "lib/enum_indexed_vector.h" #include "lib/film.h" #include "lib/types.h" +#include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS #include +class AudioPanel; +class ContentSubPanel; +class Film; +class FilmEditor; +class FilmViewer; +class LimitedContentPanelSplitter; +class TextPanel; +class TimelineDialog; +class TimingPanel; +class VideoPanel; +class wxListCtrl; +class wxListEvent; class wxNotebook; class wxPanel; class wxSizer; -class wxListCtrl; -class wxListEvent; class wxSplitterWindow; -class TimelineDialog; -class FilmEditor; -class ContentSubPanel; -class TextPanel; -class VideoPanel; -class AudioPanel; -class TimingPanel; -class Film; -class FilmViewer; -class LimitedSplitter : public wxSplitterWindow +class ContentPanel { public: - LimitedSplitter (wxWindow* parent); + ContentPanel(wxNotebook *, std::shared_ptr, FilmViewer& viewer); - bool OnSashPositionChange (int new_position) - { - /* Try to stop the top bit of the splitter getting so small that buttons disappear */ - return new_position > 220; - } - - void first_shown (wxWindow* top, wxWindow* bottom); - -private: - void sized (wxSizeEvent& ev); - - bool _first_shown; - int const _top_panel_minimum_size; -}; - - -class ContentPanel : public boost::noncopyable -{ -public: - ContentPanel (wxNotebook *, std::shared_ptr, std::weak_ptr viewer); + ContentPanel (ContentPanel const&) = delete; + ContentPanel& operator= (ContentPanel const&) = delete; std::shared_ptr film () const { return _film; @@ -84,9 +71,7 @@ public: void first_shown (); - wxWindow* window () const { - return _splitter; - } + wxWindow* window () const; wxNotebook* notebook () const { return _notebook; @@ -102,10 +87,14 @@ public: bool remove_clicked (bool hotkey); void timeline_clicked (); - std::weak_ptr film_viewer () const { + FilmViewer& film_viewer() const { return _film_viewer; } + void add_files(std::vector files); + void add_dcp(boost::filesystem::path dcp); + void add_folder(boost::filesystem::path folder); + boost::signals2::signal SelectionChanged; private: @@ -122,11 +111,11 @@ private: void setup (); void setup_sensitivity (); + void set_selected_state(int item, bool state); - void add_files (std::list); std::list panels () const; - LimitedSplitter* _splitter; + LimitedContentPanelSplitter* _splitter; wxPanel* _top_panel; wxNotebook* _notebook; wxListCtrl* _content; @@ -139,7 +128,7 @@ private: wxButton* _timeline; VideoPanel* _video_panel = nullptr; AudioPanel* _audio_panel = nullptr; - TextPanel* _text_panel[static_cast(TextType::COUNT)]; + EnumIndexedVector _text_panel; TimingPanel* _timing_panel; ContentMenu* _menu; TimelineDialog* _timeline_dialog = nullptr; @@ -147,7 +136,7 @@ private: wxWindow* _last_selected_tab = nullptr; std::shared_ptr _film; - std::weak_ptr _film_viewer; + FilmViewer& _film_viewer; bool _generally_sensitive; bool _ignore_deselect; bool _no_check_selection;