OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / git / gitorious / gitoriousprojectwidget.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 (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #ifndef GITORIOUSPROJECTWIDGET_H
34 #define GITORIOUSPROJECTWIDGET_H
35
36 #include <QtCore/QSharedPointer>
37 #include <QtGui/QWidget>
38
39 QT_BEGIN_NAMESPACE
40 class QStandardItemModel;
41 class QStandardItem;
42 class QModelIndex;
43 class QSortFilterProxyModel;
44 QT_END_NAMESPACE
45
46 namespace Gitorious {
47 namespace Internal {
48
49 class GitoriousHostWizardPage;
50 struct GitoriousProject;
51
52 namespace Ui {
53     class GitoriousProjectWidget;
54 }
55
56 /* Let the user select a project from a host. Displays name and description
57  * with tooltip and info button that opens URLs contained in the description.
58  * Connects to the signals of Gitorious and updates the project list as the
59  * it receives the projects. isValid() and signal validChanged are
60  * provided for use in a QWizardPage. Host matching happens via name as the
61  * hostIndex might change due to deleting hosts. */
62 class GitoriousProjectWidget : public QWidget {
63     Q_OBJECT
64 public:
65     explicit GitoriousProjectWidget(int hostIndex,
66                                     QWidget *parent = 0);
67     ~GitoriousProjectWidget();
68
69     virtual bool isValid() const;
70
71     QSharedPointer<GitoriousProject> project() const;
72
73     QString hostName() const { return m_hostName; }
74     int hostIndex() const;
75
76     // Utility to set description column and tooltip for a row from a free
77     // format/HTMLish gitorious description. Make sure the description is
78     // just one row for the item and set a tooltip with full contents.
79     // If desired, extract an URL.
80     static void setDescription(const QString &description,
81                                int descriptionColumn,
82                                QList<QStandardItem *> *items,
83                                QString *url = 0);
84
85 signals:
86     void validChanged();
87
88 public slots:
89     void grabFocus();
90
91 private slots:
92     void slotCurrentChanged(const QModelIndex &current, const QModelIndex &previous);
93     void slotInfo();
94     void slotUpdateProjects(int hostIndex);
95     void slotUpdateCheckBoxChanged(int);
96
97 protected:
98     void changeEvent(QEvent *e);
99
100 private:
101     QStandardItem *itemFromIndex(const QModelIndex &idx) const;
102     QStandardItem *currentItem() const;
103
104     const QString m_hostName;
105
106     Ui::GitoriousProjectWidget *ui;
107     const GitoriousHostWizardPage *m_hostPage;
108     QStandardItemModel *m_model;
109     QSortFilterProxyModel *m_filterModel;
110     bool m_valid;
111 };
112
113
114 } // namespace Internal
115 } // namespace Gitorious
116 #endif // GITORIOUSPROJECTWIDGET_H