Interface levels in audio tab.
[dcpomatic.git] / src / wx / content_sub_panel.cc
index a60a657073ae2be6d65c2b61a07d330acc1780db..0bd79805b7f45d08a68aaeef7f84dbc2378d7f3d 100644 (file)
@@ -37,9 +37,25 @@ ContentSubPanel::ContentSubPanel (ContentPanel* p, wxString name)
        , _sizer (new wxBoxSizer (wxVERTICAL))
        , _name (name)
 {
-       p->notebook()->AddPage (this, _name, false);
-       SetScrollRate (-1, 8);
+       SetScrollRate (8, 8);
        SetSizer (_sizer);
+
+       _grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
+       _sizer->Add (_grid, 0, wxALL, 8);
+
+       Config::instance()->Changed.connect (boost::bind (&ContentSubPanel::config_changed, this, _1));
+}
+
+
+void
+ContentSubPanel::config_changed (Config::Property p)
+{
+       if (p == Config::INTERFACE_COMPLEXITY) {
+               _grid->Clear ();
+               add_to_grid ();
+               _sizer->Layout ();
+               _grid->Layout ();
+       }
 }
 
 void