qt_demoe/screenwidget/screenwidget.h

85 lines
2.1 KiB
C
Raw Normal View History

2019-12-25 00:33:18 +00:00
#ifndef SCREENWIDGET_H
#define SCREENWIDGET_H
/**
* :feiyangqingyun(QQ:517216493) 2016-11-11
2020-12-24 10:00:09 +00:00
* 1.
* 2.
* 3.
2019-12-25 00:33:18 +00:00
*/
#include <QWidget>
#include <QMenu>
#include <QPoint>
#include <QSize>
class Screen
{
public:
enum STATUS {SELECT, MOV, SET_W_H};
Screen() {}
Screen(QSize size);
void setStart(QPoint pos);
void setEnd(QPoint pos);
QPoint getStart();
QPoint getEnd();
QPoint getLeftUp();
QPoint getRightDown();
STATUS getStatus();
void setStatus(STATUS status);
int width();
int height();
bool isInArea(QPoint pos); // 检测pos是否在截图区域内
void move(QPoint p); // 按 p 移动截图区域
private:
QPoint leftUpPos, rightDownPos; //记录 截图区域 左上角、右下角
QPoint startPos, endPos; //记录 鼠标开始位置、结束位置
int maxWidth, maxHeight; //记录屏幕大小
STATUS status; //三个状态: 选择区域、移动区域、设置width height
void cmpPoint(QPoint &s, QPoint &e);//比较两位置,判断左上角、右下角
};
#ifdef quc
2020-12-24 10:00:09 +00:00
class Q_DECL_EXPORT ScreenWidget : public QWidget
2019-12-25 00:33:18 +00:00
#else
class ScreenWidget : public QWidget
#endif
{
Q_OBJECT
public:
static ScreenWidget *Instance();
explicit ScreenWidget(QWidget *parent = 0);
private:
static QScopedPointer<ScreenWidget> self;
QMenu *menu; //右键菜单对象
Screen *screen; //截屏对象
QPixmap *fullScreen; //保存全屏图像
QPixmap *bgScreen; //模糊背景图
QPoint movPos; //坐标
protected:
void contextMenuEvent(QContextMenuEvent *);
void mousePressEvent(QMouseEvent *);
void mouseMoveEvent(QMouseEvent *);
void mouseReleaseEvent(QMouseEvent *);
void paintEvent(QPaintEvent *);
void showEvent(QShowEvent *);
2021-03-08 01:04:13 +00:00
private slots:
void saveScreen();
2019-12-25 00:33:18 +00:00
void saveFullScreen();
void saveScreenOther();
void saveFullOther();
};
#endif // SCREENWIDGET_H