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

44 lines
878 B

#ifndef ViewGrid_h
#define ViewGrid_h
class TQBoxLayout;
#include "tqsize.h"
class TQWidget;
class Mixer;
#include "viewbase.h"
class ViewGrid : public ViewBase
{
Q_OBJECT
public:
ViewGrid(TQWidget* parent, const char* name, const TQString & caption, Mixer* mixer, ViewBase::ViewFlags vflags);
~ViewGrid();
virtual int count();
virtual int advice();
virtual void setMixSet(MixSet *mixset);
virtual TQWidget* add(MixDevice *mdw);
virtual void configurationUpdate();
virtual void constructionFinished();
TQSize 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
TQSize m_sizeHint;
unsigned int m_testingX;
unsigned int m_testingY;
};
#endif