pineapple-pictures/app/bottombuttongroup.cpp

53 lines
1.6 KiB
C++
Raw Normal View History

2019-09-29 01:40:19 +08:00
#include "bottombuttongroup.h"
2019-10-06 14:58:01 +08:00
#include "opacityhelper.h"
2019-09-30 23:02:44 +08:00
#include <functional>
#include <QToolButton>
2019-09-29 01:40:19 +08:00
#include <QVBoxLayout>
#include <QDebug>
BottomButtonGroup::BottomButtonGroup(const std::vector<QAction *> &actionList, QWidget *parent)
2019-09-29 01:40:19 +08:00
: QGroupBox (parent)
2019-10-06 14:58:01 +08:00
, m_opacityHelper(new OpacityHelper(this))
2019-09-29 01:40:19 +08:00
{
QHBoxLayout * mainLayout = new QHBoxLayout(this);
mainLayout->setSizeConstraint(QLayout::SetFixedSize);
this->setLayout(mainLayout);
this->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
this->setStyleSheet("BottomButtonGroup {"
"border: 1px solid gray;"
"border-top-left-radius: 10px;"
"border-top-right-radius: 10px;"
2019-09-29 22:18:38 +08:00
"border-style: none;"
"background-color:rgba(0,0,0,120)"
2019-09-29 01:40:19 +08:00
"}"
"QToolButton {"
"background:transparent;"
2019-09-29 01:40:19 +08:00
"}");
auto newActionBtn = [this](QAction * action) -> QToolButton * {
QToolButton * btn = new QToolButton(this);
btn->setDefaultAction(action);
2019-09-29 23:53:29 +08:00
btn->setIconSize(QSize(40, 40));
2019-09-29 01:40:19 +08:00
btn->setFixedSize(40, 40);
return btn;
};
for (QAction * action : actionList) {
addButton(newActionBtn(action));
}
2019-09-29 01:40:19 +08:00
}
2019-10-06 14:58:01 +08:00
void BottomButtonGroup::setOpacity(qreal opacity, bool animated)
{
m_opacityHelper->setOpacity(opacity, animated);
}
2019-09-29 01:40:19 +08:00
void BottomButtonGroup::addButton(QAbstractButton *button)
{
layout()->addWidget(button);
updateGeometry();
}