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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/*
* Copyright (C) 1999-2002 Bernd Gehrmann
* bernd@mail.berlios.de
* Copyright (c) 2002-2008 Christian Loose <christian.loose@kdemail.net>
*
* 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 "commitdialog.h"
#include <QCheckBox>
#include <QComboBox>
#include <QDialogButtonBox>
#include <QDir>
#include <QFileInfo>
#include <QLabel>
#include <QListWidget>
#include <QPushButton>
#include <QTextStream>
#include <QVBoxLayout>
#include <KConfig>
#include <KConfigGroup>
#include <KGuiItem>
#include <KHelpClient>
#include <KLocalizedString>
#include "cvsserviceinterface.h"
#include "diffdialog.h"
#include "logmessageedit.h"
class CommitListItem : public QListWidgetItem
{
public:
CommitListItem(const QString &text, const QString &fileName, QListWidget *parent = nullptr)
: QListWidgetItem(text, parent)
, m_fileName(fileName)
{
}
QString fileName() const
{
return m_fileName;
}
private:
QString m_fileName;
};
CommitDialog::CommitDialog(KConfig &cfg, OrgKdeCervisia5CvsserviceCvsserviceInterface *service, QWidget *parent)
: QDialog(parent)
, partConfig(cfg)
, cvsService(service)
{
setWindowTitle(i18n("CVS Commit"));
setModal(true);
auto mainLayout = new QVBoxLayout;
setLayout(mainLayout);
auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel | QDialogButtonBox::Help);
QPushButton *okButton = buttonBox->button(QDialogButtonBox::Ok);
okButton->setShortcut(Qt::CTRL | Qt::Key_Return);
user1Button = new QPushButton;
buttonBox->addButton(user1Button, QDialogButtonBox::ActionRole);
connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
connect(buttonBox, &QDialogButtonBox::helpRequested, this, &CommitDialog::slotHelp);
KGuiItem::assign(user1Button, KGuiItem(i18n("&Diff")));
auto textlabel = new QLabel(i18n("Commit the following &files:"));
mainLayout->addWidget(textlabel);
m_fileList = new QListWidget;
m_fileList->setEditTriggers(QAbstractItemView::NoEditTriggers);
textlabel->setBuddy(m_fileList);
mainLayout->addWidget(m_fileList);
connect(m_fileList, SIGNAL(itemDoubleClicked(QListWidgetItem *)), this, SLOT(fileSelected(QListWidgetItem *)));
connect(m_fileList, SIGNAL(itemSelectionChanged()), this, SLOT(fileHighlighted()));
auto archivelabel = new QLabel(i18n("Older &messages:"));
mainLayout->addWidget(archivelabel);
combo = new QComboBox;
mainLayout->addWidget(combo);
archivelabel->setBuddy(combo);
connect(combo, SIGNAL(activated(int)), this, SLOT(comboActivated(int)));
// make sure that combobox is smaller than the screen
combo->setSizePolicy(QSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed));
auto messagelabel = new QLabel(i18n("&Log message:"));
mainLayout->addWidget(messagelabel);
edit = new Cervisia::LogMessageEdit(this);
messagelabel->setBuddy(edit);
edit->setFocus();
edit->setMinimumSize(400, 100);
mainLayout->addWidget(edit, 10);
m_useTemplateChk = new QCheckBox(i18n("Use log message &template"));
mainLayout->addWidget(m_useTemplateChk);
connect(m_useTemplateChk, SIGNAL(clicked()), this, SLOT(useTemplateClicked()));
mainLayout->addWidget(buttonBox);
okButton->setDefault(true);
checkForTemplateFile();
user1Button->setEnabled(false);
connect(user1Button, SIGNAL(clicked()), this, SLOT(diffClicked()));
KConfigGroup cg(&partConfig, "CommitDialog");
restoreGeometry(cg.readEntry<QByteArray>("geometry", QByteArray()));
}
CommitDialog::~CommitDialog()
{
KConfigGroup cg(&partConfig, "CommitDialog");
cg.writeEntry("geometry", saveGeometry());
cg.writeEntry("UseTemplate", m_useTemplateChk->isChecked());
}
void CommitDialog::slotHelp()
{
KHelpClient::invokeHelp(QLatin1String("committingfiles"));
}
void CommitDialog::setFileList(const QStringList &list)
{
QString currentDirName = QFileInfo(QLatin1String(".")).absoluteFilePath();
QStringList::ConstIterator it = list.begin();
for (; it != list.end(); ++it) {
// the dot for the root directory is hard to see, so
// we convert it to the absolut path
QString text = (*it != QLatin1String(".") ? *it : currentDirName);
edit->compObj()->addItem(text);
auto item = new CommitListItem(text, *it, m_fileList);
item->setCheckState(Qt::Checked);
}
}
QStringList CommitDialog::fileList() const
{
QStringList files;
for (int i = 0; i < m_fileList->count(); ++i) {
auto item = static_cast<CommitListItem *>(m_fileList->item(i));
if (item->checkState() & Qt::Checked)
files.append(item->fileName());
}
return files;
}
void CommitDialog::setLogMessage(const QString &msg)
{
edit->setText(msg);
if (m_useTemplateChk->isChecked())
addTemplateText();
}
QString CommitDialog::logMessage() const
{
return edit->toPlainText();
}
void CommitDialog::setLogHistory(const QStringList &list)
{
commits = list;
combo->addItem(i18n("Current"));
for (QStringList::ConstIterator it = list.begin(); it != list.end(); ++it) {
if ((*it).isEmpty())
continue;
QString txt = *it;
int index = txt.indexOf('\n', 0);
if (index != -1) // Fetch first line
{
txt = txt.mid(0, index);
txt += "...";
}
combo->addItem(txt);
}
}
void CommitDialog::comboActivated(int index)
{
if (index == current_index)
return;
if (index == 0) // Handle current text
edit->setText(current_text);
else {
if (current_index == 0) // Store current text
current_text = edit->toPlainText();
// Show archived text
edit->setText(commits[index - 1]);
}
current_index = index;
}
void CommitDialog::fileSelected(QListWidgetItem *item)
{
showDiffDialog(item->text());
}
void CommitDialog::fileHighlighted()
{
bool isItemSelected = !m_fileList->selectedItems().isEmpty();
user1Button->setEnabled(isItemSelected);
}
void CommitDialog::diffClicked()
{
QListWidgetItem *item = m_fileList->selectedItems().first();
if (!item)
return;
showDiffDialog(item->text());
}
void CommitDialog::showDiffDialog(const QString &fileName)
{
auto l = new DiffDialog(partConfig, this, "diffdialog");
// disable diff button so user doesn't open the same diff several times (#83018)
user1Button->setEnabled(false);
if (l->parseCvsDiff(cvsService, fileName, "", ""))
l->show();
else
delete l;
// re-enable diff button
user1Button->setEnabled(true);
}
void CommitDialog::useTemplateClicked()
{
if (m_useTemplateChk->isChecked()) {
addTemplateText();
} else {
removeTemplateText();
}
}
void CommitDialog::checkForTemplateFile()
{
QString filename = QDir::current().absolutePath() + "/CVS/Template";
if (QFile::exists(filename)) {
QFile f(filename);
if (f.open(QIODevice::ReadOnly)) {
QTextStream stream(&f);
m_templateText = stream.readAll();
f.close();
m_useTemplateChk->setEnabled(true);
KConfigGroup cs(&partConfig, "CommitDialog");
bool check = cs.readEntry("UseTemplate", true);
m_useTemplateChk->setChecked(check);
addTemplateText();
} else {
m_useTemplateChk->setEnabled(false);
}
} else {
m_useTemplateChk->setEnabled(false);
}
}
void CommitDialog::addTemplateText()
{
edit->append(m_templateText);
edit->textCursor().movePosition(QTextCursor::Start);
edit->ensureCursorVisible();
}
void CommitDialog::removeTemplateText()
{
edit->setText(edit->toPlainText().remove(m_templateText));
}
// Local Variables:
// c-basic-offset: 4
// End:
|