#include "toolbutton.h" #include "opacityhelper.h" #include #include #include ToolButton::ToolButton(bool hoverColor, QWidget *parent) : QPushButton(parent) , m_opacityHelper(new OpacityHelper(this)) { setFlat(true); QString qss = "QPushButton {" "background: transparent;" "}"; if (hoverColor) { qss += "QPushButton:hover {" "background: red;" "}"; } setStyleSheet(qss); } void ToolButton::setOpacity(qreal opacity, bool animated) { m_opacityHelper->setOpacity(opacity, animated); }