From bd9e6617827818fd043452c08c606f07b78014a0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- cervisia/updatedlg.cpp | 161 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 cervisia/updatedlg.cpp (limited to 'cervisia/updatedlg.cpp') diff --git a/cervisia/updatedlg.cpp b/cervisia/updatedlg.cpp new file mode 100644 index 00000000..9a536763 --- /dev/null +++ b/cervisia/updatedlg.cpp @@ -0,0 +1,161 @@ +/* + * Copyright (C) 1999-2002 Bernd Gehrmann + * bernd@mail.berlios.de + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + +#include "updatedlg.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "misc.h" +#include "cvsservice_stub.h" + + +UpdateDialog::UpdateDialog(CvsService_stub* service, + QWidget *parent, const char *name) + : KDialogBase(parent, name, true, i18n("CVS Update"), + Ok | Cancel, Ok, true), + cvsService(service) +{ + int const iComboBoxMinWidth(40 * fontMetrics().width('0')); + int const iWidgetIndent(style().pixelMetric(QStyle::PM_ExclusiveIndicatorWidth, 0) + 6); + + QFrame* mainWidget = makeMainWidget(); + + QBoxLayout *layout = new QVBoxLayout(mainWidget, 0, spacingHint()); + + bybranch_button = new QRadioButton(i18n("Update to &branch: "), mainWidget); + bybranch_button->setChecked(true); + layout->addWidget(bybranch_button); + + branch_combo = new QComboBox(true, mainWidget); + branch_combo->setMinimumWidth(iComboBoxMinWidth); + + branch_button = new QPushButton(i18n("Fetch &List"), mainWidget); + connect( branch_button, SIGNAL(clicked()), + this, SLOT(branchButtonClicked()) ); + + QBoxLayout *branchedit_layout = new QHBoxLayout(layout); + branchedit_layout->addSpacing(iWidgetIndent); + branchedit_layout->addWidget(branch_combo); + branchedit_layout->addWidget(branch_button); + + bytag_button = new QRadioButton(i18n("Update to &tag: "), mainWidget); + layout->addWidget(bytag_button); + + tag_combo = new QComboBox(true, mainWidget); + tag_combo->setMinimumWidth(iComboBoxMinWidth); + + tag_button = new QPushButton(i18n("Fetch L&ist"), mainWidget); + connect( tag_button, SIGNAL(clicked()), + this, SLOT(tagButtonClicked()) ); + + QBoxLayout *tagedit_layout = new QHBoxLayout(layout); + tagedit_layout->addSpacing(iWidgetIndent); + tagedit_layout->addWidget(tag_combo); + tagedit_layout->addWidget(tag_button); + + bydate_button = new QRadioButton(i18n("Update to &date ('yyyy-mm-dd'):"), mainWidget); + layout->addWidget(bydate_button); + + date_edit = new KLineEdit(mainWidget); + + QBoxLayout *dateedit_layout = new QHBoxLayout(layout); + dateedit_layout->addSpacing(iWidgetIndent); + dateedit_layout->addWidget(date_edit); + + QButtonGroup* group = new QButtonGroup(mainWidget); + group->hide(); + group->insert(bytag_button); + group->insert(bybranch_button); + group->insert(bydate_button); + connect( group, SIGNAL(clicked(int)), + this, SLOT(toggled()) ); + + // dis-/enable the widgets + toggled(); +} + + +bool UpdateDialog::byTag() const +{ + return bybranch_button->isChecked() || bytag_button->isChecked(); +} + + +QString UpdateDialog::tag() const +{ + return bybranch_button->isChecked() + ? branch_combo->currentText() + : tag_combo->currentText(); +} + + +QString UpdateDialog::date() const +{ + return date_edit->text(); +} + + +void UpdateDialog::tagButtonClicked() +{ + tag_combo->clear(); + tag_combo->insertStringList(::fetchTags(cvsService, this)); +} + + +void UpdateDialog::branchButtonClicked() +{ + branch_combo->clear(); + branch_combo->insertStringList(::fetchBranches(cvsService, this)); +} + + +void UpdateDialog::toggled() +{ + bool bytag = bytag_button->isChecked(); + tag_combo->setEnabled(bytag); + tag_button->setEnabled(bytag); + if (bytag) + tag_combo->setFocus(); + + bool bybranch = bybranch_button->isChecked(); + branch_combo->setEnabled(bybranch); + branch_button->setEnabled(bybranch); + if (bybranch) + branch_combo->setFocus(); + + bool bydate = bydate_button->isChecked(); + date_edit->setEnabled(bydate); + if (bydate) + date_edit->setFocus(); +} + +#include "updatedlg.moc" + + +// Local Variables: +// c-basic-offset: 4 +// End: -- cgit v1.2.1