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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
/*
SPDX-FileCopyrightText: 2006 Shie Erlich <erlich@users.sourceforge.net>
SPDX-FileCopyrightText: 2006 Rafi Yanai <yanai@users.sourceforge.net>
SPDX-FileCopyrightText: 2006-2022 Krusader Krew <https://krusader.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "useractionpage.h"
// QtWidgets
#include <QFileDialog>
#include <QHBoxLayout>
#include <QLayout>
#include <QSplitter>
#include <QToolButton>
#include <QVBoxLayout>
// QtGui
#include <QClipboard>
// QtXml
#include <QDomDocumentType>
#include <KLineEdit>
#include <KLocalizedString>
#include <KLazyLocalizedString>
#include <KMessageBox>
#include <KStandardGuiItem>
#include "../UserAction/kraction.h"
#include "../UserAction/useraction.h"
#include "../icon.h"
#include "../krglobal.h"
#include "../krusader.h"
#include "actionproperty.h"
#include "useractionlistview.h"
// This is the filter in the QFileDialog of Import/Export:
static constexpr KLazyLocalizedString FILE_FILTER = kli18n("XML files (*.xml);;All files (*)");
UserActionPage::UserActionPage(QWidget *parent)
: QWidget(parent)
{
auto *layout = new QVBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
layout->setSpacing(6); // 0px margin, 6px item-spacing
// ======== pseudo-toolbar start ========
auto *toolbarLayout = new QHBoxLayout; // neither margin nor spacing for the toolbar with autoRaise
toolbarLayout->setSpacing(0);
toolbarLayout->setContentsMargins(0, 0, 0, 0);
newButton = new QToolButton(this);
newButton->setIcon(Icon("document-new"));
newButton->setAutoRaise(true);
newButton->setToolTip(i18n("Create new useraction"));
importButton = new QToolButton(this);
importButton->setIcon(Icon("document-import"));
importButton->setAutoRaise(true);
importButton->setToolTip(i18n("Import useractions"));
exportButton = new QToolButton(this);
exportButton->setIcon(Icon("document-export"));
exportButton->setAutoRaise(true);
exportButton->setToolTip(i18n("Export useractions"));
copyButton = new QToolButton(this);
copyButton->setIcon(Icon("edit-copy"));
copyButton->setAutoRaise(true);
copyButton->setToolTip(i18n("Copy useractions to clipboard"));
pasteButton = new QToolButton(this);
pasteButton->setIcon(Icon("edit-paste"));
pasteButton->setAutoRaise(true);
pasteButton->setToolTip(i18n("Paste useractions from clipboard"));
removeButton = new QToolButton(this);
removeButton->setIcon(Icon("edit-delete"));
removeButton->setAutoRaise(true);
removeButton->setToolTip(i18n("Delete selected useractions"));
toolbarLayout->addWidget(newButton);
toolbarLayout->addWidget(importButton);
toolbarLayout->addWidget(exportButton);
toolbarLayout->addWidget(copyButton);
toolbarLayout->addWidget(pasteButton);
toolbarLayout->addSpacing(6); // 6 pixel nothing
toolbarLayout->addWidget(removeButton);
toolbarLayout->addStretch(1000); // some very large stretch-factor
// ======== pseudo-toolbar end ========
/* This seems obsolete now!
// Display some help
KMessageBox::information( this, // parent
i18n( "When you apply changes to an action, the modifications "
"become available in the current session immediately.\n"
"When closing ActionMan, you will be asked to save the changes permanently."
),
QString(), // caption
"show UserAction help" //dontShowAgainName for the config
);
*/
layout->addLayout(toolbarLayout);
auto *split = new QSplitter(this);
layout->addWidget(split, 1000); // again a very large stretch-factor to fix the height of the toolbar
actionTree = new UserActionListView(split);
actionTree->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
actionProperties = new ActionProperty(split);
actionProperties->setEnabled(false); // if there are any actions in the list, the first is displayed and this widget is enabled
connect(actionTree, &UserActionListView::currentItemChanged, this, &UserActionPage::slotChangeCurrent);
connect(newButton, &QToolButton::clicked, this, &UserActionPage::slotNewAction);
connect(removeButton, &QToolButton::clicked, this, &UserActionPage::slotRemoveAction);
connect(importButton, &QToolButton::clicked, this, &UserActionPage::slotImport);
connect(exportButton, &QToolButton::clicked, this, &UserActionPage::slotExport);
connect(copyButton, &QToolButton::clicked, this, &UserActionPage::slotToClip);
connect(pasteButton, &QToolButton::clicked, this, &UserActionPage::slotFromClip);
// forwards the changed signal of the properties
connect(actionProperties, SIGNAL(changed()), SIGNAL(changed()));
actionTree->setFirstActionCurrent();
actionTree->setFocus();
}
UserActionPage::~UserActionPage() = default;
bool UserActionPage::continueInSpiteOfChanges()
{
if (!actionProperties->isModified())
return true;
int answer = KMessageBox::questionTwoActionsCancel(this, i18n("The current action has been modified. Do you want to apply these changes?"), "", KStandardGuiItem::apply(), KStandardGuiItem::discard());
if (answer == KMessageBox::Cancel) {
disconnect(actionTree, &UserActionListView::currentItemChanged, this, &UserActionPage::slotChangeCurrent);
actionTree->setCurrentAction(actionProperties->action());
connect(actionTree, &UserActionListView::currentItemChanged, this, &UserActionPage::slotChangeCurrent);
return false;
}
if (answer == KMessageBox::PrimaryAction) {
if (!actionProperties->validProperties()) {
disconnect(actionTree, &UserActionListView::currentItemChanged, this, &UserActionPage::slotChangeCurrent);
actionTree->setCurrentAction(actionProperties->action());
connect(actionTree, &UserActionListView::currentItemChanged, this, &UserActionPage::slotChangeCurrent);
return false;
}
slotUpdateAction();
} // if Yes
return true;
}
void UserActionPage::slotChangeCurrent()
{
if (!continueInSpiteOfChanges())
return;
KrAction *action = actionTree->currentAction();
if (action) {
actionProperties->setEnabled(true);
// the distinct name is used as ID it is not allowed to change it afterwards because it is may referenced anywhere else
actionProperties->leDistinctName->setEnabled(false);
actionProperties->updateGUI(action);
} else {
// If the current item in the tree is no action (i.e. a category), disable the properties
actionProperties->clear();
actionProperties->setEnabled(false);
}
emit applied(); // to disable the apply-button
}
void UserActionPage::slotUpdateAction()
{
// check that we have a command line, title and a name
if (!actionProperties->validProperties())
return;
if (actionProperties->leDistinctName->isEnabled()) {
// := new entry
KrAction *action = new KrAction(krApp->actionCollection(), actionProperties->leDistinctName->text());
krUserAction->addKrAction(action);
actionProperties->updateAction(action);
UserActionListViewItem *item = actionTree->insertAction(action);
actionTree->setCurrentItem(item);
} else { // := edit an existing
actionProperties->updateAction();
actionTree->update(actionProperties->action()); // update the listviewitem as well...
}
apply();
}
void UserActionPage::slotNewAction()
{
if (continueInSpiteOfChanges()) {
actionTree->clearSelection(); // else the user may think that he is overwriting the selected action
actionProperties->clear();
actionProperties->setEnabled(true); // it may be disabled because the tree has the focus on a category
actionProperties->leDistinctName->setEnabled(true);
actionProperties->leDistinctName->setFocus();
}
}
void UserActionPage::slotRemoveAction()
{
if (!dynamic_cast<UserActionListViewItem *>(actionTree->currentItem()))
return;
int messageDelete = KMessageBox::warningContinueCancel(this, // parent
i18n("Are you sure that you want to remove all selected actions?"), // text
i18n("Remove Selected Actions?"), // caption
KStandardGuiItem::remove(), // Label for the continue-button
KStandardGuiItem::cancel(),
"Confirm Remove UserAction", // dontAskAgainName (for the config-file)
KMessageBox::Dangerous | KMessageBox::Notify);
if (messageDelete != KMessageBox::Continue)
return;
actionProperties->clear();
actionProperties->setEnabled(false);
actionTree->removeSelectedActions();
apply();
}
void UserActionPage::slotImport()
{
QString filename = QFileDialog::getOpenFileName(this, QString(), QString(), KLocalizedString(FILE_FILTER).toString());
if (filename.isEmpty())
return;
UserAction::KrActionList newActions;
krUserAction->readFromFile(filename, UserAction::renameDoublicated, &newActions);
QListIterator<KrAction *> it(newActions);
while (it.hasNext())
actionTree->insertAction(it.next());
if (newActions.count() > 0) {
apply();
}
}
void UserActionPage::slotExport()
{
if (!dynamic_cast<UserActionListViewItem *>(actionTree->currentItem()))
return;
QString filename = QFileDialog::getSaveFileName(this, QString(), QString(), KLocalizedString(FILE_FILTER).toString());
if (filename.isEmpty())
return;
QDomDocument doc = QDomDocument(ACTION_DOCTYPE);
QFile file(filename);
int answer = 0;
if (file.open(QIODevice::ReadOnly)) { // getting here, means the file already exists an can be read
if (doc.setContent(&file)) // getting here means the file exists and already contains an UserAction-XML-tree
answer = KMessageBox::warningTwoActionsCancel(
this, // parent
i18n("This file already contains some useractions.\nDo you want to overwrite it or should it be merged with the selected actions?"), // text
i18n("Overwrite or Merge?"), // caption
KStandardGuiItem::overwrite(), // label for Yes-Button
KGuiItem(i18n("Merge")) // label for No-Button
);
file.close();
}
if (answer == 0 && file.exists()) {
answer = KMessageBox::warningContinueCancel(this, // parent
i18n("This file already exists. Do you want to overwrite it?"), // text
i18n("Overwrite Existing File?"), // caption
KStandardGuiItem::overwrite() // label for Continue-Button
);
}
if (answer == KMessageBox::Cancel)
return;
if (answer == KMessageBox::SecondaryAction) // that means the merge-button
doc = actionTree->dumpSelectedActions(&doc); // merge
else // Yes or Continue(both Primary action) means overwrite
doc = actionTree->dumpSelectedActions();
bool success = UserAction::writeToFile(doc, filename);
if (!success)
KMessageBox::error(this, i18n("Cannot open %1 for writing.\nNothing exported.", filename), i18n("Export Failed"));
}
void UserActionPage::slotToClip()
{
if (!dynamic_cast<UserActionListViewItem *>(actionTree->currentItem()))
return;
QDomDocument doc = actionTree->dumpSelectedActions();
QApplication::clipboard()->setText(doc.toString());
}
void UserActionPage::slotFromClip()
{
QDomDocument doc(ACTION_DOCTYPE);
if (doc.setContent(QApplication::clipboard()->text())) {
QDomElement root = doc.documentElement();
UserAction::KrActionList newActions;
krUserAction->readFromElement(root, UserAction::renameDoublicated, &newActions);
QListIterator<KrAction *> it(newActions);
while (it.hasNext())
actionTree->insertAction(it.next());
if (newActions.count() > 0) {
apply();
}
} // if ( doc.setContent )
}
bool UserActionPage::readyToQuit()
{
// Check if the current UserAction has changed
if (!continueInSpiteOfChanges())
return false;
krUserAction->writeActionFile();
return true;
}
void UserActionPage::apply()
{
krUserAction->writeActionFile();
emit applied();
}
void UserActionPage::applyChanges()
{
slotUpdateAction();
}
|