From 2bf0790dac098fd24a20161f32cd848a87fe56ca Mon Sep 17 00:00:00 2001 From: harlekin Date: Mon, 24 Mar 2003 20:51:18 +0000 Subject: preliminary big busy cursor - maybe an animation later --- (limited to 'core/launcher/waitpopup.cpp') diff --git a/core/launcher/waitpopup.cpp b/core/launcher/waitpopup.cpp new file mode 100644 index 0000000..e488ab5 --- a/dev/null +++ b/core/launcher/waitpopup.cpp @@ -0,0 +1,23 @@ +#include +#include +#include +#include + +#include "waitpopup.h" +#include + + +WaitPopup::WaitPopup(QWidget *parent, const char* msg, bool dispIcon ) + :QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) { + QHBoxLayout *hbox = new QHBoxLayout( this ); + QLabel *lb; + lb = new QLabel( this ); + //lb->setMovie( QMovie( "./wait.gif" , 200) ); + lb->setPixmap( Resource::loadPixmap( "Clock" ) ); + lb->setBackgroundMode ( NoBackground ); + hbox->addWidget( lb ); + hbox->activate(); +} + +WaitPopup::~WaitPopup() { +} -- cgit v0.9.0.2