Files
qt-creator/src/plugins/projectexplorer/taskwindow.h

148 lines
3.8 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** Commercial Usage
**
** 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.
**
** 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 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.
**
** If you are unsure which license is appropriate for your use, please
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
2008-12-02 12:01:29 +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>
#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 TaskFilterModel;
2008-12-02 12:01:29 +01:00
class TaskView;
class TaskWindowContext;
2008-12-02 12:01:29 +01:00
class TaskWindow : public Core::IOutputPane
{
Q_OBJECT
public:
TaskWindow();
~TaskWindow();
QWidget *outputWidget(QWidget *);
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;
bool canFocus();
bool hasFocus();
void setFocus();
bool canNext();
bool canPrevious();
void goToNext();
void goToPrev();
bool canNavigate();
2008-12-02 12:01:29 +01:00
signals:
void tasksChanged();
private slots:
void showTaskInFile(const QModelIndex &index);
void copy();
void setShowWarnings(bool);
2008-12-02 12:01:29 +01:00
private:
int sizeHintForColumn(int column) const;
int m_errorCount;
int m_currentTask;
TaskModel *m_model;
TaskFilterModel *m_filter;
2008-12-02 12:01:29 +01:00
TaskView *m_listview;
TaskWindowContext *m_taskWindowContext;
QAction *m_copyAction;
QToolButton *m_filterWarningsButton;
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 &current, const QModelIndex &previous);
private:
void generateGradientPixmap(int width, int height, QColor color, bool selected) const;
};
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