OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / projectexplorer / dependenciespanel.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 DEPENDENCIESDIALOG_H
35 #define DEPENDENCIESDIALOG_H
36
37 #include "iprojectproperties.h"
38
39 #include <QtCore/QAbstractListModel>
40
41 #include <QtGui/QTreeView>
42
43 namespace Utils {
44     class DetailsWidget;
45 }
46
47 namespace ProjectExplorer {
48
49 class Project;
50 class SessionManager;
51
52 namespace Internal {
53
54 const char * const DEPENDENCIES_PANEL_ID("ProjectExplorer.DependenciesPanel");
55
56 class DependenciesWidget;
57
58 class DependenciesPanelFactory : public IProjectPanelFactory
59 {
60 public:
61     DependenciesPanelFactory(SessionManager *session);
62
63     QString id() const;
64     QString displayName() const;
65     bool supports(Project *project);
66     IPropertiesPanel *createPanel(Project *project);
67 private:
68     SessionManager *m_session;
69 };
70
71
72 class DependenciesPanel : public IPropertiesPanel
73 {
74 public:
75     DependenciesPanel(SessionManager *session, Project *project);
76     ~DependenciesPanel();
77     QString displayName() const;
78     QWidget *widget() const;
79     QIcon icon() const;
80
81 private:
82     DependenciesWidget *m_widget;
83     const QIcon m_icon;
84 };
85
86 //
87 // DependenciesModel
88 //
89
90 class DependenciesModel : public QAbstractListModel
91 {
92     Q_OBJECT
93 public:
94     DependenciesModel(SessionManager *session, Project *project, QObject *parent = 0);
95     ~DependenciesModel();
96
97     int rowCount(const QModelIndex &index) const;
98     int columnCount(const QModelIndex &index) const;
99     QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
100     bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
101     Qt::ItemFlags flags(const QModelIndex &index) const;
102
103 public slots:
104     void resetModel();
105
106 private:
107     SessionManager *m_session;
108     Project *m_project;
109     QList<Project *> m_projects;
110 };
111
112 class DependenciesView : public QTreeView
113 {
114     Q_OBJECT
115 public:
116     DependenciesView(QWidget *parent);
117     ~DependenciesView();
118     virtual QSize sizeHint() const;
119     virtual void setModel(QAbstractItemModel *model);
120 private slots:
121     void updateSizeHint();
122 private:
123     QSize m_sizeHint;
124 };
125
126 class DependenciesWidget : public QWidget
127 {
128     Q_OBJECT
129 public:
130     DependenciesWidget(SessionManager *session, Project *project,
131                        QWidget *parent = 0);
132 private:
133     SessionManager *m_session;
134     Project *m_project;
135     DependenciesModel *m_model;
136     Utils::DetailsWidget *m_detailsContainer;
137 };
138
139 } // namespace Internal
140 } // namespace ProjectExplorer
141
142 #endif // DEPENDENCIESDIALOG_H