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/viewsurround.h

44 lines
925 B

#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
{
TQ_OBJECT
public:
ViewSurround(TQWidget* parent, 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 sizeHint() const;
public slots:
virtual void refreshVolumeLevels();
private:
MixDeviceWidget* createMDW(MixDevice *md, bool small, TQt::Orientation orientation);
MixDevice *_mdSurroundFront;
MixDevice *_mdSurroundBack;
TQBoxLayout* _layoutMDW;
TQBoxLayout* _layoutSliders;
TQGridLayout* _layoutSurround;
};
#endif