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.
37 lines
719 B
37 lines
719 B
#ifndef ViewSwitches_h
|
|
#define ViewSwitches_h
|
|
|
|
class QLayout;
|
|
class QWidget;
|
|
|
|
class Mixer;
|
|
#include "viewbase.h"
|
|
|
|
class ViewSwitches : public ViewBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ViewSwitches(QWidget* parent, const char* name, const QString & caption, Mixer* mixer, ViewBase::ViewFlags vflags);
|
|
~ViewSwitches();
|
|
|
|
virtual int count();
|
|
virtual int advice();
|
|
virtual void setMixSet(MixSet *mixset);
|
|
virtual QWidget* add(MixDevice *mdw);
|
|
virtual void constructionFinished();
|
|
virtual void configurationUpdate();
|
|
|
|
QSize sizeHint() const;
|
|
|
|
public slots:
|
|
virtual void refreshVolumeLevels();
|
|
|
|
private:
|
|
QLayout* _layoutMDW;
|
|
QLayout* _layoutEnum;
|
|
QLayout* _layoutSwitch;
|
|
};
|
|
|
|
#endif
|
|
|