OSDN Git Service

a9346251ddcae6bb44592c27eb038b9dc2af2380
[qt-creator-jp/qt-creator-jp.git] / src / plugins / git / gitorious / gitoriousclonewizard.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 #include "gitoriousclonewizard.h"
35 #include "gitorioushostwizardpage.h"
36 #include "gitoriousprojectwizardpage.h"
37 #include "gitoriousrepositorywizardpage.h"
38 #include "clonewizardpage.h"
39
40 #include <vcsbase/checkoutjobs.h>
41 #include <vcsbase/vcsbaseconstants.h>
42 #include <utils/qtcassert.h>
43
44 #include <QtCore/QUrl>
45 #include <QtGui/QIcon>
46
47 namespace Gitorious {
48 namespace Internal {
49
50 //  GitoriousCloneWizardPage: A git clone page taking its URL from the
51 //  projects page.
52
53 class GitoriousCloneWizardPage : public Git::CloneWizardPage {
54 public:
55     explicit GitoriousCloneWizardPage(const GitoriousRepositoryWizardPage *rp, QWidget *parent = 0);
56     virtual void initializePage();
57
58 private:
59     const GitoriousRepositoryWizardPage *m_repositoryPage;
60 };
61
62 GitoriousCloneWizardPage::GitoriousCloneWizardPage(const GitoriousRepositoryWizardPage *rp, QWidget *parent) :
63     Git::CloneWizardPage(parent),
64     m_repositoryPage(rp)
65 {
66 }
67
68 void GitoriousCloneWizardPage::initializePage()
69 {
70     setRepository(m_repositoryPage->repositoryURL().toString());
71 }
72
73 // -------- GitoriousCloneWizard
74 GitoriousCloneWizard::GitoriousCloneWizard(QObject *parent) :
75         VCSBase::BaseCheckoutWizard(parent)
76 {
77     setId(QLatin1String(VCSBase::Constants::VCS_ID_GIT));
78 }
79
80 QIcon GitoriousCloneWizard::icon() const
81 {
82     return QIcon(QLatin1String(":/git/images/gitorious.png"));
83 }
84
85 QString GitoriousCloneWizard::description() const
86 {
87     return tr("Clones a Gitorious repository and tries to load the contained project.");
88 }
89
90 QString GitoriousCloneWizard::displayName() const
91 {
92     return tr("Gitorious Repository Clone");
93 }
94
95 QList<QWizardPage*> GitoriousCloneWizard::createParameterPages(const QString &path)
96 {
97     GitoriousHostWizardPage *hostPage = new GitoriousHostWizardPage;
98     GitoriousProjectWizardPage *projectPage = new GitoriousProjectWizardPage(hostPage);
99     GitoriousRepositoryWizardPage *repoPage = new GitoriousRepositoryWizardPage(projectPage);
100     GitoriousCloneWizardPage *clonePage = new GitoriousCloneWizardPage(repoPage);
101     clonePage->setPath(path);
102
103     QList<QWizardPage*> rc;
104     rc << hostPage << projectPage << repoPage << clonePage;
105     return rc;
106 }
107
108 QSharedPointer<VCSBase::AbstractCheckoutJob> GitoriousCloneWizard::createJob(const QList<QWizardPage*> &parameterPages,
109                                                                     QString *checkoutPath)
110 {
111     const Git::CloneWizardPage *cwp = qobject_cast<const Git::CloneWizardPage *>(parameterPages.back());
112     QTC_ASSERT(cwp, return QSharedPointer<VCSBase::AbstractCheckoutJob>())
113     return cwp->createCheckoutJob(checkoutPath);
114 }
115
116 } // namespace Internal
117 } // namespace Gitorius