blob: a5e32611f0d359d439d84b4931f66aaf61985546 (
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
44
45
46
47
48
|
#ifndef ViewApplet_h
#define ViewApplet_h
#include "viewbase.h"
#include <kpanelapplet.h>
class TQBoxLayout;
class TQHBox;
class TQSize;
class Mixer;
class ViewApplet : public ViewBase
{
Q_OBJECT
public:
ViewApplet(TQWidget* parent, const char* name, Mixer* mixer, ViewBase::ViewFlags vflags, KPanelApplet::Position pos);
~ViewApplet();
virtual int count();
virtual int advice();
virtual void setMixSet(MixSet *mixset);
virtual TQWidget* add(MixDevice *mdw);
virtual void constructionFinished();
virtual void configurationUpdate();
TQSize sizeHint() const;
TQSizePolicy sizePolicy() const;
virtual void resizeEvent(TQResizeEvent*);
signals:
void appletContentChanged();
public slots:
virtual void refreshVolumeLevels();
private:
bool shouldShowIcons(TQSize);
TQBoxLayout* _layoutMDW;
// Position of the applet (pLeft, pRight, pTop, pBottom)
//KPanelApplet::Position _KMIXposition;
// Orientation of the applet (horizontal or vertical)
Qt::Orientation _viewOrientation;
};
#endif
|