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中QGroupBox控件的实现

《Qt中QGroupBox控件的实现》QGroupBox是Qt框架中一个非常有用的控件,它主要用于组织和管理一组相关的控件,本文主要介绍了Qt中QGroupBox控件的实现,具有一定的参考价值,感兴趣... 目录引言一、基本属性二、常用方法2.1 构造函数 2.2 设置标题2.3 设置复选框模式2.4 是否

QT进行CSV文件初始化与读写操作

《QT进行CSV文件初始化与读写操作》这篇文章主要为大家详细介绍了在QT环境中如何进行CSV文件的初始化、写入和读取操作,本文为大家整理了相关的操作的多种方法,希望对大家有所帮助... 目录前言一、CSV文件初始化二、CSV写入三、CSV读取四、QT 逐行读取csv文件五、Qt如何将数据保存成CSV文件前言

Qt中QUndoView控件的具体使用

《Qt中QUndoView控件的具体使用》QUndoView是Qt框架中用于可视化显示QUndoStack内容的控件,本文主要介绍了Qt中QUndoView控件的具体使用,具有一定的参考价值,感兴趣的... 目录引言一、QUndoView 的用途二、工作原理三、 如何与 QUnDOStack 配合使用四、自

Qt spdlog日志模块的使用详解

《Qtspdlog日志模块的使用详解》在Qt应用程序开发中,良好的日志系统至关重要,本文将介绍如何使用spdlog1.5.0创建满足以下要求的日志系统,感兴趣的朋友一起看看吧... 目录版本摘要例子logmanager.cpp文件main.cpp文件版本spdlog版本:1.5.0采用1.5.0版本主要

使用Python实现获取网页指定内容

《使用Python实现获取网页指定内容》在当今互联网时代,网页数据抓取是一项非常重要的技能,本文将带你从零开始学习如何使用Python获取网页中的指定内容,希望对大家有所帮助... 目录引言1. 网页抓取的基本概念2. python中的网页抓取库3. 安装必要的库4. 发送HTTP请求并获取网页内容5. 解

Python使用DrissionPage中ChromiumPage进行自动化网页操作

《Python使用DrissionPage中ChromiumPage进行自动化网页操作》DrissionPage作为一款轻量级且功能强大的浏览器自动化库,为开发者提供了丰富的功能支持,本文将使用Dri... 目录前言一、ChromiumPage基础操作1.初始化Drission 和 ChromiumPage

Qt 中 isHidden 和 isVisible 的区别与使用小结

《Qt中isHidden和isVisible的区别与使用小结》Qt中的isHidden()和isVisible()方法都用于查询组件显示或隐藏状态,然而,它们有很大的区别,了解它们对于正确操... 目录1. 基础概念2. 区别清见3. 实际案例4. 注意事项5. 总结1. 基础概念Qt 中的 isHidd

QT移植到RK3568开发板的方法步骤

《QT移植到RK3568开发板的方法步骤》本文主要介绍了QT移植到RK3568开发板的方法步骤,文中通过图文示例介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录前言一、获取SDK1. 安装依赖2. 获取SDK资源包3. SDK工程目录介绍4. 获取补丁包二

Qt把文件夹从A移动到B的实现示例

《Qt把文件夹从A移动到B的实现示例》本文主要介绍了Qt把文件夹从A移动到B的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 目录如何移动一个文件? 如何移动文件夹(包含里面的全部内容):如何删除文件夹:QT 文件复制,移动(

Qt实现发送HTTP请求的示例详解

《Qt实现发送HTTP请求的示例详解》这篇文章主要为大家详细介绍了如何通过Qt实现发送HTTP请求,文中的示例代码讲解详细,具有一定的借鉴价值,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1、添加network模块2、包含改头文件3、创建网络访问管理器4、创建接口5、创建网络请求对象6、创建一个回复对