Qt之透明提示框

简述

经常使用企鹅的小伙伴一定对登录失败的提示框很熟悉,主要涉及窗口透明并添加图标、提示信息、关闭按钮的显示等。

我们可以利用QWidget创建一个提示框,然后通过样式设置我们想要的效果。

  • 简述
  • 效果
  • 源码
  • 样式

效果

源码

QMessageWidget.h

#ifndef MESSAGE_WIDGET
#define MESSAGE_WIDGET

#include <QWidget>

class QLabel;
class QPushButton;

class QMessageWidget : public QWidget
{
    Q_OBJECT

public:
    explicit QMessageWidget(QWidget *parent = 0);
    ~QMessageWidget();
    // 设置显示文本
    void setText(const QString &text);

protected:
    void paintEvent(QPaintEvent *event);

private:
    QLabel *m_pMessageLabel;
};

#endif // MESSAGE_WIDGET

QMessageWidget.cpp

#include <QLabel>
#include <QStyleOption>
#include <QPainter>
#include <QPushButton>
#include <QHBoxLayout>
#include "QMessageWidget.h"

QMessageWidget::QMessageWidget(QWidget *parent)
    : QWidget(parent)
{
    setFixedHeight(25);

    setAutoFillBackground(true);
    setObjectName("messageWidget");

    // 提示图标
    QLabel *pIconLabel = new QLabel(this);
    m_pMessageLabel = new QLabel(this);
    QPushButton *pCloseButton = new QPushButton(this);

    pCloseButton->setFixedSize(8, 8);
    pIconLabel->setFixedSize(16, 16);

    pIconLabel->setScaledContents(true);
    pIconLabel->setObjectName("informationLabel");

    m_pMessageLabel->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
    m_pMessageLabel->setObjectName("highlightLabel");
    m_pMessageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);

    pCloseButton->setObjectName("closeTipButton");

    QHBoxLayout *pLayout = new QHBoxLayout();
    pLayout->addWidget(pIconLabel);
    pLayout->addWidget(m_pMessageLabel);
    pLayout->addWidget(pCloseButton);
    pLayout->setSpacing(5);
    pLayout->setContentsMargins(3, 3, 5, 3);

    setLayout(pLayout);

    connect(pCloseButton, SIGNAL(clicked(bool)), this, SLOT(close()));
}

QMessageWidget::~QMessageWidget()
{

}

// 设置显示文本
void QMessageWidget::setText(const QString &text)
{
    m_pMessageLabel->setText(text);
}

// 设置样式需要重写
void QMessageWidget::paintEvent(QPaintEvent *event)
{
    Q_UNUSED(event);

    QStyleOption opt;
    opt.init(this);
    QPainter p(this);
    style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
}

样式

// 界面样式
QWidget#messageWidget {
    background: rgba(255, 255, 255, 20%);
}

// 提示信息样式
QLabel#highlightLabel {
        color: rgb(0, 160, 230);
}

// 图标样式
QPushButton#closeTipButton {
        border-radius: none;
        border-image: url(:/Images/tipClose);
        background: transparent;
}
QPushButton#closeTipButton:hover {
        border-image: url(:/Images/tipCloseHover);
}
QPushButton#closeTipButton:pressed {
        border-image: url(:/Images/tipClosePressed);
}

这里实现了设置信息,贾娜比隐藏等效果,可以在此基础上进行扩展。背景色、字体颜色、图标等样式都可以自行设置,主要是实现思路,愿大家共勉。

时间: 2024-10-27 07:16:05

Qt之透明提示框的相关文章

qt之透明提示框(模拟qq) (非常漂亮)

Qt实现类似QQ的登录失败的提示框,主要涉及窗口透明并添加关闭按钮,以及图标和信息的显示等. 直接上代码: #include "error_widget.h" ErrorWidget::ErrorWidget(QWidget *parent) : QWidget(parent){ int width = parent->width(); this->resize(width, 28); //设置标题栏隐藏 this->setWindowFlags(Qt::Framel

Qt之等待提示框(QPropertyAnimation)

简述 之前分享过QLabel可以通过QMovie播放gif图片,可以实现等待提示框,今天主要使用动画QPropertyAnimation来进行实现! 数据加载的时候,往往都需要后台线程进行数据请求,而前台需要进行友好性的交互,防止无休止的等待,或者进程卡死. 简述 效果 资源 源码 分析 衍伸 效果 由于录制程序的原因,引起gif效果不清晰,可忽略. 资源 需要几张不同阶段的图标进行切换,这里使用8张. 源码 QPropertyAnimation动画里面并不支持旋转的属性,所以我们可以通过自定义

Qt之等待提示框(QTimer)

简述 上节讲述了关于QPropertyAnimation实现等待提示框的显示,本节我们使用另外一种方案来实现-使用定时器QTimer,通过设置超时时间定时更新图标达到旋转效果. 简述 效果 资源 源码 效果 由于录制程序的原因,引起gif效果不清晰,可忽略. 资源 需要几张不同阶段的图标进行切换,这里使用8张. 源码 QTimer通过setInterval设置100毫秒超时时间,每隔100毫秒后进行图标的更换,达到旋转效果. m_pTimer = new QTimer(this);. // 设定

Qt之等待提示框(QProgressIndicator)

简述 很早以前在网上看到一个纯代码实现的旋转动画感觉效果很不错,分享给大家.不得不说,条条大道通罗马,我们需要更多地创造... 详见:QProgressIndicator 简述 效果 源码 使用 效果 由于录制程序的原因,引起gif效果不清晰,可忽略. 源码 QProgressIndicator.h #ifndef QPROGRESSINDICATOR_H #define QPROGRESSINDICATOR_H #include <QWidget> #include <QColor&g

qt之自定义提示框(不规则提示框,右下角弹窗)

http://blog.sina.com.cn/s/blog_a6fb6cc90101e4r8.html http://blog.sina.com.cn/s/blog_a6fb6cc90101dtav.html

Qt之等待提示框(QMovie)

简述 关于gif的使用在实际项目中我用的并不多,因为我感觉瑕疵挺多的,很多时候锯齿比较严重,当然与图存在很大的关系. 关于生成gif的方法可以提供一个网站preloaders,基本是可以满足需求的. 简述 效果 源码 效果 由于录制程序的原因,引起gif效果不清晰,可忽略. 源码 通过使用QMovie来设置动画.可以调用setSpeed()设置动画速度.start()启动动画.stop()停止动画等. QMovie *pMovie = new QMovie(":/Images/loading&q

QPainterPath 不规则提示框

currentPosition()是最后一次绘制后的“结束点”(或初始点),使用moveTo()移动currentPosition()而不会添加任何元素. QPainterPath ?合并: 1.方法1:connectPath合并成一个路径,从第一个路径的最后一个点链接一条直线到第二个路径 2.方法2:addPath添加一个新路径作为子闭合路径 测试截图如下: 图1 addPath演示 图2 connectPath演示 上代码: 准备工作,设置窗口背景透明.置顶.无边框 setWindowFla

利用 css 制作简单的提示框

在网页开发中,为了提高用户体验,经常会用到一些提示框来引导用户,这里分享下一些简单的提示框的制作 1.首先类似一个长方形右上角一个关闭按钮 这里用到的主要是一些定位的知识,运用relative和absolute可以快速制作这样的一个提示框,想详细了解,点击这里 html代码: <div id="position"> <div class="position-relative"> <span>提示信息</span> &l

iOS:提示框(警告框)控件UIActionSheet的详解

提示框(警告框)控件2:UIActionSheet 功能:当点击按钮或标签等时,弹出一个提示框,显示必要的提示,然后通过添加的按钮完成需要的功能.它与导航栏类似,它继承自UIView. 风格类型: typedef NS_ENUM(NSInteger, UIActionSheetStyle) { UIActionSheetStyleAutomatic        = -1,       //iOS系统自动默认的风格 UIActionSheetStyleDefault          = UIB