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

相关文章

MySQL更新某个字段拼接固定字符串的实现

《MySQL更新某个字段拼接固定字符串的实现》在MySQL中,我们经常需要对数据库中的某个字段进行更新操作,本文就来介绍一下MySQL更新某个字段拼接固定字符串的实现,感兴趣的可以了解一下... 目录1. 查看字段当前值2. 更新字段拼接固定字符串3. 验证更新结果mysql更新某个字段拼接固定字符串 -

java实现延迟/超时/定时问题

《java实现延迟/超时/定时问题》:本文主要介绍java实现延迟/超时/定时问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Java实现延迟/超时/定时java 每间隔5秒执行一次,一共执行5次然后结束scheduleAtFixedRate 和 schedu

Java Optional避免空指针异常的实现

《JavaOptional避免空指针异常的实现》空指针异常一直是困扰开发者的常见问题之一,本文主要介绍了JavaOptional避免空指针异常的实现,帮助开发者编写更健壮、可读性更高的代码,减少因... 目录一、Optional 概述二、Optional 的创建三、Optional 的常用方法四、Optio

在Android平台上实现消息推送功能

《在Android平台上实现消息推送功能》随着移动互联网应用的飞速发展,消息推送已成为移动应用中不可或缺的功能,在Android平台上,实现消息推送涉及到服务端的消息发送、客户端的消息接收、通知渠道(... 目录一、项目概述二、相关知识介绍2.1 消息推送的基本原理2.2 Firebase Cloud Me

Spring Boot项目中结合MyBatis实现MySQL的自动主从切换功能

《SpringBoot项目中结合MyBatis实现MySQL的自动主从切换功能》:本文主要介绍SpringBoot项目中结合MyBatis实现MySQL的自动主从切换功能,本文分步骤给大家介绍的... 目录原理解析1. mysql主从复制(Master-Slave Replication)2. 读写分离3.

Redis实现延迟任务的三种方法详解

《Redis实现延迟任务的三种方法详解》延迟任务(DelayedTask)是指在未来的某个时间点,执行相应的任务,本文为大家整理了三种常见的实现方法,感兴趣的小伙伴可以参考一下... 目录1.前言2.Redis如何实现延迟任务3.代码实现3.1. 过期键通知事件实现3.2. 使用ZSet实现延迟任务3.3

基于Python和MoviePy实现照片管理和视频合成工具

《基于Python和MoviePy实现照片管理和视频合成工具》在这篇博客中,我们将详细剖析一个基于Python的图形界面应用程序,该程序使用wxPython构建用户界面,并结合MoviePy、Pill... 目录引言项目概述代码结构分析1. 导入和依赖2. 主类:PhotoManager初始化方法:__in

springboot filter实现请求响应全链路拦截

《springbootfilter实现请求响应全链路拦截》这篇文章主要为大家详细介绍了SpringBoot如何结合Filter同时拦截请求和响应,从而实现​​日志采集自动化,感兴趣的小伙伴可以跟随小... 目录一、为什么你需要这个过滤器?​​​二、核心实现:一个Filter搞定双向数据流​​​​三、完整代码

SpringBoot利用@Validated注解优雅实现参数校验

《SpringBoot利用@Validated注解优雅实现参数校验》在开发Web应用时,用户输入的合法性校验是保障系统稳定性的基础,​SpringBoot的@Validated注解提供了一种更优雅的解... 目录​一、为什么需要参数校验二、Validated 的核心用法​1. 基础校验2. php分组校验3

Python实现AVIF图片与其他图片格式间的批量转换

《Python实现AVIF图片与其他图片格式间的批量转换》这篇文章主要为大家详细介绍了如何使用Pillow库实现AVIF与其他格式的相互转换,即将AVIF转换为常见的格式,比如JPG或PNG,需要的小... 目录环境配置1.将单个 AVIF 图片转换为 JPG 和 PNG2.批量转换目录下所有 AVIF 图