1 Star 0 Fork 0

_lu/HTYScreenPen

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainwindow.h 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QMouseEvent>
#include <QPen>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
protected:
void paintEvent(QPaintEvent *);
private:
Ui::MainWindow *ui;
enum /*定义图形的类型 */
{
NONE_DRAW,
BRUSH_DRAW,
LINE_DRAW,
ARROW_DRAW,
RECT_DRAW,
ELLIPSE_DRAW,
TEXT_DRAW,
FILL_DRAW,
ERASE_DRAW,
MOVE_DRAW,
SELECT_DRAW,
CLIP_DRAW,
DEL_DRAW,
COLORPICKER_DRAW,
STAMP_DRAW
} draw_type;
QPoint startPnt; //起点
QPoint endPnt; //终点
QImage image, image_temp;
QPixmap pixmap_stamp;
QPen pen;
QBrush brush;
QColor color;
QString path;
void mousePressEvent(QMouseEvent *e);
void mouseMoveEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *e);
void draw(QImage &img);
void drawCursor();
private slots:
void setBrush();
void setLine();
void setEllipse();
void setRect();
void setStamp();
void changeStamp();
void changeColor();
void clear();
void addPenWidth();
void reducePenWidth();
};
#endif // MAINWINDOW_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/looklu/HTYScreenPen.git
git@gitee.com:looklu/HTYScreenPen.git
looklu
HTYScreenPen
HTYScreenPen
master

搜索帮助