1
0

add bottom buttons

This commit is contained in:
Gary Wang
2019-09-29 01:40:19 +08:00
parent 2d92479892
commit 6960b2cb2f
5 changed files with 182 additions and 7 deletions

16
bottombuttongroup.h Normal file
View File

@@ -0,0 +1,16 @@
#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);
};
#endif // BOTTOMBUTTONGROUP_H