Skip to content
Snippets Groups Projects
Commit edf33c56 authored by hjk's avatar hjk
Browse files

projectexplorer: move OutputFormat to separate file

parent 66fe870b
No related branches found
No related tags found
No related merge requests found
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** No Commercial Usage
**
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** 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.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/
#ifndef OUTPUTFORMAT_H
#define OUTPUTFORMAT_H
namespace ProjectExplorer {
enum OutputFormat
{
NormalMessageFormat,
ErrorMessageFormat,
StdOutFormat,
StdErrFormat,
NumberOfFormats // Keep this entry last.
};
} // namespace ProjectExplorer
#endif // OUTPUTFORMATR_H
...@@ -35,26 +35,20 @@ ...@@ -35,26 +35,20 @@
#define OUTPUTFORMATTER_H #define OUTPUTFORMATTER_H
#include "projectexplorer_export.h" #include "projectexplorer_export.h"
#include "outputformat.h"
#include <QtCore/QObject> #include <QtCore/QObject>
QT_FORWARD_DECLARE_CLASS(QMouseEvent) QT_BEGIN_NAMESPACE
QT_FORWARD_DECLARE_CLASS(QPlainTextEdit) class QMouseEvent;
QT_FORWARD_DECLARE_CLASS(QTextCharFormat) class QPlainTextEdit;
QT_FORWARD_DECLARE_CLASS(QColor) class QTextCharFormat;
class QColor;
QT_END_NAMESPACE
namespace ProjectExplorer { namespace ProjectExplorer {
enum OutputFormat class PROJECTEXPLORER_EXPORT OutputFormatter : public QObject
{
NormalMessageFormat,
ErrorMessageFormat,
StdOutFormat,
StdErrFormat,
NumberOfFormats // Keep this entry last.
};
class PROJECTEXPLORER_EXPORT OutputFormatter: public QObject
{ {
Q_OBJECT Q_OBJECT
......
...@@ -87,6 +87,7 @@ HEADERS += projectexplorer.h \ ...@@ -87,6 +87,7 @@ HEADERS += projectexplorer.h \
buildenvironmentwidget.h \ buildenvironmentwidget.h \
ldparser.h \ ldparser.h \
linuxiccparser.h \ linuxiccparser.h \
outputformat.h \
outputformatter.h \ outputformatter.h \
runconfigurationmodel.h \ runconfigurationmodel.h \
buildconfigurationmodel.h \ buildconfigurationmodel.h \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment