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

165 lines
4.6 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2010-03-05 11:25:49 +01:00
** Copyright (c) 2010 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 "projectexplorer_export.h"
2008-12-02 12:01:29 +01:00
#include <coreplugin/icontext.h>
#include <coreplugin/ioutputpane.h>
2008-12-02 12:01:29 +01:00
#include <QtCore/QModelIndex>
#include <QtGui/QAction>
2008-12-02 12:01:29 +01:00
#include <QtGui/QToolButton>
#include <QtGui/QTextLayout>
2008-12-02 12:01:29 +01:00
namespace ProjectExplorer {
2008-12-02 12:01:29 +01:00
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
} // namespace Internal
struct PROJECTEXPLORER_EXPORT Task {
enum TaskType {
Unknown,
Error,
Warning
};
Task() : type(Unknown), line(-1)
{ }
Task(TaskType type_, const QString &description_,
const QString &file_, int line_, const QString &category_) :
type(type_), description(description_), file(file_), line(line_), category(category_)
{ }
Task(const Task &source) :
type(source.type), description(source.description), file(source.file),
line(source.line), category(source.category), formats(source.formats)
{ }
~Task()
{ }
TaskType type;
QString description;
QString file;
int line;
QString category;
// Having a QList<QTextLayout> in Task
// isn't that great
// It would be cleaner to split up the text into
// the logical hunks and then assemble them again
// (That is diffrent consumers of tasks could show them in
// different ways!)
// But then again, the wording of the text most likely
// doesn't work if you split it up, nor are our parsers
// anywhere near being that good
QList<QTextLayout::FormatRange> formats;
};
class PROJECTEXPLORER_EXPORT TaskWindow : public Core::IOutputPane
2008-12-02 12:01:29 +01:00
{
Q_OBJECT
public:
TaskWindow();
~TaskWindow();
void addCategory(const QString &categoryId, const QString &displayName);
void addTask(const Task &task);
void removeTask(const Task &task);
void clearTasks(const QString &categoryId = QString());
int taskCount(const QString &categoryId = QString()) const;
int errorTaskCount(const QString &categoryId = QString()) const;
// IOutputPane
2008-12-02 12:01:29 +01:00
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);
bool canFocus();
bool hasFocus();
void setFocus();
bool canNavigate();
bool canNext();
bool canPrevious();
void goToNext();
void goToPrev();
QIcon taskTypeIcon(Task::TaskType t) const;
2008-12-02 12:01:29 +01:00
signals:
void tasksChanged();
private slots:
void showTaskInFile(const QModelIndex &index);
void copy();
void vcsAnnotate();
void setShowWarnings(bool);
void updateCategoriesMenu();
void filterCategoryTriggered(QAction *action);
2008-12-02 12:01:29 +01:00
private:
void updateActions();
2008-12-02 12:01:29 +01:00
int sizeHintForColumn(int column) const;
Internal::TaskModel *m_model;
Internal::TaskFilterModel *m_filter;
Internal::TaskView *m_listview;
Internal::TaskWindowContext *m_taskWindowContext;
QAction *m_copyAction;
QAction *m_vcsAnnotateAction;
QToolButton *m_filterWarningsButton;
QToolButton *m_categoriesButton;
QMenu *m_categoriesMenu;
2008-12-02 12:01:29 +01:00
};
bool operator==(const Task &t1, const Task &t2);
uint qHash(const Task &task);
2008-12-02 12:01:29 +01:00
} //namespace ProjectExplorer
Q_DECLARE_METATYPE(ProjectExplorer::Task)
Q_DECLARE_METATYPE(QList<ProjectExplorer::Task>)
2008-12-02 16:19:05 +01:00
#endif // TASKWINDOW_H