2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01: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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at qt-sales@nokia.com.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef TASKWINDOW_H
|
|
|
|
|
#define TASKWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include "buildparserinterface.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/ioutputpane.h>
|
2008-12-03 21:50:31 +01:00
|
|
|
#include <coreplugin/icontext.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include <QtGui/QTreeWidget>
|
|
|
|
|
#include <QtGui/QStyledItemDelegate>
|
|
|
|
|
#include <QtGui/QListView>
|
|
|
|
|
#include <QtGui/QToolButton>
|
|
|
|
|
|
|
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class TaskModel;
|
|
|
|
|
class TaskView;
|
2008-12-03 21:50:31 +01:00
|
|
|
class TaskWindowContext;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
class TaskWindow : public Core::IOutputPane
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
TaskWindow();
|
|
|
|
|
~TaskWindow();
|
|
|
|
|
|
|
|
|
|
QWidget *outputWidget(QWidget *);
|
2009-04-07 16:59:48 +02:00
|
|
|
QList<QWidget*> toolBarWidgets() const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-09 17:04:50 +01:00
|
|
|
QString name() const { return tr("Build Issues"); }
|
2008-12-02 12:01:29 +01:00
|
|
|
int priorityInStatusBar() const;
|
|
|
|
|
void clearContents();
|
|
|
|
|
void visibilityChanged(bool visible);
|
|
|
|
|
|
|
|
|
|
void addItem(BuildParserInterface::PatternType type,
|
|
|
|
|
const QString &description, const QString &file, int line);
|
|
|
|
|
|
|
|
|
|
int numberOfTasks() const;
|
|
|
|
|
int numberOfErrors() const;
|
|
|
|
|
|
|
|
|
|
void gotoFirstError();
|
|
|
|
|
bool canFocus();
|
|
|
|
|
bool hasFocus();
|
|
|
|
|
void setFocus();
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void tasksChanged();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void showTaskInFile(const QModelIndex &index);
|
2008-12-03 21:50:31 +01:00
|
|
|
void copy();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
int sizeHintForColumn(int column) const;
|
|
|
|
|
|
|
|
|
|
int m_errorCount;
|
|
|
|
|
int m_currentTask;
|
|
|
|
|
|
|
|
|
|
TaskModel *m_model;
|
|
|
|
|
TaskView *m_listview;
|
2008-12-03 21:50:31 +01:00
|
|
|
TaskWindowContext *m_taskWindowContext;
|
|
|
|
|
QAction *m_copyAction;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TaskView : public QListView
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TaskView(QWidget *parent = 0);
|
|
|
|
|
~TaskView();
|
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TaskDelegate : public QStyledItemDelegate
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
TaskDelegate(QObject * parent = 0);
|
|
|
|
|
~TaskDelegate();
|
|
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
|
|
|
|
|
|
// TaskView uses this method if the size of the taskview changes
|
|
|
|
|
void emitSizeHintChanged(const QModelIndex &index);
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void currentChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void generateGradientPixmap(int width, int height, QColor color, bool selected) const;
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-03 21:50:31 +01:00
|
|
|
class TaskWindowContext : public Core::IContext
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TaskWindowContext(QWidget *widget);
|
|
|
|
|
virtual QList<int> context() const;
|
|
|
|
|
virtual QWidget *widget();
|
|
|
|
|
private:
|
|
|
|
|
QWidget *m_taskList;
|
|
|
|
|
QList<int> m_context;
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
} //namespace Internal
|
|
|
|
|
} //namespace ProjectExplorer
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
#endif // TASKWINDOW_H
|