summaryrefslogtreecommitdiffstats
path: root/src/controllers/dlgprefcontroller.h
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2014-03-27 10:58:40 -0400
committerRJ Ryan <rryan@mixxx.org>2014-03-29 02:40:31 -0400
commitc4b865a42be1c307612984b49a9b157788e296b5 (patch)
treee9d71c498d61c28e639b1ea530047f9a21ad9225 /src/controllers/dlgprefcontroller.h
parentc18b3cd9818e5bf5ea2f69c5bbc64b6b4425afac (diff)
Terminology change: binding -> mapping.
Diffstat (limited to 'src/controllers/dlgprefcontroller.h')
-rw-r--r--src/controllers/dlgprefcontroller.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/controllers/dlgprefcontroller.h b/src/controllers/dlgprefcontroller.h
index 7b5fa27f8c..fc026643a4 100644
--- a/src/controllers/dlgprefcontroller.h
+++ b/src/controllers/dlgprefcontroller.h
@@ -55,15 +55,17 @@ class DlgPrefController : public DlgPreferencePage {
private slots:
void slotPresetLoaded(ControllerPresetPointer preset);
- void slotShowLearnDialog();
// Input mappings
- void clearAllInputBindings();
- //void slotRemoveInputMapping() {};
- //void slotAddInputMapping() {};
+ void addInputMapping();
+ void showLearningWizard();
+ void removeInputMappings();
+ void clearAllInputMappings();
// Output mappings
- void clearAllOutputBindings();
+ void addOutputMapping();
+ void removeOutputMappings();
+ void clearAllOutputMappings();
private:
QString presetShortName(const ControllerPresetPointer pPreset) const;
@@ -80,7 +82,6 @@ class DlgPrefController : public DlgPreferencePage {
ControllerManager* m_pControllerManager;
Controller* m_pController;
DlgControllerLearning* m_pDlgControllerLearning;
- QSpacerItem* m_pVerticalSpacer;
bool m_bDirty;
};