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.
tdemultimedia/kmix/dialogselectmaster.h

44 lines
806 B

#ifndef DIALOGSELECTMASTER_H
#define DIALOGSELECTMASTER_H
class QButtonGroup;
#include <tqradiobutton.h>
class QScrollView;
#include <tqstringlist.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, TQString& );
public slots:
void apply();
private:
void createWidgets(Mixer*);
void createPage(Mixer*);
TQVBoxLayout* _layout;
KComboBox* m_cMixer;
TQScrollView* m_scrollableChannelSelector;
TQVBox *m_vboxForScrollView;
TQButtonGroup *m_buttonGroupForScrollView;
TQStringList m_mixerPKs;
private slots:
void createPageByID(int mixerId);
};
#endif