OSDN Git Service

b0b56d681c89aa8989abf167a5c644b8a855f850
[qt-creator-jp/qt-creator-jp.git] / src / plugins / git / gitorious / gitorioushostwizardpage.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 (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
35 #include "gitorioushostwizardpage.h"
36 #include "gitorioushostwidget.h"
37 #include "gitorious.h"
38
39 #include <coreplugin/icore.h>
40
41 #include <QtCore/QSettings>
42 #include <QtGui/QVBoxLayout>
43
44 static const char *settingsGroupC = "Gitorious";
45 static const char *selectionKeyC = "/SelectedHost";
46
47 namespace Gitorious {
48 namespace Internal {
49
50 // Ensure Gitorious  is populated and create widget in right order.
51 static GitoriousHostWidget *createHostWidget()
52 {
53     // First time? Populate gitorious from settings.
54     // If there is still no host, add "gitorious.org"
55     Gitorious &gitorious = Gitorious::instance();
56     const QSettings *settings = Core::ICore::instance()->settings();
57     const QString group = QLatin1String(settingsGroupC);
58     if (!gitorious.hostCount()) {
59         gitorious.restoreSettings(group, settings);
60         if (!gitorious.hostCount())
61             gitorious.addHost(Gitorious::gitoriousOrg());
62     }
63     // Now create widget
64     GitoriousHostWidget *rc = new GitoriousHostWidget;
65     // Restore selection
66     const int selectedRow = settings->value(group + QLatin1String(selectionKeyC)).toInt();
67     if (selectedRow >= 0 && selectedRow < gitorious.hostCount())
68         rc->selectRow(selectedRow);
69     return rc;
70 }
71
72 GitoriousHostWizardPage::GitoriousHostWizardPage(QWidget *parent) :
73     QWizardPage(parent),
74     m_widget(createHostWidget())
75 {
76     connect(m_widget, SIGNAL(validChanged()), this, SIGNAL(completeChanged()));
77     QVBoxLayout *lt = new QVBoxLayout;
78     lt->addWidget(m_widget);
79     setLayout(lt);
80     setTitle(tr("Host"));
81     setSubTitle(tr("Select a host."));
82 }
83
84 GitoriousHostWizardPage::~GitoriousHostWizardPage()
85 {
86     // Write out settings + selected row.
87     QSettings *settings = Core::ICore::instance()->settings();
88     if (m_widget->isHostListDirty())
89         Gitorious::instance().saveSettings(QLatin1String(settingsGroupC), settings);
90     if (m_widget->isValid())
91         settings->setValue(QLatin1String(settingsGroupC) + QLatin1String(selectionKeyC), m_widget->selectedRow());
92 }
93
94 bool GitoriousHostWizardPage::isComplete() const
95 {
96     return m_widget->isValid();
97 }
98
99 int GitoriousHostWizardPage::selectedHostIndex() const
100 {
101     return m_widget->selectedRow();
102 }
103
104 } // namespace Internal
105 } // namespace Gitorious