1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/giftest/giftestdialog.cpp

19 lines
438 B
C++
Raw Normal View History

#include "giftestdialog.h"
#include "ui_giftestdialog.h"
GifTestDialog::GifTestDialog ( QWidget* parent ) :
QDialog ( parent ),
ui ( new Ui::GifTestDialog )
{
ui->setupUi ( this );
ui->labelGif->setGifFile ( "./waiting.gif" );
ui->widgetGif->setGifFile ( "./waiting.gif" );
ui->widgetQQt->setPixmap ( "./yun.png" );
pline() << QMovie::supportedFormats();
}
GifTestDialog::~GifTestDialog()
{
delete ui;
}