40 lines
794 B
C++
40 lines
794 B
C++
|
|
#ifndef BIGCOLORBUTTON_H
|
||
|
|
#define BIGCOLORBUTTON_H
|
||
|
|
|
||
|
|
#include <QPushButton>
|
||
|
|
#include <QPainter>
|
||
|
|
#include <QPaintEvent>
|
||
|
|
|
||
|
|
//#include "utils/baseutils.h"
|
||
|
|
|
||
|
|
class BigColorButton : public QPushButton
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
BigColorButton(const QString &group, QWidget* parent = 0);
|
||
|
|
~BigColorButton();
|
||
|
|
|
||
|
|
void setColor(QColor color);
|
||
|
|
void setColorIndex(int index);
|
||
|
|
void updateConfigColor(const QString &group, const QString &key);
|
||
|
|
void resetChecked();
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void btnCheckStateChanged(bool show);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void paintEvent(QPaintEvent *);
|
||
|
|
void enterEvent(QEvent *);
|
||
|
|
void leaveEvent(QEvent *);
|
||
|
|
void mousePressEvent(QMouseEvent* );
|
||
|
|
|
||
|
|
private:
|
||
|
|
QColor m_color;
|
||
|
|
bool m_isHover;
|
||
|
|
bool m_isChecked;
|
||
|
|
|
||
|
|
QString m_group;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // BIGCOLORBUTTON_H
|