diff options
author | André Nusser <andre.nusser@googlemail.com> | 2017-05-05 23:54:29 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2017-05-06 20:26:40 +0200 |
commit | 17c4551a0a02df27cb907678a0509c1a63f6256c (patch) | |
tree | 5eed9407be2f20dd823521ebe8726139ec187a75 /plugingui/maintab.h | |
parent | 286cddccfd9d69f4bc567fc9f00898f06315cd30 (diff) |
Introduce the new resampling frame.
Diffstat (limited to 'plugingui/maintab.h')
-rw-r--r-- | plugingui/maintab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugingui/maintab.h b/plugingui/maintab.h index 62b3f82..ab7e760 100644 --- a/plugingui/maintab.h +++ b/plugingui/maintab.h @@ -33,6 +33,7 @@ #include "statusframecontent.h" #include "humanizerframecontent.h" #include "diskstreamingframecontent.h" +#include "resamplingframecontent.h" struct Settings; class SettingsNotifier; @@ -55,6 +56,7 @@ public: private: void humanizerOnChange(bool on); + void resamplingOnChange(bool on); Image logo{":resources/logo.png"}; @@ -64,11 +66,13 @@ private: FrameWidget status_frame{this, false}; FrameWidget humanizer_frame{this, true}; FrameWidget diskstreaming_frame{this, false}; + FrameWidget resampling_frame{this, true}; DrumkitframeContent drumkitframe_content; StatusframeContent statusframe_content; HumanizerframeContent humanizerframe_content; DiskstreamingframeContent diskstreamingframe_content; + ResamplingframeContent resamplingframe_content; Settings& settings; SettingsNotifier& settings_notifier; |