Qt放Element网页滑动菜单栏

2024-09-06 06:12

本文主要是介绍Qt放Element网页滑动菜单栏,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

基于QTabWidget实现菜单

tabwidget.h

#ifndef TAB_WIDGET_H
#define TAB_WIDGET_H#include <QTabWidget>
#include <QVariantAnimation>
#include "customcomponent_global.h"class TabBarAnimation;class TabWidget : public QTabWidget
{Q_OBJECTpublic:InoTabWidget(QWidget *parent = 0);~InoTabWidget();void setAnimationCurrentValue(int value);protected:void paintEvent(QPaintEvent *);bool eventFilter(QObject *o, QEvent *e);private:void startAnimation(int beginX, int endX, int duration);private:TabBarAnimation *m_animation;int m_animationX;
};#endif

tabwidget.cpp

#include "tabwidget.h"
#include <QStyleOptionTabWidgetFrame>
#include <QStylePainter>
#include <QMouseEvent>const int AnimateBarWidth = 64;
const int AnimateBarHeight = 2;
const int AnimateBarXOffset = 30;const int LogoWidth = 140;
const int LogoHeight = 20;class TabBarAnimation : public QVariantAnimation
{
public:TabBarAnimation(InoTabWidget *t) :tabs(t){setEasingCurve(QEasingCurve::InOutQuad);}void updateCurrentValue(const QVariant &current) Q_DECL_OVERRIDE;private:InoTabWidget *tabs;
};void TabBarAnimation::updateCurrentValue(const QVariant &current)
{if (tabs) {tabs->setAnimationCurrentValue(current.toInt());}
}TabWidget::TabWidget(QWidget *parent) :QTabWidget(parent),m_animation(nullptr),m_animationX(-1)
{tabBar()->installEventFilter(this);tabBar()->setFixedHeight(40);
}TabWidget::~TabWidget()
{if (m_animation) {delete m_animation;m_animation = nullptr;}
}bool TabWidget::eventFilter(QObject *obj, QEvent *event)
{if (obj == tabBar() && event->type() == QEvent::MouseButtonPress) {QMouseEvent *pMouseEvent = (QMouseEvent *)event;if (pMouseEvent->button() == Qt::LeftButton) {const QPoint pos = pMouseEvent->pos();int index = tabBar()->tabAt(pos);if (index >= 0) {int curIndex = tabBar()->currentIndex();if (index != curIndex) {const QPoint tabBarPos = tabBar()->mapToGlobal(tabBar()->rect().topLeft());startAnimation(tabBarPos.x() + tabBar()->tabRect(curIndex).x() + tabBar()->tabRect(curIndex).width() / 2 - AnimateBarXOffset,tabBarPos.x() + tabBar()->tabRect(index).x() + tabBar()->tabRect(index).width() / 2 - AnimateBarXOffset, 250);}}}}return false;
}void TabWidget::startAnimation(int beginX, int endX, int duration)
{if (!m_animation) {m_animation = new TabBarAnimation(this);}m_animation->setStartValue(beginX);m_animation->setEndValue(endX);m_animation->setDuration(duration);m_animation->start();
}void TabWidget::setAnimationCurrentValue(int value)
{m_animationX = value;update();
}// 绘制背景下划线和当前Index的下划线
void TabWidget::paintEvent(QPaintEvent *event)
{Q_UNUSED(event);int index = tabBar()->currentIndex();QRect rect = tabBar()->tabRect(index);const QPoint tabBarPos = tabBar()->mapToGlobal(tabBar()->rect().topLeft());QStyleOptionTabWidgetFrame option;initStyleOption(&option);option.lineWidth = 0;QStylePainter p(this);option.rect = style()->subElementRect(QStyle::SE_TabWidgetTabPane, &option, this);p.drawPrimitive(QStyle::PE_FrameTabWidget, option);p.fillRect(QRect(option.rect.x(), rect.y(), option.rect.width(),rect.y() + rect.height() + AnimateBarHeight * 2),QColor(41, 90, 176));int x = (m_animation && m_animation->state() == QAbstractAnimation::Running) ?m_animationX :(tabBarPos.x() + rect.x() + rect.width() / 2 - AnimateBarXOffset);p.fillRect(QRect(x, rect.y() + rect.height(),AnimateBarWidth, AnimateBarHeight),QColor(255, 255, 255));
}

这篇关于Qt放Element网页滑动菜单栏的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

基于Qt Qml实现时间轴组件

《基于QtQml实现时间轴组件》时间轴组件是现代用户界面中常见的元素,用于按时间顺序展示事件,本文主要为大家详细介绍了如何使用Qml实现一个简单的时间轴组件,需要的可以参考下... 目录写在前面效果图组件概述实现细节1. 组件结构2. 属性定义3. 数据模型4. 事件项的添加和排序5. 事件项的渲染如何使用

idea如何开启菜单栏

《idea如何开启菜单栏》文章介绍了如何通过修改IntelliJIDEA的样式文件`ui.lnf.xml`来重新显示被关闭的菜单栏,并分享了解决问题的步骤... 目录ijsdea开启菜单栏第一步第二步总结idea开启菜单栏手贱关闭了idea的js菜单栏,花费了半个小时终于解决,记录并分享一下第一步找

基于Qt开发一个简单的OFD阅读器

《基于Qt开发一个简单的OFD阅读器》这篇文章主要为大家详细介绍了如何使用Qt框架开发一个功能强大且性能优异的OFD阅读器,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 目录摘要引言一、OFD文件格式解析二、文档结构解析三、页面渲染四、用户交互五、性能优化六、示例代码七、未来发展方向八、结论摘要

element-ui下拉输入框+resetFields无法回显的问题解决

《element-ui下拉输入框+resetFields无法回显的问题解决》本文主要介绍了在使用ElementUI的下拉输入框时,点击重置按钮后输入框无法回显数据的问题,具有一定的参考价值,感兴趣的... 目录描述原因问题重现解决方案方法一方法二总结描述第一次进入页面,不做任何操作,点击重置按钮,再进行下

python与QT联合的详细步骤记录

《python与QT联合的详细步骤记录》:本文主要介绍python与QT联合的详细步骤,文章还展示了如何在Python中调用QT的.ui文件来实现GUI界面,并介绍了多窗口的应用,文中通过代码介绍... 目录一、文章简介二、安装pyqt5三、GUI页面设计四、python的使用python文件创建pytho

基于Redis有序集合实现滑动窗口限流的步骤

《基于Redis有序集合实现滑动窗口限流的步骤》滑动窗口算法是一种基于时间窗口的限流算法,通过动态地滑动窗口,可以动态调整限流的速率,Redis有序集合可以用来实现滑动窗口限流,本文介绍基于Redis... 滑动窗口算法是一种基于时间窗口的限流算法,它将时间划分为若干个固定大小的窗口,每个窗口内记录了该时间

QT实现TCP客户端自动连接

《QT实现TCP客户端自动连接》这篇文章主要为大家详细介绍了QT中一个TCP客户端自动连接的测试模型,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录版本 1:没有取消按钮 测试效果测试代码版本 2:有取消按钮测试效果测试代码版本 1:没有取消按钮 测试效果缺陷:无法手动停

基于Qt实现系统主题感知功能

《基于Qt实现系统主题感知功能》在现代桌面应用程序开发中,系统主题感知是一项重要的功能,它使得应用程序能够根据用户的系统主题设置(如深色模式或浅色模式)自动调整其外观,Qt作为一个跨平台的C++图形用... 目录【正文开始】一、使用效果二、系统主题感知助手类(SystemThemeHelper)三、实现细节

Qt实现文件的压缩和解压缩操作

《Qt实现文件的压缩和解压缩操作》这篇文章主要为大家详细介绍了如何使用Qt库中的QZipReader和QZipWriter实现文件的压缩和解压缩功能,文中的示例代码简洁易懂,需要的可以参考一下... 目录一、实现方式二、具体步骤1、在.pro文件中添加模块gui-private2、通过QObject方式创建

Qt QWidget实现图片旋转动画

《QtQWidget实现图片旋转动画》这篇文章主要为大家详细介绍了如何使用了Qt和QWidget实现图片旋转动画效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 一、效果展示二、源码分享本例程通过QGraphicsView实现svg格式图片旋转。.hpjavascript