pineapple-pictures/bottombuttongroup.h

17 lines
327 B
C
Raw Normal View History

2019-09-29 01:40:19 +08:00
#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