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));}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/3938.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Restful API 具体设计规范(概述)

协议 https 域名 https://www.baidu.com/api 版本 https://www.baidu.com/v1 路径 https://www.baidu.com/v1/blogs 方法 数据过滤 状态码返回结果 返回的数据格式 尽量使用 JSON&#xff0c;避免使用 XML。 总结&#xff1a; 看 url 就知道要什么看 http method 就知道干…

Linux进阶篇:CentOS7搭建NFS文件共享服务

CentOS7搭建NFS文件共享服务 一、NFS介绍 NFS(Network File System)意为网络文件系统&#xff0c;它最大的功能就是可以通过网络&#xff0c;让不同的机器不同的操作系统可以共享彼此的文件。简单的讲就是可以挂载远程主机的共享目录到本地&#xff0c;就像操作本地磁盘一样&…

Docker——数据管理和网络通信

目录 一、Docker的数据管理 1.数据卷 2.数据卷容器 3.容器互联 二、Docker镜像的创建 1.基于现有镜像创建 2.基于本地模板创建 3.基于Dockerfile 创建 3.1联合文件系统&#xff08;UnionFS&#xff09; 3.2镜像加载原理 3.3为什么Docker里的Centos大小才200M 4.Dcok…

9【PS作图】像素画Tips

放大缩小 “窗口”-排列-为…画布新建窗口&#xff0c;就可以新建一个窗口&#xff0c;实时看作图效果 如果要保持放大或缩小的像素画仍然保持硬边缘&#xff0c;需要设置两个东西 将 编辑 > 首选项 > 常规 中的 插值方式 改为 “邻近&#xff08;靠近硬边缘&#xff09…

HTML网页自动播放背景音乐和全屏背景图代码

HTML网页自动播放背景音乐的代码 背景音乐代码及分析代码的应用背景图代码及分析下期更新预报 背景音乐代码及分析 能使网站上自动循环的背景音乐代码如下&#xff1a; <audio src"music.mid" autostart"true" loop"true" hidden"true…

【小梦C嘎嘎——启航篇】C++四大类型转换

&#x1f60e; 前言&#x1f64c;C四大类型转换什么是类型转换C语言中的类型转换为什么C要嫌弃C语言的类型转换&#xff1f;自行搞一套呢&#xff1f;C强制类型转换1、static_cast2、reinterpret_cast3、const_cast4、dynamic_cast为什么要支持向下转呢&#xff1f; RTTI 总结撒…

RabbitMQ工作模式(4) - 路由模式

概念 路由模式&#xff08;Routing&#xff09;是 RabbitMQ 中的一种消息传递模式&#xff0c;也称为直连模式。它允许生产者将消息发送到一个交换机&#xff0c;并指定一个或多个路由键&#xff08;routing key&#xff09;&#xff0c;交换机根据路由键将消息路由到与之匹配的…

实验7:路由冗余协议HSRP配置管理(课内实验以及解答)

实验目的及要求&#xff1a; 理解首跳冗余协议&#xff08;FHRP&#xff09;的工作原理&#xff0c;掌握热备份路由器协议 (HSRP)&#xff08;思科私有协议&#xff09;原理和配置。能够实现网络终端设备虚拟网关的配置和网络故障的灵活切换&#xff0c;完成相应网络的联通性测…

多模态大语言模型综述

去年以来&#xff0c;我们见证了以 GPT-4V 为代表的多模态大语言模型(Multimodal Large Language Model&#xff0c;MLLM)的飞速发展。为此我们对综述进行了重大升级&#xff0c;帮助大家全面了解该领域的发展现状以及潜在的发展方向。 MLLM 发展脉络图 MLLM 脱胎于近年来广受…

【Redis 开发】缓存雪崩和缓存击穿

缓存问题 缓存雪崩解决方案 缓存击穿互斥锁逻辑时间基于互斥锁解决缓存击穿问题基于逻辑过期方式解决缓存击穿问题 缓存雪崩 缓存雪崩是指在同一时间段&#xff0c;大量的缓存key同时失效或者Redis服务器宕机&#xff0c;导致大量请求到达数据库&#xff0c;带来巨大压力 解决…

Qt | QAbstractButton 抽象类

QAbstractButton 类中的属性 ①、autoExclusive:bool 访问函数:bool autoExclusive() const; void setAutoExclusive(bool); 描述了按钮的自动排他性,若启用了该属性,则属于同一父部件的可选中按钮的行为, 就好像是在同一排他性组中的按钮一样。除了单选按钮,默认为关…

【网络编程】TCP流套接字编程 | Socket类 | ServerSocket类 | 文件资源泄露 | TCP回显服务器 | 网络编程

文章目录 TCP流套接字编程1.ServerSocket类2.Socket类3.文件资源泄露4.**TCP回显服务器** TCP流套接字编程 ​ ServerSocket类和Socket类这两个类都是用来表示socket文件&#xff08;抽象了网卡这样的硬件设备&#xff09;。 TCP是面向字节流的&#xff0c;传输的基本单位是b…

Facebook的未知力量:数字世界的新引擎

在数字化的时代&#xff0c;社交媒体已经成为了我们日常生活中不可或缺的一部分&#xff0c;而Facebook作为其中的巨头&#xff0c;其影响力远远超出了我们的想象。但是&#xff0c;Facebook背后隐藏的力量和影响远不止于此&#xff0c;它正逐渐成为数字世界的新引擎&#xff0…

python 使用flask_httpauth和pyjwt实现登录权限控制

最近需要用到&#xff0c;学习了一下记录 首先安装依赖 pip install Flask-HTTPAuth pyjwt passlib Welcome to Flask-HTTPAuth’s documentation! — Flask-HTTPAuth documentation Welcome to PyJWT — PyJWT 2.8.0 documentation Passlib 1.7.4 documentation — Passl…

Unreal Engine子类化系统UButton

UE系统Button点击事件无法传递参数&#xff0c;通过子类化系统Button添加自定义参数扩展实现Button点击事件参数传递点击C类文件夹&#xff0c;在右边的区域点击鼠标右键&#xff0c;在弹出的菜单中选择“新建C类”在弹出的菜单中选中“显示所有类”&#xff0c;选择Button作为…

Docker从无到有

主要为windows下docker的安装与使用~ 初始Docker Docker理解 对于docker的加简介&#xff0c;我们可以官网获取它的概念&#xff0c;接下来就从什么是docker、为什么要使用docker以及它的作用来进行一个快速入门 前提&#xff1a;项目在发布时&#xff0c;不仅需要其jar包同…

FSMC读取FPGA的FIFO

一、硬件说明 FSMC配置 单片机的代码如下&#xff1a; #define VALUE_ADDRESS_AD1 (__IO uint16_t *)0x60400000while (1){if(!HAL_GPIO_ReadPin(GPIOF, GPIO_PIN_8)) //数据非空{data *(__IO uint16_t *)VALUE_ADDRESS_AD1;data2 *(__IO uint16_t *)VALUE_ADDRESS_AD1…

英伟达助力日本量子技术创新战略!合作打造量子超级计算机 ABCI-Q

内容来源&#xff1a;量子前哨&#xff08;ID&#xff1a;Qforepost&#xff09; 文丨浪味仙 排版丨沛贤 深度好文&#xff1a;1000字丨5分钟阅读 摘要&#xff1a;日本将在英伟达的AI和HPC基础设施的帮助下&#xff0c;通过大规模开发&#xff0c;在量子计算和人工智能领域取…

xfce4 panel 不能显示QQ,钉钉的状态图标

有一段时间不能显示了&#xff0c;之前刚装完系统的时候很长时间内都是好的&#xff0c;所以刚开始肯定是支持显示这些状态图标的。就是因为不能显示的原因&#xff0c;所以还装了lxQt桌面&#xff0c;这个桌面确实不错。不过还是有时会怀念xfce4&#xff0c;想看看能不能解决这…

go语言实现心跳机制样例

目录 1、服务端代码&#xff1a; 2、客户端代码&#xff1a; 3、最终实现效果&#xff1a; 1、服务端代码&#xff1a; package mainimport ("fmt""net" )func handleClient(conn net.Conn) {defer conn.Close()fmt.Println("Client connected:&qu…