2010-11-06 23:04:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
2017-03-12 12:12:49 +01:00
|
|
|
// Copyright (C) 2004-2017 LoRd_MuldeR <MuldeR2@GMX.de>
|
2010-11-06 23:04:47 +01:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
2013-10-23 20:56:57 +02:00
|
|
|
// (at your option) any later version, but always including the *additional*
|
|
|
|
// restrictions defined in the "License.txt" file.
|
2010-11-06 23:04:47 +01:00
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-11-25 13:58:21 +01:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class WorkingBanner;
|
|
|
|
}
|
|
|
|
|
2014-12-18 22:49:37 +01:00
|
|
|
namespace MUtils
|
|
|
|
{
|
|
|
|
class Taskbar7;
|
|
|
|
}
|
|
|
|
|
2013-11-25 13:58:21 +01:00
|
|
|
class QEventLoop;
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Splash Frame
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2013-11-25 13:58:21 +01:00
|
|
|
class WorkingBanner: public QDialog
|
2010-11-06 23:04:47 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-11-29 01:20:59 +01:00
|
|
|
WorkingBanner(QWidget *parent);
|
2010-11-06 23:04:47 +01:00
|
|
|
~WorkingBanner(void);
|
|
|
|
|
|
|
|
void show(const QString &text);
|
|
|
|
void show(const QString &text, QThread *thread);
|
2010-12-12 01:49:07 +01:00
|
|
|
void show(const QString &text, QEventLoop *loop);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
private:
|
2013-11-25 13:58:21 +01:00
|
|
|
Ui::WorkingBanner *const ui;
|
|
|
|
|
2014-12-18 22:49:37 +01:00
|
|
|
QScopedPointer<MUtils::Taskbar7> m_taskbar;
|
|
|
|
QScopedPointer<QMovie> m_working;
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
bool m_canClose;
|
|
|
|
|
|
|
|
public slots:
|
2013-11-26 23:01:37 +01:00
|
|
|
void windowShown(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
void setText(const QString &text);
|
2012-05-06 04:57:00 +02:00
|
|
|
void setProgressMax(unsigned int max);
|
|
|
|
void setProgressVal(unsigned int val);
|
2011-12-29 14:42:20 +01:00
|
|
|
bool close(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2011-05-16 18:05:50 +02:00
|
|
|
signals:
|
|
|
|
void userAbort(void);
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
protected:
|
2013-11-26 23:01:37 +01:00
|
|
|
virtual void keyPressEvent(QKeyEvent *event);
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent *event);
|
|
|
|
virtual void closeEvent(QCloseEvent *event);
|
|
|
|
virtual void showEvent(QShowEvent *event);
|
2013-12-03 22:19:11 +01:00
|
|
|
virtual void hideEvent(QHideEvent *event);
|
2012-05-06 04:57:00 +02:00
|
|
|
|
2014-12-18 22:49:37 +01:00
|
|
|
QScopedPointer<QFontMetrics> m_metrics;
|
|
|
|
QScopedPointer<QStyle> m_style;
|
2010-11-06 23:04:47 +01:00
|
|
|
};
|