Improved initialization of the working banner. Also banner can now be minimized using...
[LameXP.git] / src / Dialog_WorkingBanner.h
blob99ff8f6fe8a8346346f2c33d9272144483120be5
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 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, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
23 #pragma once
25 #include <QDialog>
27 namespace Ui
29 class WorkingBanner;
32 class QEventLoop;
34 ////////////////////////////////////////////////////////////
35 // Splash Frame
36 ////////////////////////////////////////////////////////////
38 class WorkingBanner: public QDialog
40 Q_OBJECT
42 public:
43 WorkingBanner(QWidget *parent);
44 ~WorkingBanner(void);
46 void show(const QString &text);
47 void show(const QString &text, QThread *thread);
48 void show(const QString &text, QEventLoop *loop);
50 private:
51 Ui::WorkingBanner *const ui;
53 QMovie *m_working;
54 bool m_canClose;
56 public slots:
57 void windowShown(void);
58 void setText(const QString &text);
59 void setProgressMax(unsigned int max);
60 void setProgressVal(unsigned int val);
61 bool close(void);
63 signals:
64 void userAbort(void);
66 protected:
67 virtual void keyPressEvent(QKeyEvent *event);
68 virtual void keyReleaseEvent(QKeyEvent *event);
69 virtual void closeEvent(QCloseEvent *event);
70 virtual bool winEvent(MSG *message, long *result);
71 virtual void showEvent(QShowEvent *event);
73 QFontMetrics *m_metrics;
74 QStyle *m_style;