summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/buildprogress.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@digia.com>2013-04-08 15:02:30 +0200
committerEike Ziller <eike.ziller@digia.com>2013-04-10 14:21:25 +0200
commit920e7ca1f113f1f4ecc204adff51e7254e87a56b (patch)
tree2aeef98ad892193112675a83287fde71ec223990 /src/plugins/projectexplorer/buildprogress.h
parent9e714006eece70447679ed740958ecf5290deb4b (diff)
downloadqt-creator-920e7ca1f113f1f4ecc204adff51e7254e87a56b.tar.gz
Show build and search progress detail also in status bar.
A widget specifically layouted for the status bar can now be registered with the progress information. The newest one is made visible next to the summary progress bar. If a newer one vanishes, the older becomes visible again. Change-Id: Iedf0e88a542ea442ae86fa51c792c68fbc6eef3c Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildprogress.h')
-rw-r--r--src/plugins/projectexplorer/buildprogress.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildprogress.h b/src/plugins/projectexplorer/buildprogress.h
index 2535f5e541..31bf62c873 100644
--- a/src/plugins/projectexplorer/buildprogress.h
+++ b/src/plugins/projectexplorer/buildprogress.h
@@ -44,12 +44,13 @@ class BuildProgress : public QWidget
{
Q_OBJECT
public:
- BuildProgress(TaskWindow *taskWindow);
+ BuildProgress(TaskWindow *taskWindow, Qt::Orientation orientation = Qt::Vertical);
private slots:
void updateState();
private:
+ QWidget *m_contentWidget;
QLabel *m_errorIcon;
QLabel *m_warningIcon;
QLabel *m_errorLabel;