pineapple-pictures/toolbutton.h

21 lines
360 B
C
Raw Normal View History

2019-10-06 14:12:52 +08:00
#ifndef TOOLBUTTON_H
#define TOOLBUTTON_H
#include <QPushButton>
2019-10-06 14:58:01 +08:00
class OpacityHelper;
2019-10-06 14:12:52 +08:00
class ToolButton : public QPushButton
{
Q_OBJECT
public:
ToolButton(QWidget * parent = nullptr);
public slots:
2019-10-06 14:58:01 +08:00
void setOpacity(qreal opacity, bool animated = true);
2019-10-06 14:12:52 +08:00
private:
2019-10-06 14:58:01 +08:00
OpacityHelper * m_opacityHelper;
2019-10-06 14:12:52 +08:00
};
#endif // TOOLBUTTON_H