diff --git a/src/plugins/coreplugin/progressmanager/progressmanager.cpp b/src/plugins/coreplugin/progressmanager/progressmanager.cpp index b155834317bebb89fe198937c713483bf13c35a0..fc15be7944f2e4ccb95b48603b770486268d2ede 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager.cpp @@ -46,6 +46,7 @@ #include <QAction> #include <QEvent> #include <QHBoxLayout> +#include <QMouseEvent> #include <QPainter> #include <QPropertyAnimation> #include <QStyle> @@ -379,6 +380,19 @@ bool ProgressManagerPrivate::eventFilter(QObject *obj, QEvent *event) m_hovered = false; // give the progress view the chance to get the mouse enter event updateVisibilityWithDelay(); + } 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; + } } return false; } @@ -643,8 +657,10 @@ void ProgressManagerPrivate::updateStatusDetailsWidget() while (i != m_taskList.begin()) { --i; candidateWidget = (*i)->statusBarWidget(); - if (candidateWidget) + if (candidateWidget) { + m_currentStatusDetailsProgress = *i; break; + } } if (candidateWidget == m_currentStatusDetailsWidget) diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_p.h b/src/plugins/coreplugin/progressmanager/progressmanager_p.h index dabd525a792d3e988d17aef1878288d7a465b3c6..ac99df10332ee47f8046c5c9214dce4a04f8bf12 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_p.h +++ b/src/plugins/coreplugin/progressmanager/progressmanager_p.h @@ -108,6 +108,7 @@ private: QWidget *m_summaryProgressWidget; QHBoxLayout *m_summaryProgressLayout; QWidget *m_currentStatusDetailsWidget; + QPointer<FutureProgress> m_currentStatusDetailsProgress; ProgressBar *m_summaryProgressBar; QGraphicsOpacityEffect *m_opacityEffect; QPointer<QPropertyAnimation> m_opacityAnimation;