summaryrefslogtreecommitdiff
path: root/src/libs/utils/progressindicator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/utils/progressindicator.cpp')
-rw-r--r--src/libs/utils/progressindicator.cpp140
1 files changed, 140 insertions, 0 deletions
diff --git a/src/libs/utils/progressindicator.cpp b/src/libs/utils/progressindicator.cpp
new file mode 100644
index 0000000000..85ce2f1d88
--- /dev/null
+++ b/src/libs/utils/progressindicator.cpp
@@ -0,0 +1,140 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** 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://www.qt.io/licensing. For further information
+** use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** 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
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include "progressindicator.h"
+
+#include "qtcassert.h"
+#include "stylehelper.h"
+
+#include <QEvent>
+#include <QPainter>
+#include <QPixmap>
+
+using namespace Utils;
+
+ProgressIndicator::ProgressIndicator(IndicatorSize size, QWidget *parent)
+ : QWidget(parent),
+ m_rotation(0)
+{
+ setAttribute(Qt::WA_TransparentForMouseEvents);
+ m_timer.setSingleShot(false);
+ connect(&m_timer, &QTimer::timeout, this, &ProgressIndicator::step);
+ setIndicatorSize(size);
+}
+
+static QString imageFileNameForIndicatorSize(ProgressIndicator::IndicatorSize size)
+{
+ switch (size) {
+ case ProgressIndicator::Large:
+ return QLatin1String(":/utils/images/progressindicator_big.png");
+ case ProgressIndicator::Medium:
+ return QLatin1String(":/utils/images/progressindicator_medium.png");
+ case ProgressIndicator::Small:
+ default:
+ return QLatin1String(":/utils/images/progressindicator_small.png");
+ }
+}
+
+void ProgressIndicator::setIndicatorSize(ProgressIndicator::IndicatorSize size)
+{
+ m_size = size;
+ m_rotationStep = size == Small ? 45 : 30;
+ m_timer.setInterval(size == Small ? 100 : 80);
+ m_pixmap.load(StyleHelper::dpiSpecificImageFile(
+ imageFileNameForIndicatorSize(size)));
+ updateGeometry();
+}
+
+ProgressIndicator::IndicatorSize ProgressIndicator::indicatorSize() const
+{
+ return m_size;
+}
+
+QSize ProgressIndicator::sizeHint() const
+{
+ return m_pixmap.size() / m_pixmap.devicePixelRatio();
+}
+
+void ProgressIndicator::attachToWidget(QWidget *parent)
+{
+ if (parentWidget())
+ parentWidget()->removeEventFilter(this);
+ setParent(parent);
+ parent->installEventFilter(this);
+ resizeToParent();
+ raise();
+}
+
+void ProgressIndicator::paintEvent(QPaintEvent *)
+{
+ QPainter p(this);
+ p.setRenderHint(QPainter::SmoothPixmapTransform);
+ QPoint translate(rect().width() / 2, rect().height() / 2);
+ QTransform t;
+ t.translate(translate.x(), translate.y());
+ t.rotate(m_rotation);
+ t.translate(-translate.x(), -translate.y());
+ p.setTransform(t);
+ QSize pixmapUserSize(m_pixmap.size() / m_pixmap.devicePixelRatio());
+ p.drawPixmap(QPoint((rect().width() - pixmapUserSize.width()) / 2,
+ (rect().height() - pixmapUserSize.height()) / 2),
+ m_pixmap);
+}
+
+void ProgressIndicator::showEvent(QShowEvent *)
+{
+ m_timer.start();
+}
+
+void ProgressIndicator::hideEvent(QHideEvent *)
+{
+ m_timer.stop();
+}
+
+bool ProgressIndicator::eventFilter(QObject *obj, QEvent *ev)
+{
+ if (obj == parent() && ev->type() == QEvent::Resize) {
+ resizeToParent();
+ }
+ return QWidget::eventFilter(obj, ev);
+}
+
+void ProgressIndicator::step()
+{
+ m_rotation = (m_rotation + m_rotationStep + 360) % 360;
+ update();
+}
+
+void ProgressIndicator::resizeToParent()
+{
+ QTC_ASSERT(parentWidget(), return);
+ setGeometry(QRect(QPoint(0, 0), parentWidget()->size()));
+}
+