forked from openkylin/kylin-photo-viewer
fix(修改changelog,添加painterpath头文件): 修改changelog,添加painterpath头文件
This commit is contained in:
parent
93f613592b
commit
8fa1fa7ded
|
@ -1,8 +1,8 @@
|
|||
kylin-photo-viewer (1.3.0.3-ok9) yangtze; urgency=medium
|
||||
|
||||
* BUG号:无
|
||||
* BUG号:# issue I64UTA【看图】【需求15193】无法复制图片
|
||||
* 需求号:无
|
||||
* 其他改动说明:issue【看图】【需求15193】无法复制图片
|
||||
* 其他改动说明:无
|
||||
* 影响域:仅bug修复,无其他影响
|
||||
|
||||
-- zoujunnan <zoujunnan@kylinos.cn> Tue, 03 Jan 2023 18:43:28 +0800
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <QMap>
|
||||
#include <QVector4D>
|
||||
#include <QVariant>
|
||||
#include <QPainterPath>
|
||||
#include "sizedate.h"
|
||||
#include "painterthick.h"
|
||||
#include "global/variable.h"
|
||||
|
|
|
@ -5,16 +5,17 @@
|
|||
#include <QWidget>
|
||||
#include <QCheckBox>
|
||||
#include <QPainter>
|
||||
#include <QPainterPath>
|
||||
class PainterThick : public QCheckBox
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
PainterThick(int diameter, bool type, QColor color, QWidget *parent = nullptr);
|
||||
void paintEvent(QPaintEvent *event);
|
||||
int m_diameter;//按钮直径或长宽
|
||||
bool m_type = false;//判断是圆形粗细设置还是方形颜色设置--默认为圆形
|
||||
QColor m_color;//按钮颜色
|
||||
QString m_themeChange;//主题变化
|
||||
int m_diameter; //按钮直径或长宽
|
||||
bool m_type = false; //判断是圆形粗细设置还是方形颜色设置--默认为圆形
|
||||
QColor m_color; //按钮颜色
|
||||
QString m_themeChange; //主题变化
|
||||
};
|
||||
|
||||
#endif // PAINTERTHICK_H
|
||||
|
|
Loading…
Reference in New Issue