summaryrefslogtreecommitdiff
path: root/src/plugins/qt4projectmanager/speinfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/qt4projectmanager/speinfo.h')
-rw-r--r--src/plugins/qt4projectmanager/speinfo.h116
1 files changed, 116 insertions, 0 deletions
diff --git a/src/plugins/qt4projectmanager/speinfo.h b/src/plugins/qt4projectmanager/speinfo.h
new file mode 100644
index 0000000000..4f5634a3b9
--- /dev/null
+++ b/src/plugins/qt4projectmanager/speinfo.h
@@ -0,0 +1,116 @@
+/***************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Qt Software Information (qt-info@nokia.com)
+**
+**
+** Non-Open Source Usage
+**
+** Licensees may use this file in accordance with the Qt Beta Version
+** License Agreement, Agreement version 2.2 provided with the Software or,
+** alternatively, in accordance with the terms contained in a written
+** agreement between you and Nokia.
+**
+** GNU General Public License Usage
+**
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License versions 2.0 or 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the packaging
+** of this file. Please review the following information to ensure GNU
+** General Public Licensing requirements will be met:
+**
+** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt GPL Exception version
+** 1.2, included in the file GPL_EXCEPTION.txt in this package.
+**
+***************************************************************************/
+#ifndef SIMPLEPROEDITORINFO_H
+#define SIMPLEPROEDITORINFO_H
+
+#include <QtGui/QPixmap>
+#include <QVariant>
+#include <QtCore/QHash>
+
+namespace Qt4ProjectManager {
+namespace Internal {
+
+class SPEInfoItem
+{
+public:
+ enum InfoKind {
+ Configuration,
+ Platform,
+ Variable,
+ QtModule,
+ Template,
+ Operator
+ };
+
+ SPEInfoItem(const QString &id, InfoKind kind);
+ virtual ~SPEInfoItem() {}
+
+ QString id(void) const;
+ InfoKind infoKind(void) const;
+ virtual QString name(void) const;
+ virtual QString description(void) const;
+ QVariant data(const QString &key) const;
+ const SPEInfoItem *parentItem(void) const;
+ void setParentItem(const SPEInfoItem *parentItem);
+
+ bool isAncestorOf(const SPEInfoItem *ancestor) const;
+
+ static const QString keyType;
+ static const QString valueFile;
+ static const QString valuePath;
+ static const QString keyIncludedByDefault;
+ static const QString keyImageFileName;
+
+protected:
+ QHash<QString, QVariant> m_data;
+
+private:
+ QString m_id;
+ InfoKind m_infoKind;
+ QPixmap m_image;
+ const class SPEInfoItem *m_parentItem;
+};
+
+class SPEInfo
+{
+public:
+ ~SPEInfo();
+
+ static const QList<SPEInfoItem*> *list(SPEInfoItem::InfoKind kind);
+ static const SPEInfoItem *defaultInfoOfKind(SPEInfoItem::InfoKind kind);
+ static const SPEInfoItem *platformInfoForId(const QString &id);
+ static const SPEInfoItem *configurationInfoForId(const QString &id);
+ static const SPEInfoItem *infoOfKindForId(SPEInfoItem::InfoKind kind,
+ const QString &id, const SPEInfoItem *defaultInfoItem = NULL);
+
+private:
+ static void addListToHash(const QList<SPEInfoItem*> &list);
+ static void initializeLists(void);
+ static void deleteLists(void);
+
+ static QList<SPEInfoItem*> m_configurationList;
+ static QList<SPEInfoItem*> m_platformList;
+ static QList<SPEInfoItem*> m_variableList;
+ static QList<SPEInfoItem*> m_qtmoduleList;
+ static QList<SPEInfoItem*> m_templateList;
+ static QList<SPEInfoItem*> m_operatorList;
+
+ static QHash<QPair<SPEInfoItem::InfoKind, QString> ,SPEInfoItem* > m_itemHash;
+
+ static bool m_listsInitialized;
+};
+
+} //namespace Internal
+} //namespace Qt4ProjectManager
+
+#endif