18 lines
330 B
C++
18 lines
330 B
C++
#ifndef QMACROBUTTON_H
|
|
#define QMACROBUTTON_H
|
|
|
|
#include "qratiobutton.h"
|
|
|
|
|
|
class QMacroButton : public QRatioButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QMacroButton(const quint8 &row, const quint8 &column, QWidget *parent = nullptr);
|
|
|
|
virtual Type type() const override { return QRatioButton::Type::PUSH_BUTTON; }
|
|
};
|
|
|
|
#endif // QMACROBUTTON_H
|