X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_sub_panel.h;h=7f201ff488773fdd2bcb91246ad2b2ad72a99779;hb=ab0e8cdcafdcb83096012380f674b8280474e851;hp=8c7854af29d77dcf31a36ae86eb3ff6e88615852;hpb=dea824f6ff41384a5e17e23de5434cf84eccff29;p=dcpomatic.git diff --git a/src/wx/content_sub_panel.h b/src/wx/content_sub_panel.h index 8c7854af2..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 { @@ -47,10 +49,16 @@ public: 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