2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2013-04-09 14:22:28 +02:00
|
|
|
#include "futureprogress.h"
|
2009-01-13 13:54:45 +01:00
|
|
|
#include "progressmanager_p.h"
|
2013-03-22 14:14:21 +01:00
|
|
|
#include "progressbar.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "progressview.h"
|
2013-03-22 14:14:21 +01:00
|
|
|
#include "../actionmanager/actionmanager.h"
|
|
|
|
|
#include "../icontext.h"
|
|
|
|
|
#include "../coreconstants.h"
|
2012-09-27 17:20:00 +02:00
|
|
|
#include "../icore.h"
|
2013-03-22 14:14:21 +01:00
|
|
|
#include "../statusbarwidget.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-03-22 14:14:21 +01:00
|
|
|
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <utils/hostosinfo.h>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2013-03-22 14:14:21 +01:00
|
|
|
#include <utils/stylehelper.h>
|
|
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
#include <QEvent>
|
|
|
|
|
#include <QHBoxLayout>
|
2013-07-08 13:45:05 +02:00
|
|
|
#include <QMouseEvent>
|
2013-03-22 14:14:21 +01:00
|
|
|
#include <QPainter>
|
|
|
|
|
#include <QPropertyAnimation>
|
|
|
|
|
#include <QStyle>
|
|
|
|
|
#include <QStyleOption>
|
|
|
|
|
#include <QTimer>
|
2013-05-27 10:38:49 +02:00
|
|
|
#include <QVariant>
|
|
|
|
|
|
|
|
|
|
static const char kSettingsGroup[] = "Progress";
|
|
|
|
|
static const char kDetailsPinned[] = "DetailsPinned";
|
2008-12-09 15:25:01 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
using namespace Core;
|
|
|
|
|
using namespace Core::Internal;
|
|
|
|
|
|
2009-12-02 15:05:49 +01:00
|
|
|
/*!
|
|
|
|
|
\mainclass
|
|
|
|
|
\class Core::ProgressManager
|
|
|
|
|
\brief The ProgressManager class is used to show a user interface
|
|
|
|
|
for running tasks in Qt Creator.
|
|
|
|
|
|
|
|
|
|
It tracks the progress of a task that it is told
|
|
|
|
|
about, and shows a progress indicator in the left hand tool bar
|
|
|
|
|
of Qt Creator's main window to the user.
|
|
|
|
|
The progress indicator also allows the user to cancel the task.
|
|
|
|
|
|
|
|
|
|
You get the single instance of this class via the
|
|
|
|
|
Core::ICore::progressManager() method.
|
|
|
|
|
|
|
|
|
|
\section1 Registering a task
|
|
|
|
|
The ProgressManager API uses QtConcurrent as the basis for defining
|
|
|
|
|
tasks. A task consists of the following properties:
|
|
|
|
|
|
|
|
|
|
\table
|
|
|
|
|
\header
|
2013-02-06 08:50:23 +01:00
|
|
|
\li Property
|
|
|
|
|
\li Type
|
|
|
|
|
\li Description
|
2009-12-02 15:05:49 +01:00
|
|
|
\row
|
2013-02-06 08:50:23 +01:00
|
|
|
\li Task abstraction
|
|
|
|
|
\li \c QFuture<void>
|
|
|
|
|
\li A \c QFuture object that represents the task which is
|
2009-12-02 15:05:49 +01:00
|
|
|
responsible for reporting the state of the task. See below
|
|
|
|
|
for coding patterns how to create this object for your
|
|
|
|
|
specific task.
|
|
|
|
|
\row
|
2013-02-06 08:50:23 +01:00
|
|
|
\li Title
|
|
|
|
|
\li \c QString
|
|
|
|
|
\li A very short title describing your task. This is shown
|
2009-12-02 15:05:49 +01:00
|
|
|
as a title over the progress bar.
|
|
|
|
|
\row
|
2013-02-06 08:50:23 +01:00
|
|
|
\li Type
|
|
|
|
|
\li \c QString
|
|
|
|
|
\li A string identifier that is used to group different tasks that
|
2009-12-02 15:05:49 +01:00
|
|
|
belong together.
|
|
|
|
|
For example, all the search operations use the same type
|
|
|
|
|
identifier.
|
|
|
|
|
\row
|
2013-02-06 08:50:23 +01:00
|
|
|
\li Flags
|
|
|
|
|
\li \l ProgressManager::ProgressFlags
|
|
|
|
|
\li Additional flags that specify how the progress bar should
|
2009-12-02 15:05:49 +01:00
|
|
|
be presented to the user.
|
|
|
|
|
\endtable
|
|
|
|
|
|
|
|
|
|
To register a task you create your \c QFuture<void> object, and call
|
|
|
|
|
addTask(). This method returns a
|
|
|
|
|
\l{Core::FutureProgress}{FutureProgress}
|
|
|
|
|
object that you can use to further customize the progress bar's appearance.
|
|
|
|
|
See the \l{Core::FutureProgress}{FutureProgress} documentation for
|
|
|
|
|
details.
|
|
|
|
|
|
|
|
|
|
In the following you will learn about two common patterns how to
|
|
|
|
|
create the \c QFuture<void> object for your task.
|
|
|
|
|
|
|
|
|
|
\section2 Create a threaded task with QtConcurrent
|
|
|
|
|
The first option is to directly use QtConcurrent to actually
|
|
|
|
|
start a task concurrently in a different thread.
|
|
|
|
|
QtConcurrent has several different methods to run e.g.
|
|
|
|
|
a class method in a different thread. Qt Creator itself
|
|
|
|
|
adds a few more in \c{src/libs/qtconcurrent/runextensions.h}.
|
|
|
|
|
The QtConcurrent methods to run a concurrent task return a
|
|
|
|
|
\c QFuture object. This is what you want to give the
|
|
|
|
|
ProgressManager in the addTask() method.
|
|
|
|
|
|
|
|
|
|
Have a look at e.g Locator::ILocatorFilter. Locator filters implement
|
|
|
|
|
a method \c refresh which takes a \c QFutureInterface object
|
|
|
|
|
as a parameter. These methods look something like:
|
|
|
|
|
\code
|
|
|
|
|
void Filter::refresh(QFutureInterface<void> &future) {
|
|
|
|
|
future.setProgressRange(0, MAX);
|
|
|
|
|
...
|
|
|
|
|
while (!future.isCanceled()) {
|
|
|
|
|
// Do a part of the long stuff
|
|
|
|
|
...
|
|
|
|
|
future.setProgressValue(currentProgress);
|
|
|
|
|
...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
\endcode
|
|
|
|
|
|
|
|
|
|
The actual refresh, which calls all the filters' refresh methods
|
|
|
|
|
in a different thread, looks like this:
|
|
|
|
|
\code
|
|
|
|
|
QFuture<void> task = QtConcurrent::run(&ILocatorFilter::refresh, filters);
|
|
|
|
|
Core::FutureProgress *progress = Core::ICore::instance()
|
|
|
|
|
->progressManager()->addTask(task, tr("Indexing"),
|
|
|
|
|
Locator::Constants::TASK_INDEX);
|
|
|
|
|
\endcode
|
|
|
|
|
First, we tell QtConcurrent to start a thread which calls all the filters'
|
|
|
|
|
refresh method. After that we register the returned QFuture object
|
|
|
|
|
with the ProgressManager.
|
|
|
|
|
|
|
|
|
|
\section2 Manually create QtConcurrent objects for your thread
|
|
|
|
|
If your task has its own means to create and run a thread,
|
|
|
|
|
you need to create the necessary objects yourselves, and
|
|
|
|
|
report the start/stop state.
|
|
|
|
|
|
|
|
|
|
\code
|
|
|
|
|
// We are already running in a different thread here
|
|
|
|
|
QFutureInterface<void> *progressObject = new QFutureInterface<void>;
|
|
|
|
|
progressObject->setProgressRange(0, MAX);
|
2012-01-24 15:36:40 +01:00
|
|
|
Core::ICore::progressManager()->addTask(
|
2009-12-02 15:05:49 +01:00
|
|
|
progressObject->future(),
|
|
|
|
|
tr("DoIt"), MYTASKTYPE);
|
|
|
|
|
progressObject->reportStarted();
|
|
|
|
|
// Do something
|
|
|
|
|
...
|
|
|
|
|
progressObject->setProgressValue(currentProgress);
|
|
|
|
|
...
|
|
|
|
|
// We have done what we needed to do
|
|
|
|
|
progressObject->reportFinished();
|
|
|
|
|
delete progressObject;
|
|
|
|
|
\endcode
|
|
|
|
|
In the first line we create the QFutureInterface object that will be
|
|
|
|
|
our way for reporting the task's state.
|
|
|
|
|
The first thing we report is the expected range of the progress values.
|
|
|
|
|
We register the task with the ProgressManager, using the internal
|
|
|
|
|
QFuture object that has been created for our QFutureInterface object.
|
|
|
|
|
Next we report that the task has begun and start doing our actual
|
|
|
|
|
work, regularly reporting the progress via the methods
|
|
|
|
|
in QFutureInterface. After the long taking operation has finished,
|
|
|
|
|
we report so through the QFutureInterface object, and delete it
|
|
|
|
|
afterwards.
|
2009-12-21 17:11:47 +01:00
|
|
|
|
|
|
|
|
\section1 Customizing progress appearance
|
|
|
|
|
|
|
|
|
|
You can set a custom widget to show below the progress bar itself,
|
|
|
|
|
using the FutureProgress object returned by the addTask() method.
|
|
|
|
|
Also use this object to get notified when the user clicks on the
|
|
|
|
|
progress indicator.
|
2009-12-02 15:05:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\enum Core::ProgressManager::ProgressFlag
|
|
|
|
|
Additional flags that specify details in behavior. The
|
|
|
|
|
default for a task is to not have any of these flags set.
|
|
|
|
|
\value KeepOnFinish
|
|
|
|
|
The progress indicator stays visible after the task has finished.
|
|
|
|
|
\value ShowInApplicationIcon
|
|
|
|
|
The progress indicator for this task is additionally
|
|
|
|
|
shown in the application icon in the system's task bar or dock, on
|
|
|
|
|
platforms that support that (at the moment Windows 7 and Mac OS X).
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn Core::ProgressManager::ProgressManager(QObject *parent = 0)
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn Core::ProgressManager::~ProgressManager()
|
|
|
|
|
\internal
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn FutureProgress *Core::ProgressManager::addTask(const QFuture<void> &future, const QString &title, const QString &type, ProgressFlags flags = 0)
|
|
|
|
|
|
2009-12-21 17:11:47 +01:00
|
|
|
Shows a progress indicator for task given by the QFuture object \a future.
|
2009-12-02 15:05:49 +01:00
|
|
|
The progress indicator shows the specified \a title along with the progress bar.
|
|
|
|
|
The \a type of a task will specify a logical grouping with other
|
|
|
|
|
running tasks. Via the \a flags parameter you can e.g. let the
|
|
|
|
|
progress indicator stay visible after the task has finished.
|
|
|
|
|
Returns an object that represents the created progress indicator,
|
2009-12-21 17:11:47 +01:00
|
|
|
which can be used to further customize. The FutureProgress object's
|
2011-11-09 11:35:43 +01:00
|
|
|
life is managed by the ProgressManager and is guaranteed to live only until
|
|
|
|
|
the next event loop cycle, or until the next call of addTask.
|
|
|
|
|
If you want to use the returned FutureProgress later than directly after calling this method,
|
|
|
|
|
you will need to use protective methods (like wrapping the returned object in QPointer and
|
|
|
|
|
checking for 0 whenever you use it).
|
2009-12-02 15:05:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn void Core::ProgressManager::setApplicationLabel(const QString &text)
|
|
|
|
|
|
|
|
|
|
Shows the given \a text in a platform dependent way in the application
|
|
|
|
|
icon in the system's task bar or dock. This is used
|
|
|
|
|
to show the number of build errors on Windows 7 and Mac OS X.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn void Core::ProgressManager::cancelTasks(const QString &type)
|
|
|
|
|
|
|
|
|
|
Schedules a cancel for all running tasks of the given \a type.
|
|
|
|
|
Please note that the cancel functionality depends on the
|
|
|
|
|
running task to actually check the \c QFutureInterface::isCanceled
|
|
|
|
|
property.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn void Core::ProgressManager::taskStarted(const QString &type)
|
|
|
|
|
|
|
|
|
|
Sent whenever a task of a given \a type is started.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\fn void Core::ProgressManager::allTasksFinished(const QString &type)
|
|
|
|
|
|
|
|
|
|
Sent when all tasks of a \a type have finished.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-30 15:10:49 +02:00
|
|
|
ProgressManagerPrivate::ProgressManagerPrivate()
|
|
|
|
|
: m_applicationTask(0),
|
2013-04-08 15:02:30 +02:00
|
|
|
m_currentStatusDetailsWidget(0),
|
2013-03-22 14:14:21 +01:00
|
|
|
m_opacityEffect(new QGraphicsOpacityEffect(this)),
|
|
|
|
|
m_progressViewPinned(false),
|
|
|
|
|
m_hovered(false)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
m_progressView = new ProgressView;
|
2013-03-22 14:14:21 +01:00
|
|
|
// withDelay, so the statusBarWidget has the chance to get the enter event
|
|
|
|
|
connect(m_progressView, SIGNAL(hoveredChanged(bool)), this, SLOT(updateVisibilityWithDelay()));
|
2012-01-24 15:36:40 +01:00
|
|
|
connect(ICore::instance(), SIGNAL(coreAboutToClose()), this, SLOT(cancelAllRunningTasks()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 13:54:45 +01:00
|
|
|
ProgressManagerPrivate::~ProgressManagerPrivate()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-04-09 14:22:28 +02:00
|
|
|
qDeleteAll(m_taskList);
|
|
|
|
|
m_taskList.clear();
|
2013-03-22 14:14:21 +01:00
|
|
|
ExtensionSystem::PluginManager::removeObject(m_statusBarWidgetContainer);
|
|
|
|
|
delete m_statusBarWidgetContainer;
|
2009-11-30 19:38:02 +01:00
|
|
|
cleanup();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2013-05-27 10:38:49 +02:00
|
|
|
void ProgressManagerPrivate::readSettings()
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = ICore::settings();
|
|
|
|
|
settings->beginGroup(QLatin1String(kSettingsGroup));
|
|
|
|
|
m_progressViewPinned = settings->value(QLatin1String(kDetailsPinned), true).toBool();
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-22 14:14:21 +01:00
|
|
|
void ProgressManagerPrivate::init()
|
|
|
|
|
{
|
2013-05-27 10:38:49 +02:00
|
|
|
readSettings();
|
|
|
|
|
|
2013-03-22 14:14:21 +01:00
|
|
|
m_statusBarWidgetContainer = new Core::StatusBarWidget;
|
|
|
|
|
m_statusBarWidget = new QWidget;
|
|
|
|
|
QHBoxLayout *layout = new QHBoxLayout(m_statusBarWidget);
|
|
|
|
|
layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
layout->setSpacing(0);
|
|
|
|
|
m_statusBarWidget->setLayout(layout);
|
2013-04-08 15:02:30 +02:00
|
|
|
m_summaryProgressWidget = new QWidget(m_statusBarWidget);
|
|
|
|
|
m_summaryProgressWidget->setVisible(!m_progressViewPinned);
|
|
|
|
|
m_summaryProgressWidget->setGraphicsEffect(m_opacityEffect);
|
|
|
|
|
m_summaryProgressLayout = new QHBoxLayout(m_summaryProgressWidget);
|
|
|
|
|
m_summaryProgressLayout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
m_summaryProgressLayout->setSpacing(0);
|
|
|
|
|
m_summaryProgressWidget->setLayout(m_summaryProgressLayout);
|
|
|
|
|
m_summaryProgressBar = new ProgressBar(m_summaryProgressWidget);
|
2013-03-22 14:14:21 +01:00
|
|
|
m_summaryProgressBar->setMinimumWidth(70);
|
|
|
|
|
m_summaryProgressBar->setTitleVisible(false);
|
|
|
|
|
m_summaryProgressBar->setSeparatorVisible(false);
|
|
|
|
|
m_summaryProgressBar->setCancelEnabled(false);
|
2013-04-08 15:02:30 +02:00
|
|
|
m_summaryProgressLayout->addWidget(m_summaryProgressBar);
|
|
|
|
|
layout->addWidget(m_summaryProgressWidget);
|
2013-03-22 14:14:21 +01:00
|
|
|
ToggleButton *toggleButton = new ToggleButton(m_statusBarWidget);
|
|
|
|
|
layout->addWidget(toggleButton);
|
|
|
|
|
m_statusBarWidgetContainer->setWidget(m_statusBarWidget);
|
|
|
|
|
m_statusBarWidgetContainer->setPosition(Core::StatusBarWidget::RightCorner);
|
|
|
|
|
ExtensionSystem::PluginManager::addObject(m_statusBarWidgetContainer);
|
|
|
|
|
m_statusBarWidget->installEventFilter(this);
|
|
|
|
|
|
2013-05-14 16:13:29 +02:00
|
|
|
QAction *toggleProgressView = new QAction(tr("Toggle Progress Details"), this);
|
2013-03-22 14:14:21 +01:00
|
|
|
toggleProgressView->setCheckable(true);
|
|
|
|
|
toggleProgressView->setChecked(m_progressViewPinned);
|
|
|
|
|
// we have to set an transparent icon to prevent the tool button to show text
|
|
|
|
|
QPixmap p(1, 1);
|
|
|
|
|
p.fill(Qt::transparent);
|
|
|
|
|
toggleProgressView->setIcon(QIcon(p));
|
|
|
|
|
Command *cmd = ActionManager::registerAction(toggleProgressView,
|
|
|
|
|
Id("QtCreator.ToggleProgressDetails"),
|
|
|
|
|
Context(Constants::C_GLOBAL));
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Utils::HostOsInfo::isMacHost()
|
|
|
|
|
? tr("Ctrl+Shift+0")
|
|
|
|
|
: tr("Alt+Shift+0")));
|
|
|
|
|
connect(toggleProgressView, SIGNAL(toggled(bool)), this, SLOT(progressDetailsToggled(bool)));
|
|
|
|
|
toggleButton->setDefaultAction(cmd->action());
|
|
|
|
|
|
|
|
|
|
m_progressView->setVisible(m_progressViewPinned);
|
|
|
|
|
|
|
|
|
|
initInternal();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-30 09:22:42 +02:00
|
|
|
void ProgressManagerPrivate::doCancelTasks(const QString &type)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-11-04 16:07:42 +01:00
|
|
|
bool found = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
QMap<QFutureWatcher<void> *, QString>::iterator task = m_runningTasks.begin();
|
|
|
|
|
while (task != m_runningTasks.end()) {
|
|
|
|
|
if (task.value() != type) {
|
|
|
|
|
++task;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2009-11-04 16:07:42 +01:00
|
|
|
found = true;
|
2008-12-02 12:01:29 +01:00
|
|
|
disconnect(task.key(), SIGNAL(finished()), this, SLOT(taskFinished()));
|
2009-11-26 15:51:10 +01:00
|
|
|
if (m_applicationTask == task.key())
|
|
|
|
|
disconnectApplicationTask();
|
2008-12-02 12:01:29 +01:00
|
|
|
task.key()->cancel();
|
|
|
|
|
delete task.key();
|
|
|
|
|
task = m_runningTasks.erase(task);
|
|
|
|
|
}
|
2013-03-22 14:14:21 +01:00
|
|
|
if (found) {
|
|
|
|
|
updateSummaryProgressBar();
|
2009-11-04 16:07:42 +01:00
|
|
|
emit allTasksFinished(type);
|
2013-03-22 14:14:21 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProgressManagerPrivate::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (obj == m_statusBarWidget && event->type() == QEvent::Enter) {
|
|
|
|
|
m_hovered = true;
|
|
|
|
|
updateVisibility();
|
|
|
|
|
} else if (obj == m_statusBarWidget && event->type() == QEvent::Leave) {
|
|
|
|
|
m_hovered = false;
|
|
|
|
|
// give the progress view the chance to get the mouse enter event
|
|
|
|
|
updateVisibilityWithDelay();
|
2013-07-08 13:45:05 +02:00
|
|
|
} else if (obj == m_statusBarWidget && event->type() == QEvent::MouseButtonPress
|
|
|
|
|
&& !m_taskList.isEmpty()) {
|
|
|
|
|
QMouseEvent *me = static_cast<QMouseEvent *>(event);
|
|
|
|
|
if (me->button() == Qt::LeftButton && !me->modifiers()) {
|
|
|
|
|
FutureProgress *progress = m_currentStatusDetailsProgress;
|
|
|
|
|
if (!progress)
|
|
|
|
|
progress = m_taskList.last();
|
|
|
|
|
// don't send signal directly from an event filter, event filters should
|
|
|
|
|
// do as little a possible
|
|
|
|
|
QTimer::singleShot(0, progress, SIGNAL(clicked()));
|
|
|
|
|
event->accept();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-03-22 14:14:21 +01:00
|
|
|
}
|
|
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 13:54:45 +01:00
|
|
|
void ProgressManagerPrivate::cancelAllRunningTasks()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
QMap<QFutureWatcher<void> *, QString>::const_iterator task = m_runningTasks.constBegin();
|
|
|
|
|
while (task != m_runningTasks.constEnd()) {
|
|
|
|
|
disconnect(task.key(), SIGNAL(finished()), this, SLOT(taskFinished()));
|
2009-11-26 15:51:10 +01:00
|
|
|
if (m_applicationTask == task.key())
|
|
|
|
|
disconnectApplicationTask();
|
2008-12-02 12:01:29 +01:00
|
|
|
task.key()->cancel();
|
|
|
|
|
delete task.key();
|
|
|
|
|
++task;
|
|
|
|
|
}
|
|
|
|
|
m_runningTasks.clear();
|
2013-03-22 14:14:21 +01:00
|
|
|
updateSummaryProgressBar();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2013-08-30 09:22:42 +02:00
|
|
|
FutureProgress *ProgressManagerPrivate::doAddTask(const QFuture<void> &future, const QString &title,
|
2009-11-26 15:51:10 +01:00
|
|
|
const QString &type, ProgressFlags flags)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-04-09 14:22:28 +02:00
|
|
|
// watch
|
2008-12-02 12:01:29 +01:00
|
|
|
QFutureWatcher<void> *watcher = new QFutureWatcher<void>();
|
|
|
|
|
m_runningTasks.insert(watcher, type);
|
2013-03-22 14:14:21 +01:00
|
|
|
connect(watcher, SIGNAL(progressRangeChanged(int,int)), this, SLOT(updateSummaryProgressBar()));
|
|
|
|
|
connect(watcher, SIGNAL(progressValueChanged(int)), this, SLOT(updateSummaryProgressBar()));
|
2008-12-02 12:01:29 +01:00
|
|
|
connect(watcher, SIGNAL(finished()), this, SLOT(taskFinished()));
|
2013-04-09 14:22:28 +02:00
|
|
|
watcher->setFuture(future);
|
|
|
|
|
|
|
|
|
|
// handle application task
|
2009-11-26 15:51:10 +01:00
|
|
|
if (flags & ShowInApplicationIcon) {
|
2011-01-04 16:15:15 +01:00
|
|
|
if (m_applicationTask)
|
|
|
|
|
disconnectApplicationTask();
|
2009-11-26 15:51:10 +01:00
|
|
|
m_applicationTask = watcher;
|
2011-01-04 16:15:15 +01:00
|
|
|
setApplicationProgressRange(future.progressMinimum(), future.progressMaximum());
|
|
|
|
|
setApplicationProgressValue(future.progressValue());
|
2009-11-26 15:51:10 +01:00
|
|
|
connect(m_applicationTask, SIGNAL(progressRangeChanged(int,int)),
|
|
|
|
|
this, SLOT(setApplicationProgressRange(int,int)));
|
|
|
|
|
connect(m_applicationTask, SIGNAL(progressValueChanged(int)),
|
|
|
|
|
this, SLOT(setApplicationProgressValue(int)));
|
|
|
|
|
setApplicationProgressVisible(true);
|
|
|
|
|
}
|
2013-04-09 14:22:28 +02:00
|
|
|
|
|
|
|
|
// create FutureProgress and manage task list
|
|
|
|
|
removeOldTasks(type);
|
|
|
|
|
if (m_taskList.size() == 10)
|
|
|
|
|
removeOneOldTask();
|
|
|
|
|
FutureProgress *progress = new FutureProgress;
|
|
|
|
|
progress->setTitle(title);
|
|
|
|
|
progress->setFuture(future);
|
|
|
|
|
|
|
|
|
|
m_progressView->addProgressWidget(progress);
|
|
|
|
|
m_taskList.append(progress);
|
|
|
|
|
progress->setType(type);
|
|
|
|
|
if (flags.testFlag(ProgressManager::KeepOnFinish))
|
|
|
|
|
progress->setKeepOnFinish(FutureProgress::KeepOnFinishTillUserInteraction);
|
|
|
|
|
else
|
|
|
|
|
progress->setKeepOnFinish(FutureProgress::HideOnFinish);
|
|
|
|
|
connect(progress, SIGNAL(hasErrorChanged()), this, SLOT(updateSummaryProgressBar()));
|
|
|
|
|
connect(progress, SIGNAL(removeMe()), this, SLOT(slotRemoveTask()));
|
|
|
|
|
connect(progress, SIGNAL(fadeStarted()), this, SLOT(updateSummaryProgressBar()));
|
2013-04-08 15:02:30 +02:00
|
|
|
connect(progress, SIGNAL(statusBarWidgetChanged()), this, SLOT(updateStatusDetailsWidget()));
|
|
|
|
|
updateStatusDetailsWidget();
|
2013-04-09 14:22:28 +02:00
|
|
|
|
2009-11-04 16:07:42 +01:00
|
|
|
emit taskStarted(type);
|
2013-04-09 14:22:28 +02:00
|
|
|
return progress;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2013-03-22 14:14:21 +01:00
|
|
|
ProgressView *ProgressManagerPrivate::progressView()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return m_progressView;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 13:54:45 +01:00
|
|
|
void ProgressManagerPrivate::taskFinished()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
QObject *taskObject = sender();
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(taskObject, return);
|
2008-12-02 12:01:29 +01:00
|
|
|
QFutureWatcher<void> *task = static_cast<QFutureWatcher<void> *>(taskObject);
|
2009-11-26 15:51:10 +01:00
|
|
|
if (m_applicationTask == task)
|
|
|
|
|
disconnectApplicationTask();
|
2009-11-04 16:07:42 +01:00
|
|
|
QString type = m_runningTasks.value(task);
|
2008-12-02 12:01:29 +01:00
|
|
|
m_runningTasks.remove(task);
|
|
|
|
|
delete task;
|
2013-03-22 14:14:21 +01:00
|
|
|
updateSummaryProgressBar();
|
2009-11-04 16:07:42 +01:00
|
|
|
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (!m_runningTasks.key(type, 0))
|
2009-11-04 16:07:42 +01:00
|
|
|
emit allTasksFinished(type);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-11-26 15:51:10 +01:00
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::disconnectApplicationTask()
|
|
|
|
|
{
|
|
|
|
|
disconnect(m_applicationTask, SIGNAL(progressRangeChanged(int,int)),
|
|
|
|
|
this, SLOT(setApplicationProgressRange(int,int)));
|
|
|
|
|
disconnect(m_applicationTask, SIGNAL(progressValueChanged(int)),
|
|
|
|
|
this, SLOT(setApplicationProgressValue(int)));
|
|
|
|
|
setApplicationProgressVisible(false);
|
|
|
|
|
m_applicationTask = 0;
|
|
|
|
|
}
|
2013-03-22 14:14:21 +01:00
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::updateSummaryProgressBar()
|
|
|
|
|
{
|
2013-04-09 14:22:28 +02:00
|
|
|
m_summaryProgressBar->setError(hasError());
|
2013-03-22 14:14:21 +01:00
|
|
|
updateVisibility();
|
|
|
|
|
if (m_runningTasks.isEmpty()) {
|
|
|
|
|
m_summaryProgressBar->setFinished(true);
|
2013-04-09 14:22:28 +02:00
|
|
|
if (m_taskList.isEmpty() || isLastFading())
|
|
|
|
|
fadeAwaySummaryProgress();
|
2013-03-22 14:14:21 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-09 14:22:28 +02:00
|
|
|
stopFadeOfSummaryProgress();
|
2013-03-22 14:14:21 +01:00
|
|
|
|
|
|
|
|
m_summaryProgressBar->setFinished(false);
|
|
|
|
|
QMapIterator<QFutureWatcher<void> *, QString> it(m_runningTasks);
|
2013-05-24 14:14:35 +02:00
|
|
|
static const int TASK_RANGE = 100;
|
2013-03-22 14:14:21 +01:00
|
|
|
int value = 0;
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
it.next();
|
|
|
|
|
QFutureWatcher<void> *watcher = it.key();
|
|
|
|
|
int min = watcher->progressMinimum();
|
2013-05-24 14:14:35 +02:00
|
|
|
int range = watcher->progressMaximum() - min;
|
|
|
|
|
if (range > 0)
|
|
|
|
|
value += TASK_RANGE * (watcher->progressValue() - min) / range;
|
2013-03-22 14:14:21 +01:00
|
|
|
}
|
2013-05-24 14:14:35 +02:00
|
|
|
m_summaryProgressBar->setRange(0, TASK_RANGE * m_runningTasks.size());
|
2013-03-22 14:14:21 +01:00
|
|
|
m_summaryProgressBar->setValue(value);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-09 14:22:28 +02:00
|
|
|
void ProgressManagerPrivate::fadeAwaySummaryProgress()
|
2013-03-22 14:14:21 +01:00
|
|
|
{
|
2013-04-09 14:22:28 +02:00
|
|
|
stopFadeOfSummaryProgress();
|
2013-03-22 14:14:21 +01:00
|
|
|
m_opacityAnimation = new QPropertyAnimation(m_opacityEffect, "opacity");
|
|
|
|
|
m_opacityAnimation->setDuration(Utils::StyleHelper::progressFadeAnimationDuration);
|
|
|
|
|
m_opacityAnimation->setEndValue(0.);
|
2013-04-09 14:22:28 +02:00
|
|
|
connect(m_opacityAnimation, SIGNAL(finished()), this, SLOT(summaryProgressFinishedFading()));
|
2013-03-22 14:14:21 +01:00
|
|
|
m_opacityAnimation->start(QAbstractAnimation::DeleteWhenStopped);
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-09 14:22:28 +02:00
|
|
|
void ProgressManagerPrivate::stopFadeOfSummaryProgress()
|
2013-03-22 14:14:21 +01:00
|
|
|
{
|
|
|
|
|
if (m_opacityAnimation) {
|
|
|
|
|
m_opacityAnimation->stop();
|
|
|
|
|
m_opacityEffect->setOpacity(1.);
|
|
|
|
|
delete m_opacityAnimation;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-09 14:22:28 +02:00
|
|
|
bool ProgressManagerPrivate::hasError() const
|
|
|
|
|
{
|
|
|
|
|
foreach (FutureProgress *progress, m_taskList)
|
|
|
|
|
if (progress->hasError())
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProgressManagerPrivate::isLastFading() const
|
|
|
|
|
{
|
|
|
|
|
if (m_taskList.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
foreach (FutureProgress *progress, m_taskList) {
|
|
|
|
|
if (!progress->isFading()) // we still have progress bars that are not fading
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::slotRemoveTask()
|
|
|
|
|
{
|
|
|
|
|
FutureProgress *progress = qobject_cast<FutureProgress *>(sender());
|
|
|
|
|
QTC_ASSERT(progress, return);
|
|
|
|
|
QString type = progress->type();
|
|
|
|
|
removeTask(progress);
|
|
|
|
|
removeOldTasks(type, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::removeOldTasks(const QString &type, bool keepOne)
|
|
|
|
|
{
|
|
|
|
|
bool firstFound = !keepOne; // start with false if we want to keep one
|
|
|
|
|
QList<FutureProgress *>::iterator i = m_taskList.end();
|
|
|
|
|
while (i != m_taskList.begin()) {
|
|
|
|
|
--i;
|
|
|
|
|
if ((*i)->type() == type) {
|
|
|
|
|
if (firstFound && ((*i)->future().isFinished() || (*i)->future().isCanceled())) {
|
|
|
|
|
deleteTask(*i);
|
|
|
|
|
i = m_taskList.erase(i);
|
|
|
|
|
}
|
|
|
|
|
firstFound = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-04-08 15:02:30 +02:00
|
|
|
updateSummaryProgressBar();
|
|
|
|
|
updateStatusDetailsWidget();
|
2013-04-09 14:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::removeOneOldTask()
|
|
|
|
|
{
|
|
|
|
|
if (m_taskList.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
// look for oldest ended process
|
|
|
|
|
for (QList<FutureProgress *>::iterator i = m_taskList.begin(); i != m_taskList.end(); ++i) {
|
|
|
|
|
if ((*i)->future().isFinished()) {
|
|
|
|
|
deleteTask(*i);
|
|
|
|
|
i = m_taskList.erase(i);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// no ended process, look for a task type with multiple running tasks and remove the oldest one
|
|
|
|
|
for (QList<FutureProgress *>::iterator i = m_taskList.begin(); i != m_taskList.end(); ++i) {
|
|
|
|
|
QString type = (*i)->type();
|
|
|
|
|
|
|
|
|
|
int taskCount = 0;
|
|
|
|
|
foreach (FutureProgress *p, m_taskList)
|
|
|
|
|
if (p->type() == type)
|
|
|
|
|
++taskCount;
|
|
|
|
|
|
|
|
|
|
if (taskCount > 1) { // don't care for optimizations it's only a handful of entries
|
|
|
|
|
deleteTask(*i);
|
|
|
|
|
i = m_taskList.erase(i);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// no ended process, no type with multiple processes, just remove the oldest task
|
|
|
|
|
FutureProgress *task = m_taskList.takeFirst();
|
|
|
|
|
deleteTask(task);
|
2013-04-08 15:02:30 +02:00
|
|
|
updateSummaryProgressBar();
|
|
|
|
|
updateStatusDetailsWidget();
|
2013-04-09 14:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::removeTask(FutureProgress *task)
|
|
|
|
|
{
|
|
|
|
|
m_taskList.removeAll(task);
|
|
|
|
|
deleteTask(task);
|
2013-04-08 15:02:30 +02:00
|
|
|
updateSummaryProgressBar();
|
|
|
|
|
updateStatusDetailsWidget();
|
2013-04-09 14:22:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::deleteTask(FutureProgress *progress)
|
|
|
|
|
{
|
|
|
|
|
m_progressView->removeProgressWidget(progress);
|
|
|
|
|
progress->hide();
|
|
|
|
|
progress->deleteLater();
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-22 14:14:21 +01:00
|
|
|
void ProgressManagerPrivate::updateVisibility()
|
|
|
|
|
{
|
|
|
|
|
m_progressView->setVisible(m_progressViewPinned || m_hovered || m_progressView->isHovered());
|
2013-04-08 15:02:30 +02:00
|
|
|
m_summaryProgressWidget->setVisible((!m_runningTasks.isEmpty() || !m_taskList.isEmpty())
|
2013-03-22 14:14:21 +01:00
|
|
|
&& !m_progressViewPinned);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::updateVisibilityWithDelay()
|
|
|
|
|
{
|
|
|
|
|
QTimer::singleShot(150, this, SLOT(updateVisibility()));
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-08 15:02:30 +02:00
|
|
|
void ProgressManagerPrivate::updateStatusDetailsWidget()
|
|
|
|
|
{
|
|
|
|
|
QWidget *candidateWidget = 0;
|
|
|
|
|
// get newest progress with a status bar widget
|
|
|
|
|
QList<FutureProgress *>::iterator i = m_taskList.end();
|
|
|
|
|
while (i != m_taskList.begin()) {
|
|
|
|
|
--i;
|
|
|
|
|
candidateWidget = (*i)->statusBarWidget();
|
2013-07-08 13:45:05 +02:00
|
|
|
if (candidateWidget) {
|
|
|
|
|
m_currentStatusDetailsProgress = *i;
|
2013-04-08 15:02:30 +02:00
|
|
|
break;
|
2013-07-08 13:45:05 +02:00
|
|
|
}
|
2013-04-08 15:02:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (candidateWidget == m_currentStatusDetailsWidget)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (m_currentStatusDetailsWidget) {
|
|
|
|
|
m_currentStatusDetailsWidget->hide();
|
|
|
|
|
m_summaryProgressLayout->removeWidget(m_currentStatusDetailsWidget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (candidateWidget) {
|
|
|
|
|
m_summaryProgressLayout->insertWidget(0, candidateWidget);
|
|
|
|
|
candidateWidget->show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_currentStatusDetailsWidget = candidateWidget;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-09 14:22:28 +02:00
|
|
|
void ProgressManagerPrivate::summaryProgressFinishedFading()
|
2013-03-22 14:14:21 +01:00
|
|
|
{
|
2013-04-08 15:02:30 +02:00
|
|
|
m_summaryProgressWidget->setVisible(false);
|
2013-03-22 14:14:21 +01:00
|
|
|
m_opacityEffect->setOpacity(1.);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManagerPrivate::progressDetailsToggled(bool checked)
|
|
|
|
|
{
|
|
|
|
|
m_progressViewPinned = checked;
|
|
|
|
|
updateVisibility();
|
2013-05-27 10:38:49 +02:00
|
|
|
|
|
|
|
|
QSettings *settings = ICore::settings();
|
|
|
|
|
settings->beginGroup(QLatin1String(kSettingsGroup));
|
|
|
|
|
settings->setValue(QLatin1String(kDetailsPinned), m_progressViewPinned);
|
|
|
|
|
settings->endGroup();
|
2013-03-22 14:14:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ToggleButton::ToggleButton(QWidget *parent)
|
|
|
|
|
: QToolButton(parent)
|
|
|
|
|
{
|
|
|
|
|
setToolButtonStyle(Qt::ToolButtonIconOnly);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSize ToggleButton::sizeHint() const
|
|
|
|
|
{
|
|
|
|
|
return QSize(12, 12);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ToggleButton::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QToolButton::paintEvent(event);
|
|
|
|
|
QPainter p(this);
|
|
|
|
|
QStyle *s = style();
|
|
|
|
|
QStyleOption arrowOpt;
|
|
|
|
|
arrowOpt.initFrom(this);
|
|
|
|
|
arrowOpt.rect = QRect(rect().center().x() - 3, rect().center().y() - 6, 9, 9);
|
|
|
|
|
s->drawPrimitive(QStyle::PE_IndicatorArrowUp, &arrowOpt, &p, this);
|
|
|
|
|
}
|
2013-08-30 09:22:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
static ProgressManager *m_instance = 0;
|
|
|
|
|
|
2013-08-30 15:10:49 +02:00
|
|
|
ProgressManager::ProgressManager()
|
2013-08-30 09:22:42 +02:00
|
|
|
{
|
|
|
|
|
m_instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProgressManager::~ProgressManager()
|
|
|
|
|
{
|
|
|
|
|
m_instance = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QObject *ProgressManager::instance()
|
|
|
|
|
{
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FutureProgress *ProgressManager::addTask(const QFuture<void> &future, const QString &title, const QString &type, ProgressFlags flags)
|
|
|
|
|
{
|
|
|
|
|
return m_instance->doAddTask(future, title, type, flags);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManager::setApplicationLabel(const QString &text)
|
|
|
|
|
{
|
|
|
|
|
m_instance->doSetApplicationLabel(text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProgressManager::cancelTasks(const QString &type)
|
|
|
|
|
{
|
|
|
|
|
m_instance->doCancelTasks(type);
|
|
|
|
|
}
|