kde-workspace/dolphin/plugins/hg/renamedialog.cpp
Ivailo Monev f68295ea28 generic: move sub-projects from kde-baseapps [ci reset]
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-05-14 21:56:54 +03:00

94 lines
3.4 KiB
C++

/***************************************************************************
* Copyright (C) 2011 by Vishesh Yadav <vishesh3y@gmail.com> *
* *
* 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 <klocale.h>
#include <QtGui/QGroupBox>
#include <QtGui/QHBoxLayout>
#include <QtGui/QVBoxLayout>
#include <QtGui/QGridLayout>
#include <QtGui/QLabel>
#include <QtGui/QFrame>
#include <klineedit.h>
#include <kfileitem.h>
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",
"<application>Hg</application> 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("<b>" + m_source + "</b>");
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"