Fix strange layout problems with the content sub panels (#2059).
[dcpomatic.git] / src / wx / content_sub_panel.h
index 128a3862d44839c456959964973b71c6e9b6c374..2a7bc4f75e05b9800fa48b115d7d2d153c3a5d59 100644 (file)
 #define DCPOMATIC_CONTENT_SUB_PANEL_H
 
 #include "lib/film.h"
-#include "lib/config.h"
 #include "lib/warnings.h"
 DCPOMATIC_DISABLE_WARNINGS
 #include <wx/wx.h>
 DCPOMATIC_ENABLE_WARNINGS
-#include <boost/shared_ptr.hpp>
 
 class ContentPanel;
 class Content;
@@ -51,17 +49,14 @@ public:
 
 protected:
 
-       void setup_refer_button (wxCheckBox* button, wxStaticText* note, boost::shared_ptr<DCPContent> dcp, bool can_reference, wxString cannot) const;
+       void setup_refer_button (wxCheckBox* button, wxStaticText* note, std::shared_ptr<DCPContent> dcp, bool can_reference, wxString cannot);
+       void layout ();
        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