OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / libs / extensionsystem / pluginview.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef PLUGINVIEW_H
35 #define PLUGINVIEW_H
36
37 #include "extensionsystem_global.h"
38
39 #include <QtCore/QHash>
40 #include <QtGui/QWidget>
41 #include <QtGui/QIcon>
42
43 QT_BEGIN_NAMESPACE
44 class QTreeWidgetItem;
45 QT_END_NAMESPACE
46
47 namespace ExtensionSystem {
48
49 class PluginManager;
50 class PluginSpec;
51 class PluginCollection;
52
53 namespace Internal {
54     class PluginViewPrivate;
55 namespace Ui {
56     class PluginView;
57 } // namespace Ui
58 } // namespace Internal
59
60 class EXTENSIONSYSTEM_EXPORT PluginView : public QWidget
61 {
62     Q_OBJECT
63
64 public:
65     explicit PluginView(PluginManager *manager, QWidget *parent = 0);
66     ~PluginView();
67
68     PluginSpec *currentPlugin() const;
69
70 signals:
71     void currentPluginChanged(ExtensionSystem::PluginSpec *spec);
72     void pluginActivated(ExtensionSystem::PluginSpec *spec);
73     void pluginSettingsChanged(ExtensionSystem::PluginSpec *spec);
74
75 private slots:
76     void updatePluginSettings(QTreeWidgetItem *item, int column);
77     void updateList();
78     void selectPlugin(QTreeWidgetItem *current);
79     void activatePlugin(QTreeWidgetItem *item);
80
81 private:
82     enum ParsedState { ParsedNone = 1, ParsedPartial = 2, ParsedAll = 4, ParsedWithErrors = 8};
83     QIcon iconForState(int state);
84     void updatePluginDependencies();
85     int parsePluginSpecs(QTreeWidgetItem *parentItem, Qt::CheckState &groupState, QList<PluginSpec*> plugins);
86
87     Internal::Ui::PluginView *m_ui;
88     Internal::PluginViewPrivate *p;
89     QList<QTreeWidgetItem*> m_items;
90     QHash<PluginSpec*, QTreeWidgetItem*> m_specToItem;
91
92     QStringList m_whitelist;
93     QIcon m_okIcon;
94     QIcon m_errorIcon;
95     QIcon m_notLoadedIcon;
96     bool m_allowCheckStateUpdate;
97
98     const int C_LOAD;
99 };
100
101 } // namespae ExtensionSystem
102
103 #endif // PLUGIN_VIEW_H