25 lines
549 B
C++
25 lines
549 B
C++
#ifndef BOTTOMBUTTONGROUP_H
|
|
#define BOTTOMBUTTONGROUP_H
|
|
|
|
#include <QAbstractButton>
|
|
#include <QGroupBox>
|
|
|
|
class BottomButtonGroup : public QGroupBox
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit BottomButtonGroup(QWidget *parent = nullptr);
|
|
|
|
void addButton(QAbstractButton *button);
|
|
|
|
signals:
|
|
void resetToOriginalBtnClicked();
|
|
void toggleWindowMaximum();
|
|
void zoomInBtnClicked();
|
|
void zoomOutBtnClicked();
|
|
void toggleCheckerboardBtnClicked();
|
|
void rotateRightBtnClicked();
|
|
};
|
|
|
|
#endif // BOTTOMBUTTONGROUP_H
|