1 Star 0 Fork 0

yuwei/expandImage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
riggerscene.h 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
yuwei 提交于 2024-07-22 00:52 . 整理代码
#ifndef RIGGERSCENE_H
#define RIGGERSCENE_H
#include <QObject>
#include <QGraphicsScene>
#include <QGraphicsSceneContextMenuEvent>
#include <QDrag>
#include <QGraphicsSceneDragDropEvent>
#include <QMimeData>
#include "anchoritem.h"
#include "sysdef.h"
#define ADSORPTION_VALUE 10
class RiggerScene : public QGraphicsScene
{
Q_OBJECT
public:
RiggerScene(const QSizeF& size, int& type, QObject* parent = nullptr);
~RiggerScene();
void resizeScene(QRectF rect);
void judgmentAdsorption(QPointF childItemPos);
protected:
void mousePressEvent(QGraphicsSceneMouseEvent* event) override;
void mouseMoveEvent(QGraphicsSceneMouseEvent* event) override;
void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override;
void keyPressEvent(QKeyEvent* event) override;
void contextMenuEvent(QGraphicsSceneContextMenuEvent* event) override;
void wheelEvent(QGraphicsSceneWheelEvent* event) override;
void dragEnterEvent(QGraphicsSceneDragDropEvent* event) override;
void dragMoveEvent(QGraphicsSceneDragDropEvent* event) override;
void dropEvent(QGraphicsSceneDragDropEvent* event) override;
private:
int& ItemType;
AnchorItem* itemParent = nullptr;
AnchorItem* childItem = nullptr;
};
#endif // RIGGERSCENE_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuwei_2_838529949/expand-image.git
[email protected]:yuwei_2_838529949/expand-image.git
yuwei_2_838529949
expand-image
expandImage
master

搜索帮助