1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*
* Copyright (C) 1999-2002 Bernd Gehrmann
* bernd@mail.berlios.de
* Copyright (c) 2003-2007 Christian Loose <christian.loose@hamburg.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 "addremovedialog.h"
// Qt
#include <QDialogButtonBox>
#include <QFileInfo>
#include <QLabel>
#include <QListWidget>
#include <QPushButton>
#include <QStringList>
#include <QVBoxLayout>
// KDE
#include <KHelpClient>
#include <KLocalizedString>
#include <KMessageWidget>
AddRemoveDialog::AddRemoveDialog(ActionType action, QWidget *parent)
: QDialog(parent)
{
setWindowTitle((action == Add) ? i18n("CVS Add") : (action == AddBinary) ? i18n("CVS Add Binary") : i18n("CVS Remove"));
setModal(true);
auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel | QDialogButtonBox::Help);
auto mainLayout = new QVBoxLayout;
setLayout(mainLayout);
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok);
okButton->setShortcut(Qt::CTRL | Qt::Key_Return);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
connect(buttonBox, &QDialogButtonBox::helpRequested, this, &AddRemoveDialog::slotHelp);
// Also give the focus to the OK button, otherwise the Help button gets focus
// and is activated by Key_Return
okButton->setFocus();
auto textlabel = new QLabel((action == Add) ? i18n("Add the following files to the repository:")
: (action == AddBinary) ? i18n("Add the following binary files to the repository:")
: i18n("Remove the following files from the repository:"));
mainLayout->addWidget(textlabel);
m_listBox = new QListWidget;
m_listBox->setSelectionMode(QAbstractItemView::NoSelection);
mainLayout->addWidget(m_listBox);
// Add warning message to dialog when user wants to remove a file
if (action == Remove) {
auto warning =
new KMessageWidget(i18n("This will also remove the files from "
"your local working copy."));
warning->setIcon(QIcon::fromTheme("dialog-warning").pixmap(32));
warning->setCloseButtonVisible(false);
mainLayout->addSpacing(5);
mainLayout->addWidget(warning);
mainLayout->addSpacing(5);
}
if (action == Remove)
helpTopic = "removingfiles";
else
helpTopic = "addingfiles";
mainLayout->addWidget(buttonBox);
okButton->setDefault(true);
}
void AddRemoveDialog::slotHelp()
{
KHelpClient::invokeHelp(helpTopic);
}
void AddRemoveDialog::setFileList(const QStringList &files)
{
// the dot for the root directory is hard to see, so
// we convert it to the absolut path
if (files.contains(".")) {
QStringList copy(files);
int idx = copy.indexOf(".");
copy[idx] = QFileInfo(".").absoluteFilePath();
m_listBox->addItems(copy);
} else
m_listBox->addItems(files);
}
// kate: space-indent on; indent-width 4; replace-tabs on;
|