24 lines
522 B
C++
24 lines
522 B
C++
#ifndef BOTTOMBUTTONGROUP_H
|
|
#define BOTTOMBUTTONGROUP_H
|
|
|
|
#include <vector>
|
|
|
|
#include <QAbstractButton>
|
|
#include <QGroupBox>
|
|
|
|
class OpacityHelper;
|
|
class BottomButtonGroup : public QGroupBox
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit BottomButtonGroup(const std::vector<QAction *> & actionList, QWidget *parent = nullptr);
|
|
|
|
void setOpacity(qreal opacity, bool animated = true);
|
|
void addButton(QAbstractButton *button);
|
|
|
|
private:
|
|
OpacityHelper * m_opacityHelper;
|
|
};
|
|
|
|
#endif // BOTTOMBUTTONGROUP_H
|