1 Star 2 Fork 1

魏杰/instru

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ClickPixLabel.h 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
魏杰 提交于 2023-09-28 11:21 . 202309281121
#ifndef CLICKPIXLABEL_H
#define CLICKPIXLABEL_H
#include <QLabel>
#include <QWidget>
#include <QPaintEvent>
#include <QPixmap>
#include <QDebug>
#include <QMouseEvent>
#include <QPainter>
#include <QPen>
extern float g_factor;
class ClickPixLabel:public QLabel
{
Q_OBJECT
public:
explicit ClickPixLabel(QWidget *parent=nullptr);
void paintEvent(QPaintEvent *);
void setX(float x);
void setY(float y);
void setW(float w);
void setH(float h);
void setP(QString path);
private:
float x;
float y;
float w;
float h;
QString p;
bool is_press=false;
float factor=g_factor;
protected:
virtual void mousePressEvent(QMouseEvent *);
virtual void mouseReleaseEvent(QMouseEvent *);
signals:
void pressed();
void released();
};
#endif // CLICKPIXLABEL_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wei-jie/instru.git
git@gitee.com:wei-jie/instru.git
wei-jie
instru
instru
master

搜索帮助