Qt Widget 自定义TitleBar带阴影窗口

自定义一个titlebar窗口,

不带任何资源、QSS,纯代码

1. 设置主窗口

透明背景,让central_widget透明方式显示,给后续main添加dropshadow效果,用于放置实际的业务控件。

setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
setAttribute(Qt::WA_TranslucentBackground);QWidget *central_widget = new QWidget(this);
setCentralWidget(central_widget);
central_widget->setStyleSheet("background:transparent");QVBoxLayout *central_layout = new QVBoxLayout(central_widget);
central_layout->setMargin(5);  // 这个 margin 一般为effect的 一半QWidget *main = new QWidget(this);
central_layout->addWidget(main);QGraphicsDropShadowEffect *effect = new QGraphicsDropShadowEffect(this);effect->setBlurRadius(10);effect->setColor(QColor("#373737"));effect->setOffset(0,0);main->setStyleSheet("background-color: black");
main->setGraphicsEffect(effect);QVBoxLayout *vbox_main = new QVBoxLayout(main);
vbox_main->setMargin(0);
vbox_main->setSpacing(0);...
// 添加后续业务代码。

2. 自定义右侧的按钮组

QWidget *titlebar = new QWidget(this);
titlebar->setStyleSheet("background-color: rgb(192,192,192)");
titlebar->setMaximumHeight(28);
vbox_main->addWidget(titlebar);QHBoxLayout *titlebar_layout = new QHBoxLayout(titlebar);
titlebar_layout->setMargin(2);
titlebar_layout->setSpacing(2);titlebar_layout->addStretch();QPushButton* min_button = new QPushButton(this);
min_button->setIcon(style()->standardIcon(QStyle::SP_TitleBarMinButton));
titlebar_layout->addWidget(min_button);
connect(min_button, &QPushButton::pressed, this, [=]()
{showMinimized();
});QPushButton* max_button = new QPushButton(this);
max_button->setIcon(style()->standardIcon(QStyle::SP_TitleBarMaxButton));
titlebar_layout->addWidget(max_button);
connect(max_button, &QPushButton::pressed, this, [=]()
{showFullScreen();
});QPushButton* normal_button = new QPushButton(this);
normal_button->setIcon(style()->standardIcon(QStyle::SP_TitleBarNormalButton));
titlebar_layout->addWidget(normal_button);
connect(normal_button, &QPushButton::pressed, this, [=]()
{showNormal();
});
normal_button->setVisible(false);QPushButton* close_button = new QPushButton(this);
close_button->setIcon(style()->standardIcon(QStyle::SP_TitleBarCloseButton));
titlebar_layout->addWidget(close_button);
connect(close_button, &QPushButton::pressed, this, [=]()
{close();
});

其中,最小化、全屏化、正常化、关闭按钮,可以取 Qt内置的标准icon,

style()->standardIcon(QStyle::SP_TitleBarMinButton);
SP_TitleBarMaxButton
SP_TitleBarNormalButton
SP_TitleBarCloseButton

可通过QPainter来变色

QIcon changeColor(const QIcon &icon, const QSize &size, const QColor &color)
{QPixmap pixmap = new icon.pixmap(size);QPainter painter(&pixmap);painter.setCompositionMode(QPainter::CompositionMode_SourceIn);painter.fillRect(pixmap.rect(), color);return QIcon(pixmap);
}

通过获取topLevelWidget, 然后调用下列方法

    void showMinimized();void showMaximized();void showFullScreen();void showNormal();bool close();

3. 标题栏的拖动

void QFramelessShadowWindow::mousePressEvent(QMouseEvent *event)
{if (event->button() == Qt::LeftButton && event->x() < _max_button->x() - 30 && event->y() < 30){_dragging = true;_mouse_position = event->globalPos();_window_position = geometry().topLeft();}
}void QFramelessShadowWindow::mouseMoveEvent(QMouseEvent *event)
{if (_dragging && !_is_fullscreen){QPoint offset = event->globalPos() - _mouse_position;move( _window_position + offset);}
}void QFramelessShadowWindow::mouseReleaseEvent(QMouseEvent *event)
{if (event->button() == Qt::LeftButton)_dragging = false;
}

4. 最后一个问题

当全屏后,会出现 放置实际的业务控件的区域显示不全,此时不需要显示dropshadow的阴影效果。可以响应主窗口的changeEvent事件,动态对layout的margin进行调整

void QFramelessShadowWindow::changeEvent(QEvent *event)
{bool from_normal = false;if (QEvent::WindowStateChange == event->type()){QWindowStateChangeEvent *state_event = static_cast<QWindowStateChangeEvent *>(event);if (Q_NULLPTR != state_event){if (state_event->oldState() == Qt::WindowNoState){from_normal = true;}else if (state_event->oldState() == Qt::WindowFullScreen){_max_button->setVisible(true);_normal_button->setVisible(false);centralWidget()->layout()->setMargin(5);_is_fullscreen = false;}}}QMainWindow::changeEvent(event);Qt::WindowStates state = windowState();if (from_normal && state == Qt::WindowFullScreen){_max_button->setVisible(false);_normal_button->setVisible(true);centralWidget()->layout()->setMargin(0);_is_fullscreen = true;}
}

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

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

相关文章

spring cloud之负载均衡

负载均衡客户端组件Ribbon 简介 - 官网&#xff1a;https://github.com/Netflix/ribbon - spring cloud ribbon是一个基于HTTP和TCP的客户端负载均衡工具&#xff0c;它基于Netflix Ribbon实现。通过spring cloud的封装&#xff0c;可以轻松面向服务的REST模板请求转换成客户…

03.webpack中hash,chunkhash和contenthash 的区别

hash、contenthash 和 chunkhash 是通过散列函数处理之后&#xff0c;生成的一串字符&#xff0c;可用于区分文件。 作用&#xff1a;善用文件的哈希值&#xff0c;解决浏览器缓存导致的资源未及时更新的问题 1.文件名不带哈希值 const path require(path) const HtmlWebpac…

SpringBoot 2.x 实战仿B站高性能后端项目

SpringBoot 2.x 实战仿B站高性能后端项目 下栽の地止&#xff1a;请看文章末尾 通常SpringBoot新建项目&#xff0c;默认是集成了Maven&#xff0c;然后所有内容都在一个主模块中。 如果项目架构稍微复杂一点&#xff0c;就需要用到Maven多模块。 本文简单概述一下&#xff0c…

通过maven命令手动上传jar私服Nexus

Nexus3在界面上传组件时报&#xff1a; Ext.JSON.decode(): Youre trying to decode an invalid JSON String: 查找了很多资料&#xff0c;都没有解决。有哪位大佬知道的评论告诉一下&#xff0c;万分感谢。 于是换成maven命令上传&#xff1a; mvn deploy:deploy-file -Dgr…

02.webpack中多文件打包

1.module,chunk,bundle的区别 moudle - 各个源码文件&#xff0c;webpack中一切皆是模块chunk - 多模块合并成的&#xff0c;如entry, import(), splitChunkbundle - 最终的输出文件 2.多文件打包配置 2.1 webpack.common.js const path require(path) const HtmlWebpackPl…

【C++】类和对象(5)--运算符重载

目录 一 概念 二 运算符重载的实现 三 关于时间的所有运算符重载 四 默认赋值运算符 五 const取地址操作符重载 一 概念 C为了增强代码的可读性引入了运算符重载&#xff0c;运算符重载是具有特殊函数名的函数&#xff0c;也具有其返回值类型&#xff0c;函数名字以及参数…

一次读懂究竟什么是设计思维优漫教育

设计的精髓在于创造。尽管计算机在设计&#xff0c;领域被广泛使用&#xff0c;丰富了设计的表达方法&#xff0c;为设计的创造性活动提供了强有力的支持&#xff0c;但归根结底&#xff0c;它只是一种将思维结果外化的手段和工具&#xff0c;不能取代人类的设计思维本身。设计…

UE5 C++报错:is not currently enabled for Live Coding

解决办法&#xff1a; 再次打开项目&#xff0c;以此法打开&#xff1a;

ToolJet:开源低代码框架,轻松构建复杂可响应界面 | 开源日报 No.78

ToolJet/ToolJet Stars: 25.0k License: AGPL-3.0 ToolJet 是一个开源的低代码框架&#xff0c;可以通过最小化工程投入来构建和部署内部工具。ToolJet 的拖放式前端构建器允许您在几分钟内创建复杂、响应式的前端界面。此外&#xff0c;您还可以集成各种数据源&#xff0c;包…

【Linux网络编程】高级I/O

目录 五种I/O模型 阻塞和非阻塞 非阻塞I/O I/O多路复用之Select、Poll、与Epoll 本文目的是深入浅出理解高级I/O相关的知识&#xff0c;结尾附上代码加深理解相关知识。 五种I/O模型 1.阻塞I/O&#xff1a;在内核将数据准备好之前&#xff0c;系统调用会一直等待。所有的套…

设计模式(5)-使用设计模式实现简易版springIoc

自定义简易版springIoc 1 spring使用回顾 自定义spring框架前&#xff0c;先回顾一下spring框架的使用&#xff0c;从而分析spring的核心&#xff0c;并对核心功能进行模拟。 数据访问层。定义UserDao接口及其子实现类 public interface UserDao {public void add(); }public…

mysql8创建用户并授予所有库的所有权限

要在 MySQL 8 中创建用户并授予所有库的所有权限&#xff0c;您可以按照以下步骤进行操作。请注意&#xff0c;为了执行这些操作&#xff0c;您需要具有足够权限的 MySQL 用户帐户。 登录到 MySQL 服务器: 使用具有足够权限的 MySQL 用户名和密码登录到 MySQL 服务器。您可以使…

CGO集成wireshark4.2.0动态链接库新错误col_set_cls_time: assertion “not reached“ failed

CGO集成wireshark4.2.0动态链接库新错误col_set_cls_time: assertion "not reached" failed 1.版本环境2.问题3.解决过程 1.版本环境 wireshark4.2.0golang1.21mac m1 和 ubuntu22 2.问题 在cgo调用wireshark进行协议解析时候遇到错误&#xff1a; ** (PID:73155…

django建站过程(5)添加导入导出功能

django建站过程&#xff08;5&#xff09;添加导入导出功能 后端添加导入导出功能django-import-export参考官方&#xff1a;安装命令settings.py添加到INSTALLED_APPS创建一个resource.py**配置Admin**定义导入导出的字段其他 后端添加导入导出功能 django-import-export 参…

基于静电放电算法优化概率神经网络PNN的分类预测 - 附代码

基于静电放电算法优化概率神经网络PNN的分类预测 - 附代码 文章目录 基于静电放电算法优化概率神经网络PNN的分类预测 - 附代码1.PNN网络概述2.变压器故障诊街系统相关背景2.1 模型建立 3.基于静电放电优化的PNN网络5.测试结果6.参考文献7.Matlab代码 摘要&#xff1a;针对PNN神…

Vue中给对象添加新属性时,界面不刷新怎么办?

文章目录 前言直接添加属性的问题原理分析解决方案总结后言 前言 hello world欢迎来到前端的新世界 &#x1f61c;当前文章系列专栏&#xff1a;vue.js &#x1f431;‍&#x1f453;博主在前端领域还有很多知识和技术需要掌握&#xff0c;正在不断努力填补技术短板。(如果出现…

微信个人号api

简要描述&#xff1a; 登录E云平台 请求URL&#xff1a; http://域名地址/member/login域名地址开发者账号密码:后台系统自助开通 请求方式&#xff1a; POST 请求头Headers&#xff1a; Content-Type&#xff1a;application/json 参数&#xff1a; 参数名必选类型说…

​如何使用ArcGIS Pro制作渐变河流效果

对于面要素的河流水系&#xff0c;制作渐变效果方法比较简单&#xff0c;如果是线要素的河流有办法制作渐变效果吗&#xff0c;答案是肯定的&#xff0c;这里为大家介绍一下制作方法&#xff0c;希望能对你有所帮助。 数据来源 本教程所使用的数据是从水经微图中下载的水系数…

quarkus的一些注解1

path 用于指定一个类或者方法的URL路径前缀。 Inject 将一个依赖注入到一个类或方法中 Get 用于指定一个处理HTTP GET请求 Produce 注解用于指定一个方法返回的内容类型。例如&#xff0c;Produces(MediaType.TEXT_PLAIN) 表示该方法返回一个纯文本类型的内容 QuarkusIn…

利用WebSocket +MQ发送紧急订单消息,并在客户端收到消息的用户的页面自动刷新列表

背景&#xff1a;在原有通知公告的基础上&#xff0c;把通知公共的推送服务修改为其他业务收到紧急订单发送公告到消息队列MQ&#xff0c;然后在js中创建一个socket去监听公告&#xff0c;收到公告后刷新所有在订单页面的用户的页面列表&#xff08;重点就是用户在收到紧急订单…