OSDN Git Service

7f36815bef4d126b0a6e27c49730613cbf512446
[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 (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 GITORIOUSPROJECTWIDGET_H
35 #define GITORIOUSPROJECTWIDGET_H
36
37 #include <QtCore/QSharedPointer>
38 #include <QtGui/QWidget>
39
40 QT_BEGIN_NAMESPACE
41 class QStandardItemModel;
42 class QStandardItem;
43 class QModelIndex;
44 class QSortFilterProxyModel;
45 QT_END_NAMESPACE
46
47 namespace Gitorious {
48 namespace Internal {
49
50 class GitoriousHostWizardPage;
51 struct GitoriousProject;
52
53 namespace Ui {
54     class GitoriousProjectWidget;
55 }
56
57 /* Let the user select a project from a host. Displays name and description
58  * with tooltip and info button that opens URLs contained in the description.
59  * Connects to the signals of Gitorious and updates the project list as the
60  * it receives the projects. isValid() and signal validChanged are
61  * provided for use in a QWizardPage. Host matching happens via name as the
62  * hostIndex might change due to deleting hosts. */
63 class GitoriousProjectWidget : public QWidget {
64     Q_OBJECT
65 public:
66     explicit GitoriousProjectWidget(int hostIndex,
67                                     QWidget *parent = 0);
68     ~GitoriousProjectWidget();
69
70     virtual bool isValid() const;
71
72     QSharedPointer<GitoriousProject> project() const;
73
74     QString hostName() const { return m_hostName; }
75     int hostIndex() const;
76
77     // Utility to set description column and tooltip for a row from a free
78     // format/HTMLish gitorious description. Make sure the description is
79     // just one row for the item and set a tooltip with full contents.
80     // If desired, extract an URL.
81     static void setDescription(const QString &description,
82                                int descriptionColumn,
83                                QList<QStandardItem *> *items,
84                                QString *url = 0);
85
86 signals:
87     void validChanged();
88
89 public slots:
90     void grabFocus();
91
92 private slots:
93     void slotCurrentChanged(const QModelIndex &current, const QModelIndex &previous);
94     void slotInfo();
95     void slotUpdateProjects(int hostIndex);
96     void slotUpdateCheckBoxChanged(int);
97
98 protected:
99     void changeEvent(QEvent *e);
100
101 private:
102     QStandardItem *itemFromIndex(const QModelIndex &idx) const;
103     QStandardItem *currentItem() const;
104
105     const QString m_hostName;
106
107     Ui::GitoriousProjectWidget *ui;
108     const GitoriousHostWizardPage *m_hostPage;
109     QStandardItemModel *m_model;
110     QSortFilterProxyModel *m_filterModel;
111     bool m_valid;
112 };
113
114
115 } // namespace Internal
116 } // namespace Gitorious
117 #endif // GITORIOUSPROJECTWIDGET_H