summaryrefslogtreecommitdiff
path: root/src/wx/content_sub_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-06 23:34:48 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-06 23:34:48 +0100
commit401af8742fe5b2bb3ec117acdc4b0b36bc8f5047 (patch)
tree903a138f847c19c9bfa7dca675abdc9b5ff11231 /src/wx/content_sub_panel.h
parent2857a60daf47286979a813ebefd892757de4f113 (diff)
Interface levels in audio tab.
Diffstat (limited to 'src/wx/content_sub_panel.h')
-rw-r--r--src/wx/content_sub_panel.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wx/content_sub_panel.h b/src/wx/content_sub_panel.h
index 8c7854af2..bb0e937a1 100644
--- a/src/wx/content_sub_panel.h
+++ b/src/wx/content_sub_panel.h
@@ -24,10 +24,12 @@
#include <boost/shared_ptr.hpp>
#include <wx/wx.h>
#include "lib/film.h"
+#include "lib/config.h"
class ContentPanel;
class Content;
class DCPContent;
+class wxGridBagSizer;
class ContentSubPanel : public wxScrolledWindow
{
@@ -47,10 +49,15 @@ public:
protected:
void setup_refer_button (wxCheckBox* button, wxStaticText* note, boost::shared_ptr<DCPContent> 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);
};
#endif