blob: a03d90e2490311300c8dd9f1955dd81e213552a1 (
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
|
#ifndef ViewApplet_h
#define ViewApplet_h
#include "viewbase.h"
#include <kpanelapplet.h>
class QBoxLayout;
class QHBox;
class QSize;
class Mixer;
class ViewApplet : public ViewBase
{
Q_OBJECT
public:
ViewApplet(QWidget* 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 QWidget* add(MixDevice *mdw);
virtual void constructionFinished();
virtual void configurationUpdate();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
virtual void resizeEvent(QResizeEvent*);
signals:
void appletContentChanged();
public slots:
virtual void refreshVolumeLevels();
private:
bool shouldShowIcons(QSize);
QBoxLayout* _layoutMDW;
// Position of the applet (pLeft, pRight, pTop, pBottom)
//KPanelApplet::Position _KMIXposition;
// Orientation of the applet (horizontal or vertical)
Qt::Orientation _viewOrientation;
};
#endif
|