blob: f57cdc59d9177124e678a8b8976ff7b8257fc06d (
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
|
#ifndef ViewGrid_h
#define ViewGrid_h
class QBoxLayout;
#include "qsize.h"
class QWidget;
class Mixer;
#include "viewbase.h"
class ViewGrid : public ViewBase
{
Q_OBJECT
public:
ViewGrid(QWidget* parent, const char* name, const QString & caption, Mixer* mixer, ViewBase::ViewFlags vflags);
~ViewGrid();
virtual int count();
virtual int advice();
virtual void setMixSet(MixSet *mixset);
virtual QWidget* add(MixDevice *mdw);
virtual void configurationUpdate();
virtual void constructionFinished();
QSize sizeHint() const;
public slots:
virtual void refreshVolumeLevels();
private:
unsigned int m_spacingHorizontal;
unsigned int m_spacingVertical;
// m_maxX and m_maxY are the highest coordiantes encountered
QSize m_sizeHint;
unsigned int m_testingX;
unsigned int m_testingY;
};
#endif
|