OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / bazaar / pullorpushdialog.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2010 Hugues Delorme
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 "pullorpushdialog.h"
34 #include "ui_pullorpushdialog.h"
35
36
37 using namespace Bazaar::Internal;
38
39 PullOrPushDialog::PullOrPushDialog(Mode mode, QWidget *parent) :
40     QDialog(parent),
41     m_mode(mode),
42     m_ui(new Ui::PullOrPushDialog)
43 {
44     m_ui->setupUi(this);
45     m_ui->localPathChooser->setExpectedKind(Utils::PathChooser::Directory);
46     if (m_mode == PullMode) {
47         this->setWindowTitle(tr("Pull Source"));
48         m_ui->useExistingDirCheckBox->setVisible(false);
49         m_ui->createPrefixCheckBox->setVisible(false);
50     } else {
51         this->setWindowTitle(tr("Push Destination"));
52         m_ui->localCheckBox->setVisible(false);
53     }
54     this->adjustSize();
55 }
56
57 PullOrPushDialog::~PullOrPushDialog()
58 {
59     delete m_ui;
60 }
61
62 QString PullOrPushDialog::branchLocation() const
63 {
64     if (m_ui->defaultButton->isChecked())
65         return QString();
66     if (m_ui->localButton->isChecked())
67         return m_ui->localPathChooser->path();
68     return m_ui->urlLineEdit->text();
69 }
70
71 bool PullOrPushDialog::isRememberOptionEnabled() const
72 {
73     if (m_ui->defaultButton->isChecked())
74         return false;
75     return m_ui->rememberCheckBox->isChecked();
76 }
77
78 bool PullOrPushDialog::isOverwriteOptionEnabled() const
79 {
80     return m_ui->overwriteCheckBox->isChecked();
81 }
82
83 QString PullOrPushDialog::revision() const
84 {
85     return m_ui->revisionLineEdit->text().simplified();
86 }
87
88 bool PullOrPushDialog::isLocalOptionEnabled() const
89 {
90     Q_ASSERT(m_mode == PullMode);
91     return m_ui->localCheckBox->isChecked();
92 }
93
94 bool PullOrPushDialog::isUseExistingDirectoryOptionEnabled() const
95 {
96     Q_ASSERT(m_mode == PushMode);
97     return m_ui->useExistingDirCheckBox->isChecked();
98 }
99
100 bool PullOrPushDialog::isCreatePrefixOptionEnabled() const
101 {
102     Q_ASSERT(m_mode == PushMode);
103     return m_ui->createPrefixCheckBox->isChecked();
104 }
105
106 void PullOrPushDialog::changeEvent(QEvent *e)
107 {
108     QDialog::changeEvent(e);
109     switch (e->type()) {
110     case QEvent::LanguageChange:
111         m_ui->retranslateUi(this);
112         break;
113     default:
114         break;
115     }
116 }