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_WorkingBanner.h"
25 #include "WinSevenTaskbar.h"
30 #include <QFontMetrics>
35 ////////////////////////////////////////////////////////////
37 ////////////////////////////////////////////////////////////
39 WorkingBanner::WorkingBanner(QWidget
*parent
)
41 QDialog(parent
, Qt::CustomizeWindowHint
| Qt::WindowStaysOnTopHint
)
43 //Init the dialog, from the .ui file
48 m_working
= new QMovie(":/images/Busy.gif");
49 labelWorking
->setMovie(m_working
);
53 setCursor(Qt::WaitCursor
);
56 WinSevenTaskbar::initTaskbar();
59 ////////////////////////////////////////////////////////////
61 ////////////////////////////////////////////////////////////
63 WorkingBanner::~WorkingBanner(void)
73 ////////////////////////////////////////////////////////////
75 ////////////////////////////////////////////////////////////
77 void WorkingBanner::show(const QString
&text
)
82 QApplication::processEvents();
85 void WorkingBanner::close(void)
91 void WorkingBanner::show(const QString
&text
, QThread
*thread
)
100 WinSevenTaskbar::setOverlayIcon(dynamic_cast<QWidget
*>(this->parent()), &QIcon(":/icons/hourglass.png"));
101 WinSevenTaskbar::setTaskbarState(dynamic_cast<QWidget
*>(this->parent()), WinSevenTaskbar::WinSevenTaskbarIndeterminateState
);
103 //Loop while thread is running
104 while(thread
->isRunning())
106 QApplication::processEvents(QEventLoop::AllEvents
| QEventLoop::WaitForMoreEvents
);
110 WinSevenTaskbar::setTaskbarState(dynamic_cast<QWidget
*>(this->parent()), WinSevenTaskbar::WinSevenTaskbarNoState
);
111 WinSevenTaskbar::setOverlayIcon(dynamic_cast<QWidget
*>(this->parent()), NULL
);
117 void WorkingBanner::show(const QString
&text
, QEventLoop
*loop
)
123 WinSevenTaskbar::setOverlayIcon(dynamic_cast<QWidget
*>(this->parent()), &QIcon(":/icons/hourglass.png"));
124 WinSevenTaskbar::setTaskbarState(dynamic_cast<QWidget
*>(this->parent()), WinSevenTaskbar::WinSevenTaskbarIndeterminateState
);
126 //Loop while thread is running
127 loop
->exec(QEventLoop::ExcludeUserInputEvents
);
130 WinSevenTaskbar::setTaskbarState(dynamic_cast<QWidget
*>(this->parent()), WinSevenTaskbar::WinSevenTaskbarNoState
);
131 WinSevenTaskbar::setOverlayIcon(dynamic_cast<QWidget
*>(this->parent()), NULL
);
137 ////////////////////////////////////////////////////////////
139 ////////////////////////////////////////////////////////////
141 void WorkingBanner::keyPressEvent(QKeyEvent
*event
)
146 void WorkingBanner::keyReleaseEvent(QKeyEvent
*event
)
151 void WorkingBanner::closeEvent(QCloseEvent
*event
)
153 if(!m_canClose
) event
->ignore();
156 ////////////////////////////////////////////////////////////
158 ////////////////////////////////////////////////////////////
160 void WorkingBanner::setText(const QString
&text
)
162 QFontMetrics
metrics(labelStatus
->font());
163 if(metrics
.width(text
) <= labelStatus
->width())
165 labelStatus
->setText(text
);
169 QString choppedText
= text
.simplified().append("...");
170 while(metrics
.width(choppedText
) > labelStatus
->width() && choppedText
.length() > 8)
173 choppedText
= choppedText
.trimmed();
174 choppedText
.append("...");
176 labelStatus
->setText(choppedText
);
178 if(this->isVisible())
180 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents
);