QT wait dialog box/progress --

Source: Internet
Author: User

A GIF image loaded with QT. Do not forget it after it is recorded. [Cpp] # ifndef DIALOG_H # define DIALOG_H # include <QDialog> # include <QLabel> # include <QPainter> # include <QMovie> class Dialog: public QDialog {Q_OBJECT public: explicit Dialog (QWidget * parent = 0 );~ Dialog (); private: QMovie * movie; QLabel * label;}; # endif // DIALOG_H [cpp] # include "dialog. h "Dialog: Dialog (QWidget * parent): QDialog (parent) {www.2cto.com label = new QLabel (this); this-> setFixedSize (200,200); setWindowOpacity (0.5 ); // set transparent; this-> setWindowFlags (Qt: Dialog | Qt: mimizewindowhint); // cancel the Dialog box title // this-> setWindowFlags (Qt :: dialog | Qt: FramelessWindowHint); // cancel the title and border of the Dialog box. // this-> setAut OFillBackground (true); this-> setContentsMargins (0, 0, 0); label-> setContentsMargins (0, 0, 0);/* QPalettepalette; palette. setBrush (QPalette: Background, QBrush (QPixmap ("E:/qml/imgdialog/loading.gif"); this-> setPalette (palette )*/; movie = new QMovie ("loading.gif"); label-> setMovie (movie); movie-> start ();} Dialog ::~ Dialog () {delete label; delete movie;} effect:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.