/*************************************************************************** * Copyright (C) 2011 by Vishesh Yadav * * * * 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 "renamedialog.h" #include "hgwrapper.h" #include #include #include #include #include #include #include #include #include HgRenameDialog::HgRenameDialog(const KFileItem &source, QWidget *parent): KDialog(parent, Qt::Dialog), m_source(source.name()), m_source_dir(source.url().directory()) { this->setCaption(i18nc("@title:window", "Hg Rename")); this->setButtons(KDialog::Ok | KDialog::Cancel); this->setDefaultButton(KDialog::Ok); this->setButtonText(KDialog::Ok, i18nc("@action:button", "Rename")); QFrame *frame = new QFrame(this); QGridLayout *mainLayout = new QGridLayout(frame); QLabel *sourceLabel = new QLabel(i18nc("@label:label to source file", "Source "), frame); QLabel *sourceFileLabel = new QLabel("" + m_source + ""); mainLayout->addWidget(sourceLabel, 0, 0); mainLayout->addWidget(sourceFileLabel, 0, 1); QLabel *destinationLabel = new QLabel(i18nc("@label:rename", "Rename to "), frame); m_destinationFile = new KLineEdit(m_source, frame); mainLayout->addWidget(destinationLabel, 1, 0); mainLayout->addWidget(m_destinationFile, 1, 1); frame->setLayout(mainLayout); setMainWidget(frame); m_destinationFile->setFocus(); m_destinationFile->selectAll(); connect(m_destinationFile, SIGNAL(textChanged(const QString &)), this, SLOT(slotTextChanged(const QString &))); } void HgRenameDialog::slotTextChanged(const QString &text) { enableButtonOk(text.length() != 0); } void HgRenameDialog::done(int r) { if (r == KDialog::Accepted) { HgWrapper *hgi = HgWrapper::instance(); hgi->renameFile(source(), destination()); } KDialog::done(r); } QString HgRenameDialog::source() const { return m_source; } QString HgRenameDialog::destination() const { return m_destinationFile->text(); } #include "moc_renamedialog.cpp"