blob: d0bc3c4e171e45bfae4b2cf8c577aaa3d48b3fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#ifndef ViewSurround_h
#define ViewSurround_h
class TQBoxLayout;
class TQGridLayout;
class TQWidget;
class MixDevice;
class MixDeviceWidget;
class Mixer;
#include "viewbase.h"
class ViewSurround : public ViewBase
{
Q_OBJECT
TQ_OBJECT
public:
ViewSurround(TQWidget* tqparent, const char* name, const TQString & caption, Mixer* mixer, ViewBase::ViewFlags vflags);
~ViewSurround();
virtual int count();
virtual int advice();
virtual void setMixSet(MixSet *mixset);
virtual TQWidget* add(MixDevice *mdw);
virtual void constructionFinished();
TQSize tqsizeHint() const;
public slots:
virtual void refreshVolumeLevels();
private:
MixDeviceWidget* createMDW(MixDevice *md, bool small, Qt::Orientation orientation);
MixDevice *_mdSurroundFront;
MixDevice *_mdSurroundBack;
TQBoxLayout* _layoutMDW;
TQBoxLayout* _layoutSliders;
TQGridLayout* _layoutSurround;
};
#endif
|