X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_panel.h;h=eec062284eab7eaa9857f594b3d67eeb0776f047;hb=9adbb3c5ab5d90268a3009c4a6f1bbc5f6290d81;hp=52a7e9f3c2bab045243171d54635169de478545d;hpb=ed94e34207c9d8dbd495ca4b0ef468b79126f26a;p=dcpomatic.git diff --git a/src/wx/content_panel.h b/src/wx/content_panel.h index 52a7e9f3c..eec062284 100644 --- a/src/wx/content_panel.h +++ b/src/wx/content_panel.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2019 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,28 +18,33 @@ */ + #include "content_menu.h" -#include "lib/types.h" +#include "lib/enum_indexed_vector.h" #include "lib/film.h" +#include "lib/types.h" +#include +LIBDCP_DISABLE_WARNINGS #include -#include +LIBDCP_ENABLE_WARNINGS #include + +class AudioPanel; +class ContentSubPanel; +class Film; +class FilmEditor; +class FilmViewer; +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 @@ -47,29 +52,39 @@ class LimitedSplitter : public wxSplitterWindow public: LimitedSplitter (wxWindow* parent); - bool OnSashPositionChange (int new_position) + bool OnSashPositionChange (int new_position) override { /* 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 +class ContentPanel { public: - ContentPanel (wxNotebook *, boost::shared_ptr, boost::weak_ptr viewer); + ContentPanel (wxNotebook *, std::shared_ptr, std::weak_ptr viewer); + + ContentPanel (ContentPanel const&) = delete; + ContentPanel& operator= (ContentPanel const&) = delete; - boost::shared_ptr film () const { + std::shared_ptr film () const { return _film; } - void set_film (boost::shared_ptr); + void set_film (std::shared_ptr); void set_general_sensitivity (bool s); - void set_selection (boost::weak_ptr); + void set_selection (std::weak_ptr); void set_selection (ContentList cl); + void select_all (); void film_changed (Film::Property p); void film_content_changed (int p); @@ -94,7 +109,7 @@ public: bool remove_clicked (bool hotkey); void timeline_clicked (); - boost::weak_ptr film_viewer () const { + std::weak_ptr film_viewer () const { return _film_viewer; } @@ -114,8 +129,9 @@ private: void setup (); void setup_sensitivity (); + void set_selected_state(int item, bool state); - void add_files (std::list); + void add_files (std::vector); std::list panels () const; LimitedSplitter* _splitter; @@ -129,17 +145,17 @@ private: wxButton* _earlier; wxButton* _later; wxButton* _timeline; - VideoPanel* _video_panel; - AudioPanel* _audio_panel; - TextPanel* _text_panel[TEXT_COUNT]; + VideoPanel* _video_panel = nullptr; + AudioPanel* _audio_panel = nullptr; + EnumIndexedVector _text_panel; TimingPanel* _timing_panel; ContentMenu* _menu; - TimelineDialog* _timeline_dialog; + TimelineDialog* _timeline_dialog = nullptr; wxNotebook* _parent; - wxWindow* _last_selected_tab; + wxWindow* _last_selected_tab = nullptr; - boost::shared_ptr _film; - boost::weak_ptr _film_viewer; + std::shared_ptr _film; + std::weak_ptr _film_viewer; bool _generally_sensitive; bool _ignore_deselect; bool _no_check_selection;