Added indicators for current CPU usage, RAM usage and free disk space to the processi...
[LameXP.git] / src / Dialog_SplashScreen.cpp
blobb2e542af24f48f30a38ece8eba49489142c63684
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "Dialog_SplashScreen.h"
24 #include "Global.h"
26 #include <QThread>
27 #include <QMovie>
28 #include <QKeyEvent>
30 #define EPS (1.0E-5)
32 ////////////////////////////////////////////////////////////
33 // Constructor
34 ////////////////////////////////////////////////////////////
36 SplashScreen::SplashScreen(QWidget *parent)
37 : QFrame(parent, Qt::CustomizeWindowHint | Qt::WindowStaysOnTopHint)
39 //Init the dialog, from the .ui file
40 setupUi(this);
42 //Start animation
43 m_working = new QMovie(":/images/Loading.gif");
44 labelLoading->setMovie(m_working);
45 m_working->start();
47 //Set wait cursor
48 setCursor(Qt::WaitCursor);
50 //Prevent close
51 m_canClose = false;
54 ////////////////////////////////////////////////////////////
55 // Destructor
56 ////////////////////////////////////////////////////////////
58 SplashScreen::~SplashScreen(void)
60 if(m_working)
62 m_working->stop();
63 delete m_working;
64 m_working = NULL;
68 ////////////////////////////////////////////////////////////
69 // PUBLIC FUNCTIONS
70 ////////////////////////////////////////////////////////////
72 void SplashScreen::showSplash(QThread *thread)
74 SplashScreen *splashScreen = new SplashScreen();
76 //Show splash
77 splashScreen->m_canClose = false;
78 splashScreen->setWindowOpacity(0.0);
79 splashScreen->show();
80 QApplication::processEvents();
82 //Start the thread
83 thread->start();
85 //Fade in
86 for(double d = 0.0; d <= 1.0 + EPS; d = d + 0.01)
88 splashScreen->setWindowOpacity(d);
89 QApplication::processEvents();
90 Sleep(6);
93 //Loop while thread is running
94 while(thread->isRunning())
96 QApplication::processEvents(QEventLoop::AllEvents | QEventLoop::WaitForMoreEvents);
99 //Fade out
100 for(double d = 1.0; d >= 0.0; d = d - 0.01)
102 splashScreen->setWindowOpacity(d);
103 QApplication::processEvents();
104 Sleep(6);
107 //Hide splash
108 splashScreen->m_canClose = true;
109 splashScreen->close();
111 LAMEXP_DELETE(splashScreen);
114 ////////////////////////////////////////////////////////////
115 // EVENTS
116 ////////////////////////////////////////////////////////////
118 void SplashScreen::keyPressEvent(QKeyEvent *event)
120 event->ignore();
123 void SplashScreen::keyReleaseEvent(QKeyEvent *event)
125 event->ignore();
128 void SplashScreen::closeEvent(QCloseEvent *event)
130 if(!m_canClose) event->ignore();