X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fcontent_sub_panel.h;h=7f201ff488773fdd2bcb91246ad2b2ad72a99779;hb=a2cba59a791eb8a65d730aa170586117f120e437;hp=540ccb24075f526881e04d103bb6a62c56e8c49b;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/wx/content_sub_panel.h b/src/wx/content_sub_panel.h index 540ccb240..7f201ff48 100644 --- a/src/wx/content_sub_panel.h +++ b/src/wx/content_sub_panel.h @@ -24,12 +24,14 @@ #include #include #include "lib/film.h" +#include "lib/config.h" class ContentPanel; class Content; class DCPContent; +class wxGridBagSizer; -class ContentSubPanel : public wxPanel +class ContentSubPanel : public wxScrolledWindow { public: ContentSubPanel (ContentPanel *, wxString); @@ -40,12 +42,23 @@ public: /** Called when the list of selected Contents changes */ virtual void content_selection_changed () = 0; + wxString name () const { + return _name; + } + protected: - void setup_refer_button (wxCheckBox* button, boost::shared_ptr dcp, bool can_reference, std::list why_not) const; + void setup_refer_button (wxCheckBox* button, wxStaticText* note, boost::shared_ptr dcp, bool can_reference, std::string why_not) const; + virtual void add_to_grid () = 0; ContentPanel* _parent; wxSizer* _sizer; + wxGridBagSizer* _grid; + wxString _name; + +private: + void config_changed (Config::Property); + boost::signals2::scoped_connection _config_connection; }; #endif