X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_sub_panel.h;h=7f201ff488773fdd2bcb91246ad2b2ad72a99779;hb=447ee98f36b5ae2cd40b98e4316dc4428b374d90;hp=9afd50d4027dd53111de1028dbcde4deded5b8e0;hpb=3ae67788dcb1567c5d6df65e89cd84bf484e82be;p=dcpomatic.git diff --git a/src/wx/content_sub_panel.h b/src/wx/content_sub_panel.h index 9afd50d40..7f201ff48 100644 --- a/src/wx/content_sub_panel.h +++ b/src/wx/content_sub_panel.h @@ -24,10 +24,12 @@ #include #include #include "lib/film.h" +#include "lib/config.h" class ContentPanel; class Content; class DCPContent; +class wxGridBagSizer; class ContentSubPanel : public wxScrolledWindow { @@ -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, 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