qt实现方框调整

2024-04-27 11:12
文章标签 实现 qt 方框 调整

本文主要是介绍qt实现方框调整,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

效果

在四周调整
在这里插入图片描述

代码

#ifndef MAINWINDOW_H
#define MAINWINDOW_H#include <QWidget>class MainWindow : public QWidget
{Q_OBJECT
public:explicit MainWindow(QWidget *parent = 0);~MainWindow();void paintEvent(QPaintEvent *event);void updateRect();void resizeEvent(QResizeEvent *event);void mousePressEvent(QMouseEvent *event);void mouseReleaseEvent(QMouseEvent *event);void mouseMoveEvent(QMouseEvent *event);
private:bool isValid(QRect &rect);bool isOutOfRange(QRect &rect);void setSizeCursor(QMouseEvent *event);
private:bool m_bPress{false};bool m_bSetTop{false};bool m_bSetLeft{false};bool m_bSetRight{false};bool m_bSetBottom{false};bool m_bSetTopRight{false};bool m_bSetBottomLeft{false};bool m_bSetTopLeft{false};bool m_bSetBottomRight{false};bool m_bMinSize{true};int  m_minWidth{0};int  m_minHeight{0};QRect m_rect;QRect m_top;QRect m_bottom;QRect m_left;QRect m_right;QRect m_topLeft;QRect m_topRight;QRect m_bottomLeft;QRect m_bottomRight;QPoint m_pressPoint;
};#endif // MAINWINDOW_H
#include "mainwindow.h"
#include <QPainter>
#include <QMouseEvent>
#include <QDebug>MainWindow::MainWindow(QWidget *parent) :QWidget(parent)
{this->setMouseTracking(true);m_rect = QRect(90,80,100,100);updateRect();
}MainWindow::~MainWindow()
{}void MainWindow::paintEvent(QPaintEvent *)
{QPainter painter{this};QPen pen;pen.setStyle(Qt::DashLine);pen.setWidthF(0.5);//pen.setColor(Qt::black);pen.setColor(Qt::red);painter.setPen(pen);painter.drawRect(m_rect);pen.setStyle(Qt::SolidLine);pen.setWidthF(0.8);painter.setPen(pen);painter.setBrush(Qt::white);painter.setRenderHints(QPainter::SmoothPixmapTransform|QPainter::Antialiasing|QPainter::HighQualityAntialiasing);painter.drawEllipse(m_topLeft);painter.drawEllipse(m_topRight);painter.drawEllipse(m_bottomLeft);painter.drawEllipse(m_bottomRight);painter.drawEllipse(m_top);painter.drawEllipse(m_bottom);painter.drawEllipse(m_left);painter.drawEllipse(m_right);
}void MainWindow::updateRect()
{int width = 3;int offset = 4;m_topLeft= QRect(m_rect.topLeft(),QSize(width,width));m_topLeft = m_topLeft.adjusted(-offset,-offset,offset,offset);m_topRight = QRect(m_rect.topRight(),QSize(width,width));m_topRight = m_topRight.adjusted(-offset,-offset,offset,offset);m_bottomLeft = QRect(m_rect.bottomLeft(),QSize(width,width));m_bottomLeft = m_bottomLeft.adjusted(-offset,-offset,offset,offset);m_bottomRight= QRect(m_rect.bottomRight(),QSize(width,width));m_bottomRight = m_bottomRight.adjusted(-offset,-offset,offset,offset);m_top = QRect((m_topLeft.x()+m_topRight.x())/2,m_topLeft.y(),m_topLeft.width(),m_topLeft.height() );m_bottom = QRect((m_bottomLeft.x()+m_bottomRight.x())/2,m_bottomRight.y(),m_bottomRight.width(),m_bottomRight.height() );m_left = QRect(m_topLeft.x(),(m_topLeft.y()+m_bottomLeft.y())/2,m_bottomLeft.width(),m_bottomLeft.height() );m_right = QRect(m_topRight.x(),(m_topRight.y()+m_bottomRight.y())/2,m_topRight.width(),m_topRight.height() );m_minWidth = m_topLeft.width()+m_top.width()+m_topRight.width();m_minHeight = m_minWidth;
}void MainWindow::resizeEvent(QResizeEvent *)
{m_rect.moveCenter(this->rect().center());updateRect();
}void MainWindow::mousePressEvent(QMouseEvent *event)
{if(!event){return;}if(m_topLeft.contains(event->pos())){m_bSetTopLeft=true;}else if(m_topRight.contains(event->pos())){m_bSetTopRight=true;}else if(m_bottomLeft.contains(event->pos())){m_bSetBottomLeft=true;}else if(m_bottomRight.contains(event->pos())){m_bSetBottomRight=true;}else if(m_top.contains(event->pos())){m_bSetTop=true;}else if(m_bottom.contains(event->pos())){m_bSetBottom=true;}else if(m_left.contains(event->pos())){m_bSetLeft=true;}else if(m_right.contains(event->pos())){m_bSetRight=true;}else if(m_rect.contains(event->pos())){m_bPress=true;QPoint pressPoint = event->pos();QPoint center = m_rect.center();m_pressPoint = QPoint(pressPoint.x()-center.x(),pressPoint.y()-center.y());}
}void MainWindow::mouseReleaseEvent(QMouseEvent *)
{m_bPress=false;m_bSetTop  = false;m_bSetLeft = false;m_bSetRight=false;m_bSetBottom=false;m_bSetTopRight=false;m_bSetBottomLeft=false;m_bSetTopLeft=false;m_bSetBottomRight=false;qDebug()<< __LINE__ << __FUNCTION__ << __FILE__<<m_rect;
}void MainWindow::mouseMoveEvent(QMouseEvent *event)
{if(!event){return;}if(m_bSetTopRight){QRect rect = m_rect;rect.setTopRight(event->pos());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetBottomLeft=true;m_bSetTopRight=false;m_rect.setBottomLeft(event->pos());}else{m_rect=rect;}updateRect();update();}else if(m_bSetBottomLeft){QRect rect = m_rect;rect.setBottomLeft(event->pos());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetBottomLeft=false;m_bSetTopRight=true;m_rect.setTopRight(event->pos());}else{m_rect=rect;}updateRect();update();}else if(m_bSetTopLeft){QRect rect = m_rect;rect.setTopLeft(event->pos());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetTopLeft=false;m_bSetBottomRight=true;m_rect.setBottomRight(event->pos());}else{m_rect=rect;}updateRect();update();}else if(m_bSetBottomRight){QRect rect = m_rect;rect.setBottomRight(event->pos());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetTopLeft=true;m_bSetBottomRight=false;m_rect.setTopLeft(event->pos());}else{m_rect=rect;}updateRect();update();}else if(m_bSetTop){QRect rect = m_rect;rect.setTop(event->pos().y());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetBottom=true;m_bSetTop=false;m_rect.setBottom(event->pos().y());}else{m_rect=rect;}updateRect();update();}else if(m_bSetBottom){QRect rect = m_rect;rect.setBottom(event->pos().y());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetBottom=false;m_bSetTop=true;m_rect.setTop(event->pos().y());}else{m_rect=rect;}updateRect();update();}else if(m_bSetLeft){QRect rect = m_rect;rect.setLeft(event->pos().x());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetRight=true;m_bSetLeft=false;m_rect.setRight(event->pos().x());}else{m_rect=rect;}updateRect();update();}else if(m_bSetRight){QRect rect = m_rect;rect.setRight(event->pos().x());if(!this->isValid(rect)){return;}if(rect.width()<0||rect.height()<0){m_bSetRight=false;m_bSetLeft=true;m_rect.setLeft(event->pos().x());}else{m_rect=rect;}updateRect();update();}else if(m_bPress){QPoint point = event->pos();point -= m_pressPoint;QRect rect = m_rect;rect.moveCenter(point);if(this->isOutOfRange(rect)){return;}m_rect=rect;updateRect();update();}else{this->setSizeCursor(event);}
}bool MainWindow::isValid(QRect& rect)
{if(m_bMinSize){if(0 == m_minHeight || 0 ==  m_minWidth){return true;}if(rect.width() < m_minWidth){return false;}if(rect.height() < m_minHeight){return false;}}if(this->isOutOfRange(rect)){return false;}return true;
}bool MainWindow::isOutOfRange(QRect &rect)
{if(rect.right() > this->rect().right()){return true;}if(rect.bottom() > this->rect().bottom()){return true;}if(rect.left() < 0){return true;}if(rect.top() < 0){return true;}return false;
}void MainWindow::setSizeCursor(QMouseEvent *event)
{if(m_topLeft.contains(event->pos())){this->setCursor(QCursor(Qt::SizeFDiagCursor));}else if(m_topRight.contains(event->pos())){this->setCursor(QCursor(Qt::SizeBDiagCursor));}else if(m_bottomLeft.contains(event->pos())){this->setCursor(QCursor(Qt::SizeBDiagCursor));}else if(m_bottomRight.contains(event->pos())){this->setCursor(QCursor(Qt::SizeFDiagCursor));}else if(m_top.contains(event->pos())){this->setCursor(QCursor(Qt::SizeVerCursor));}else if(m_bottom.contains(event->pos())){this->setCursor(QCursor(Qt::SizeVerCursor));}else if(m_left.contains(event->pos())){this->setCursor(QCursor(Qt::SizeHorCursor));}else if(m_right.contains(event->pos())){this->setCursor(QCursor(Qt::SizeHorCursor));}else if(m_rect.contains(event->pos())){this->setCursor(QCursor(Qt::SizeAllCursor));}else{this->setCursor(QCursor(Qt::ArrowCursor));}
}

这篇关于qt实现方框调整的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/940347

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P

工厂ERP管理系统实现源码(JAVA)

工厂进销存管理系统是一个集采购管理、仓库管理、生产管理和销售管理于一体的综合解决方案。该系统旨在帮助企业优化流程、提高效率、降低成本,并实时掌握各环节的运营状况。 在采购管理方面,系统能够处理采购订单、供应商管理和采购入库等流程,确保采购过程的透明和高效。仓库管理方面,实现库存的精准管理,包括入库、出库、盘点等操作,确保库存数据的准确性和实时性。 生产管理模块则涵盖了生产计划制定、物料需求计划、

C++——stack、queue的实现及deque的介绍

目录 1.stack与queue的实现 1.1stack的实现  1.2 queue的实现 2.重温vector、list、stack、queue的介绍 2.1 STL标准库中stack和queue的底层结构  3.deque的简单介绍 3.1为什么选择deque作为stack和queue的底层默认容器  3.2 STL中对stack与queue的模拟实现 ①stack模拟实现