You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
798 B
44 lines
798 B
15 years ago
|
#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
|