36 lines
733 B
C++
36 lines
733 B
C++
#ifndef INFOBUTTON_H
|
|
#define INFOBUTTON_H
|
|
#include <QPushButton>
|
|
#include <QIcon>
|
|
#include <QGSettings>
|
|
|
|
class InfoButton : public QPushButton
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit InfoButton(QWidget * parent = nullptr);
|
|
~InfoButton() = default;
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event);
|
|
void enterEvent(QEvent *event);
|
|
void leaveEvent(QEvent *event);
|
|
void mousePressEvent(QMouseEvent *event);
|
|
void mouseReleaseEvent(QMouseEvent *event);
|
|
|
|
private:
|
|
void initUI();
|
|
|
|
private:
|
|
QColor m_backgroundColor;
|
|
QColor m_foregroundColor;
|
|
|
|
//监听主题的Gsettings
|
|
QGSettings * m_styleGsettings = nullptr;
|
|
|
|
private slots:
|
|
void onGSettingChaned(const QString &key);
|
|
};
|
|
|
|
#endif // INFOBUTTON_H
|