溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

QT實現(xiàn)提示右下角冒泡效果的方法是什么

發(fā)布時間:2020-08-21 09:59:50 來源:億速云 閱讀:272 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)QT實現(xiàn)提示右下角冒泡效果的方法是什么的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

實現(xiàn)原理:

1、顯示

定時器啟動,右下角緩慢彈出,逐漸改變位置。

2、駐留

讓界面停留一定的時間,時間過后自動關(guān)閉。

3、退出

可以直接點擊關(guān)閉退出,也可以采用改變透明度的形式模糊退出。

#ifndef _QTOOLTIPS_
#define _QTOOLTIPS_
#include <QTimer>
#include <QDialog>
#include "ui_QToolTips.h"
 
class QToolTips:public QDialog
{
 Q_OBJECT
 
public:
 QToolTips(QWidget *parent = 0);
 ~QToolTips();
 
 void showMessage(const char* str);
 
private slots:
 void onMove();
 void onStay();-
 void onClose();
 
private:
 Ui::QToolTips ui;
 QTimer * m_pShowTimer;
 QTimer * m_pStayTimer;
 QTimer * m_pCloseTimer;
 QPoint m_point;
 int   m_nDesktopHeight;
 double  m_dTransparent;
 
};
 
#endif
#include "QToolTips.h"
#include <QtWidgets/QApplication>
#include <QDesktopWidget>
 
QToolTips::QToolTips(QWidget *parent /*= 0*/)
 : QDialog(parent)
{
 
 setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
 ui.setupUi(this);
 
 m_nDesktopHeight = QApplication::desktop()->height();
 
 m_dTransparent = 1.0;
 
 m_pShowTimer = new QTimer(this);
 m_pStayTimer = new QTimer(this);
 m_pCloseTimer = new QTimer(this);
 
 connect(m_pShowTimer, SIGNAL(timeout()), this, SLOT(onMove()));
 connect(m_pStayTimer, SIGNAL(timeout()), this, SLOT(onStay()));
 connect(m_pCloseTimer, SIGNAL(timeout()), this, SLOT(onClose()));
 
}
 
 
QToolTips::~QToolTips()
{
 
}
 
void QToolTips::showMessage(const char* str)
{
 ui.m_label->setStyleSheet("background-color:rgb(255,210,200);font:60px;color:blue");
 ui.m_label->setText(str);
 QRect rect = QApplication::desktop()->availableGeometry();
 m_point.setX(rect.width() - width());
 m_point.setY(rect.height() - height());
 move(m_point.x(), m_point.y());
 m_pShowTimer->start(5);
 
 
}
 
void QToolTips::onMove()
{
 m_nDesktopHeight--;
 move(m_point.x(), m_nDesktopHeight);
 if (m_nDesktopHeight <= m_point.y())
 {
 m_pShowTimer->stop();
 m_pStayTimer->start(5000);
 }
 
 
}
 
void QToolTips::onStay()
{
 m_pStayTimer->stop();
 m_pCloseTimer->start(100);
 
}
 
void QToolTips::onClose()
{
 m_dTransparent -= 0.1;
 if (m_dTransparent <= 0.0)
 {
 m_pCloseTimer->stop();
 close();
 }
 else
 {
 setWindowOpacity(m_dTransparent);
 }
 
 
}

感謝各位的閱讀!關(guān)于QT實現(xiàn)提示右下角冒泡效果的方法是什么就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

qt
AI