OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / git / gitorious / gitoriousprojectwizardpage.cpp
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 #include "gitoriousprojectwizardpage.h"
34 #include "gitoriousprojectwidget.h"
35 #include "gitorioushostwizardpage.h"
36 #include "gitorious.h"
37
38 #include <utils/qtcassert.h>
39
40 #include <QtGui/QStackedWidget>
41 #include <QtGui/QVBoxLayout>
42
43 namespace Gitorious {
44 namespace Internal {
45
46 GitoriousProjectWizardPage::GitoriousProjectWizardPage(const GitoriousHostWizardPage *hostPage,
47                                                        QWidget *parent) :
48     QWizardPage(parent),
49     m_hostPage(hostPage),
50     m_stackedWidget(new QStackedWidget),
51     m_isValid(false)
52 {
53     QVBoxLayout *lt = new QVBoxLayout;
54     lt->addWidget(m_stackedWidget);
55     setLayout(lt);
56     setTitle(tr("Project"));
57 }
58
59 static inline QString msgChooseProject(const QString &h)
60 {
61     return GitoriousProjectWizardPage::tr("Choose a project from '%1'").arg((h));
62 }
63
64 QString GitoriousProjectWizardPage::selectedHostName() const
65 {
66     if (const GitoriousProjectWidget *w = currentProjectWidget())
67         return w->hostName();
68     return QString();
69 }
70
71 void GitoriousProjectWizardPage::initializePage()
72 {
73     // Try to find the page by hostindex
74     const int hostIndex = m_hostPage->selectedHostIndex();
75     const QString hostName = Gitorious::instance().hostName(hostIndex);
76     const int existingStackIndex = stackIndexOf(hostName);
77     // Found? - pop up that page
78     if (existingStackIndex != -1) {
79         m_stackedWidget->setCurrentIndex(existingStackIndex);
80         setSubTitle(msgChooseProject(hostName));
81         return;
82     }
83     // Add a new page
84     GitoriousProjectWidget *widget = new GitoriousProjectWidget(hostIndex);
85     connect(widget, SIGNAL(validChanged()), this, SLOT(slotCheckValid()));
86     m_stackedWidget->addWidget(widget);
87     m_stackedWidget->setCurrentIndex(m_stackedWidget->count() - 1);
88     setSubTitle(msgChooseProject(widget->hostName()));
89     slotCheckValid();
90 }
91
92 bool GitoriousProjectWizardPage::isComplete() const
93 {
94     return m_isValid;
95 }
96
97 void GitoriousProjectWizardPage::slotCheckValid()
98 {
99     const GitoriousProjectWidget *w = currentProjectWidget();
100     const bool isValid = w ? w->isValid() : false;
101     if (isValid != m_isValid) {
102         m_isValid = isValid;
103         emit completeChanged();
104     }
105 }
106
107 QSharedPointer<GitoriousProject> GitoriousProjectWizardPage::project() const
108 {
109     if (const GitoriousProjectWidget *w = currentProjectWidget())
110         return w->project();
111     return QSharedPointer<GitoriousProject>();
112 }
113
114 GitoriousProjectWidget *GitoriousProjectWizardPage::projectWidgetAt(int index) const
115 {
116     return qobject_cast<GitoriousProjectWidget *>(m_stackedWidget->widget(index));
117 }
118
119 GitoriousProjectWidget *GitoriousProjectWizardPage::currentProjectWidget() const
120 {
121     const int index = m_stackedWidget->currentIndex();
122     if (index < 0)
123         return 0;
124     return projectWidgetAt(index);
125 }
126
127 // Convert a host name to a stack index.
128 int GitoriousProjectWizardPage::stackIndexOf(const QString &hostName) const
129 {
130     const int count = m_stackedWidget->count();
131     for(int i = 0; i < count; i++)
132         if (projectWidgetAt(i)->hostName() == hostName)
133             return i;
134     return -1;
135 }
136
137 } // namespace Internal
138 } // namespace Gitorious