summaryrefslogtreecommitdiffstats
path: root/kmix/dialogselectmaster.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/dialogselectmaster.h')
-rw-r--r--kmix/dialogselectmaster.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/kmix/dialogselectmaster.h b/kmix/dialogselectmaster.h
new file mode 100644
index 00000000..912d870d
--- /dev/null
+++ b/kmix/dialogselectmaster.h
@@ -0,0 +1,43 @@
+#ifndef DIALOGSELECTMASTER_H
+#define DIALOGSELECTMASTER_H
+
+class QButtonGroup;
+#include <qradiobutton.h>
+class QScrollView;
+#include <qstringlist.h>
+class QVBox;
+class QVBoxLayout;
+
+class KComboBox;
+#include <kdialogbase.h>
+
+class Mixer;
+
+class DialogSelectMaster : public KDialogBase
+{
+ Q_OBJECT
+ public:
+ DialogSelectMaster(Mixer *);
+ ~DialogSelectMaster();
+
+ signals:
+ void newMasterSelected(int, QString& );
+
+ public slots:
+ void apply();
+
+ private:
+ void createWidgets(Mixer*);
+ void createPage(Mixer*);
+ QVBoxLayout* _layout;
+ KComboBox* m_cMixer;
+ QScrollView* m_scrollableChannelSelector;
+ QVBox *m_vboxForScrollView;
+ QButtonGroup *m_buttonGroupForScrollView;
+ QStringList m_mixerPKs;
+
+ private slots:
+ void createPageByID(int mixerId);
+};
+
+#endif