1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
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.
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"
32 ////////////////////////////////////////////////////////////
34 ////////////////////////////////////////////////////////////
36 SplashScreen::SplashScreen(QWidget
*parent
)
37 : QFrame(parent
, Qt::CustomizeWindowHint
| Qt::WindowStaysOnTopHint
)
39 //Init the dialog, from the .ui file
43 m_working
= new QMovie(":/images/Loading.gif");
44 labelLoading
->setMovie(m_working
);
48 setCursor(Qt::WaitCursor
);
54 ////////////////////////////////////////////////////////////
56 ////////////////////////////////////////////////////////////
58 SplashScreen::~SplashScreen(void)
68 ////////////////////////////////////////////////////////////
70 ////////////////////////////////////////////////////////////
72 void SplashScreen::showSplash(QThread
*thread
)
74 SplashScreen
*splashScreen
= new SplashScreen();
77 splashScreen
->m_canClose
= false;
78 splashScreen
->setWindowOpacity(0.0);
80 QApplication::processEvents();
86 for(double d
= 0.0; d
<= 1.0 + EPS
; d
= d
+ 0.01)
88 splashScreen
->setWindowOpacity(d
);
89 QApplication::processEvents();
93 //Loop while thread is running
94 while(thread
->isRunning())
96 QApplication::processEvents(QEventLoop::AllEvents
| QEventLoop::WaitForMoreEvents
);
100 for(double d
= 1.0; d
>= 0.0; d
= d
- 0.01)
102 splashScreen
->setWindowOpacity(d
);
103 QApplication::processEvents();
108 splashScreen
->m_canClose
= true;
109 splashScreen
->close();
111 LAMEXP_DELETE(splashScreen
);
114 ////////////////////////////////////////////////////////////
116 ////////////////////////////////////////////////////////////
118 void SplashScreen::keyPressEvent(QKeyEvent
*event
)
123 void SplashScreen::keyReleaseEvent(QKeyEvent
*event
)
128 void SplashScreen::closeEvent(QCloseEvent
*event
)
130 if(!m_canClose
) event
->ignore();