]> cloud.milkyroute.net Git - dolphin.git/blob - src/dolphinmainwindow.cpp
DolphinViewContainer: set searchPath on redirect, check for connected urlNavigator
[dolphin.git] / src / dolphinmainwindow.cpp
1 /*
2 * SPDX-FileCopyrightText: 2006 Peter Penz <peter.penz19@gmail.com>
3 * SPDX-FileCopyrightText: 2006 Stefan Monov <logixoul@gmail.com>
4 * SPDX-FileCopyrightText: 2006 Cvetoslav Ludmiloff <ludmiloff@gmail.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9 #include "dolphinmainwindow.h"
10
11 #include "admin/workerintegration.h"
12 #include "dolphin_generalsettings.h"
13 #include "dolphinbookmarkhandler.h"
14 #include "dolphincontextmenu.h"
15 #include "dolphindockwidget.h"
16 #include "dolphinmainwindowadaptor.h"
17 #include "dolphinnavigatorswidgetaction.h"
18 #include "dolphinnewfilemenu.h"
19 #include "dolphinplacesmodelsingleton.h"
20 #include "dolphinrecenttabsmenu.h"
21 #include "dolphintabpage.h"
22 #include "dolphinurlnavigatorscontroller.h"
23 #include "dolphinviewcontainer.h"
24 #include "global.h"
25 #include "middleclickactioneventfilter.h"
26 #include "panels/folders/folderspanel.h"
27 #include "panels/places/placespanel.h"
28 #include "panels/terminal/terminalpanel.h"
29 #include "selectionmode/actiontexthelper.h"
30 #include "settings/dolphinsettingsdialog.h"
31 #include "statusbar/dolphinstatusbar.h"
32 #include "views/dolphinnewfilemenuobserver.h"
33 #include "views/dolphinremoteencoding.h"
34 #include "views/dolphinviewactionhandler.h"
35 #include "views/draganddrophelper.h"
36 #include "views/viewproperties.h"
37
38 #include <KActionCollection>
39 #include <KActionMenu>
40 #include <KAuthorized>
41 #include <KColorSchemeManager>
42 #include <KConfig>
43 #include <KConfigGui>
44 #include <KDialogJobUiDelegate>
45 #include <KDualAction>
46 #include <KFileItemListProperties>
47 #include <KIO/CommandLauncherJob>
48 #include <KIO/JobUiDelegateFactory>
49 #include <KIO/OpenFileManagerWindowJob>
50 #include <KIO/OpenUrlJob>
51 #include <KJobWidgets>
52 #include <KLocalizedString>
53 #include <KMessageBox>
54 #include <KProtocolInfo>
55 #include <KProtocolManager>
56 #include <KRecentFilesAction>
57 #include <KRuntimePlatform>
58 #include <KShell>
59 #include <KShortcutsDialog>
60 #include <KStandardAction>
61 #include <KSycoca>
62 #include <KTerminalLauncherJob>
63 #include <KToggleAction>
64 #include <KToolBar>
65 #include <KToolBarPopupAction>
66 #include <KUrlComboBox>
67 #include <KUrlNavigator>
68 #include <KWindowSystem>
69 #include <KXMLGUIFactory>
70
71 #include <kwidgetsaddons_version.h>
72
73 #include <QApplication>
74 #include <QClipboard>
75 #include <QCloseEvent>
76 #include <QDesktopServices>
77 #include <QDialog>
78 #include <QDomDocument>
79 #include <QFileInfo>
80 #include <QLineEdit>
81 #include <QMenuBar>
82 #include <QPushButton>
83 #include <QShowEvent>
84 #include <QStandardPaths>
85 #include <QTimer>
86 #include <QToolButton>
87 #include <QtConcurrentRun>
88 #include <dolphindebug.h>
89
90 #include <algorithm>
91
92 #if HAVE_X11
93 #include <KStartupInfo>
94 #endif
95
96 namespace
97 {
98 // Used for GeneralSettings::version() to determine whether
99 // an updated version of Dolphin is running, so as to migrate
100 // removed/renamed ...etc config entries; increment it in such
101 // cases
102 const int CurrentDolphinVersion = 202;
103 // The maximum number of entries in the back/forward popup menu
104 const int MaxNumberOfNavigationentries = 12;
105 // The maximum number of "Go to Tab" shortcuts
106 const int MaxActivateTabShortcuts = 9;
107 }
108
109 DolphinMainWindow::DolphinMainWindow()
110 : KXmlGuiWindow(nullptr)
111 , m_newFileMenu(nullptr)
112 , m_tabWidget(nullptr)
113 , m_activeViewContainer(nullptr)
114 , m_actionHandler(nullptr)
115 , m_remoteEncoding(nullptr)
116 , m_settingsDialog()
117 , m_bookmarkHandler(nullptr)
118 , m_disabledActionNotifier(nullptr)
119 , m_lastHandleUrlOpenJob(nullptr)
120 , m_terminalPanel(nullptr)
121 , m_placesPanel(nullptr)
122 , m_tearDownFromPlacesRequested(false)
123 , m_backAction(nullptr)
124 , m_forwardAction(nullptr)
125 , m_splitViewAction(nullptr)
126 , m_splitViewMenuAction(nullptr)
127 , m_sessionSaveTimer(nullptr)
128 , m_sessionSaveWatcher(nullptr)
129 , m_sessionSaveScheduled(false)
130 {
131 Q_INIT_RESOURCE(dolphin);
132
133 new MainWindowAdaptor(this);
134
135 #ifndef Q_OS_WIN
136 setWindowFlags(Qt::WindowContextHelpButtonHint);
137 #endif
138 setComponentName(QStringLiteral("dolphin"), QGuiApplication::applicationDisplayName());
139 setObjectName(QStringLiteral("Dolphin#"));
140
141 setStateConfigGroup("State");
142
143 #if defined(Q_OS_WIN) || defined(Q_OS_MACOS)
144 new KColorSchemeManager(this); // Sets a sensible color scheme which fixes unreadable icons and text on Windows.
145 #endif
146
147 connect(&DolphinNewFileMenuObserver::instance(), &DolphinNewFileMenuObserver::errorMessage, this, &DolphinMainWindow::showErrorMessage);
148
149 KIO::FileUndoManager *undoManager = KIO::FileUndoManager::self();
150 undoManager->setUiInterface(new UndoUiInterface());
151
152 connect(undoManager, &KIO::FileUndoManager::undoAvailable, this, &DolphinMainWindow::slotUndoAvailable);
153 connect(undoManager, &KIO::FileUndoManager::undoTextChanged, this, &DolphinMainWindow::slotUndoTextChanged);
154 connect(undoManager, &KIO::FileUndoManager::jobRecordingStarted, this, &DolphinMainWindow::clearStatusBar);
155 connect(undoManager, &KIO::FileUndoManager::jobRecordingFinished, this, &DolphinMainWindow::showCommand);
156
157 const bool firstRun = (GeneralSettings::version() < 200);
158 if (firstRun) {
159 GeneralSettings::setViewPropsTimestamp(QDateTime::currentDateTime());
160 }
161
162 setAcceptDrops(true);
163
164 auto *navigatorsWidgetAction = new DolphinNavigatorsWidgetAction(this);
165 actionCollection()->addAction(QStringLiteral("url_navigators"), navigatorsWidgetAction);
166 m_tabWidget = new DolphinTabWidget(navigatorsWidgetAction, this);
167 m_tabWidget->setObjectName("tabWidget");
168 connect(m_tabWidget, &DolphinTabWidget::activeViewChanged, this, &DolphinMainWindow::activeViewChanged);
169 connect(m_tabWidget, &DolphinTabWidget::tabCountChanged, this, &DolphinMainWindow::tabCountChanged);
170 connect(m_tabWidget, &DolphinTabWidget::currentUrlChanged, this, &DolphinMainWindow::updateWindowTitle);
171 setCentralWidget(m_tabWidget);
172
173 m_actionTextHelper = new SelectionMode::ActionTextHelper(this);
174 setupActions();
175
176 m_actionHandler = new DolphinViewActionHandler(actionCollection(), m_actionTextHelper, this);
177 connect(m_actionHandler, &DolphinViewActionHandler::actionBeingHandled, this, &DolphinMainWindow::clearStatusBar);
178 connect(m_actionHandler, &DolphinViewActionHandler::createDirectoryTriggered, this, &DolphinMainWindow::createDirectory);
179 connect(m_actionHandler, &DolphinViewActionHandler::selectionModeChangeTriggered, this, &DolphinMainWindow::slotSetSelectionMode);
180
181 Q_CHECK_PTR(actionCollection()->action(QStringLiteral("create_dir")));
182 m_newFileMenu->setNewFolderShortcutAction(actionCollection()->action(QStringLiteral("create_dir")));
183
184 m_remoteEncoding = new DolphinRemoteEncoding(this, m_actionHandler);
185 connect(this, &DolphinMainWindow::urlChanged, m_remoteEncoding, &DolphinRemoteEncoding::slotAboutToOpenUrl);
186
187 m_disabledActionNotifier = new DisabledActionNotifier(this);
188 connect(m_disabledActionNotifier, &DisabledActionNotifier::disabledActionTriggered, this, [this](const QAction *, QString reason) {
189 m_activeViewContainer->showMessage(reason, KMessageWidget::Warning);
190 });
191
192 setupDockWidgets();
193
194 const bool usePhoneUi{KRuntimePlatform::runtimePlatform().contains(QLatin1String("phone"))};
195 setupGUI(Save | Create | ToolBar, usePhoneUi ? QStringLiteral("dolphinuiforphones.rc") : QString() /* load the default dolphinui.rc file */);
196 stateChanged(QStringLiteral("new_file"));
197
198 QClipboard *clipboard = QApplication::clipboard();
199 connect(clipboard, &QClipboard::dataChanged, this, &DolphinMainWindow::updatePasteAction);
200
201 QAction *toggleFilterBarAction = actionCollection()->action(QStringLiteral("toggle_filter"));
202 toggleFilterBarAction->setChecked(GeneralSettings::filterBar());
203
204 if (firstRun) {
205 menuBar()->setVisible(false);
206
207 if (usePhoneUi) {
208 Q_ASSERT(qobject_cast<QDockWidget *>(m_placesPanel->parent()));
209 m_placesPanel->parentWidget()->hide();
210 auto settings = GeneralSettings::self();
211 settings->setShowZoomSlider(false); // Zooming can be done with pinch gestures instead and we are short on horizontal space.
212 settings->setRenameInline(false); // This works around inline renaming currently not working well with virtual keyboards.
213 settings->save(); // Otherwise the RenameInline setting is not picked up for the first time Dolphin is used.
214 }
215 }
216
217 const bool showMenu = !menuBar()->isHidden();
218 QAction *showMenuBarAction = actionCollection()->action(KStandardAction::name(KStandardAction::ShowMenubar));
219 showMenuBarAction->setChecked(showMenu); // workaround for bug #171080
220
221 auto hamburgerMenu = static_cast<KHamburgerMenu *>(actionCollection()->action(KStandardAction::name(KStandardAction::HamburgerMenu)));
222 hamburgerMenu->setMenuBar(menuBar());
223 hamburgerMenu->setShowMenuBarAction(showMenuBarAction);
224 connect(hamburgerMenu, &KHamburgerMenu::aboutToShowMenu, this, &DolphinMainWindow::updateHamburgerMenu);
225 hamburgerMenu->hideActionsOf(toolBar());
226 if (GeneralSettings::version() < 201 && !toolBar()->actions().contains(hamburgerMenu)) {
227 addHamburgerMenuToToolbar();
228 }
229
230 updateAllowedToolbarAreas();
231
232 // enable middle-click on back/forward/up to open in a new tab
233 auto *middleClickEventFilter = new MiddleClickActionEventFilter(this);
234 connect(middleClickEventFilter, &MiddleClickActionEventFilter::actionMiddleClicked, this, &DolphinMainWindow::slotToolBarActionMiddleClicked);
235 toolBar()->installEventFilter(middleClickEventFilter);
236
237 setupWhatsThis();
238
239 connect(KSycoca::self(), &KSycoca::databaseChanged, this, &DolphinMainWindow::updateOpenPreferredSearchToolAction);
240
241 QTimer::singleShot(0, this, &DolphinMainWindow::updateOpenPreferredSearchToolAction);
242
243 m_fileItemActions.setParentWidget(this);
244 connect(&m_fileItemActions, &KFileItemActions::error, this, [this](const QString &errorMessage) {
245 showErrorMessage(errorMessage);
246 });
247
248 connect(GeneralSettings::self(), &GeneralSettings::splitViewChanged, this, &DolphinMainWindow::slotSplitViewChanged);
249 }
250
251 DolphinMainWindow::~DolphinMainWindow()
252 {
253 // This fixes a crash on Wayland when closing the mainwindow while another dialog is open.
254 disconnect(QGuiApplication::clipboard(), &QClipboard::dataChanged, this, &DolphinMainWindow::updatePasteAction);
255
256 // This fixes a crash in dolphinmainwindowtest where the connection below fires even though the KMainWindow destructor of this object is already running.
257 Q_CHECK_PTR(qobject_cast<DolphinDockWidget *>(m_placesPanel->parent()));
258 disconnect(static_cast<DolphinDockWidget *>(m_placesPanel->parent()),
259 &DolphinDockWidget::visibilityChanged,
260 this,
261 &DolphinMainWindow::slotPlacesPanelVisibilityChanged);
262 }
263
264 QVector<DolphinViewContainer *> DolphinMainWindow::viewContainers() const
265 {
266 QVector<DolphinViewContainer *> viewContainers;
267
268 for (int i = 0; i < m_tabWidget->count(); ++i) {
269 DolphinTabPage *tabPage = m_tabWidget->tabPageAt(i);
270
271 viewContainers << tabPage->primaryViewContainer();
272 if (tabPage->splitViewEnabled()) {
273 viewContainers << tabPage->secondaryViewContainer();
274 }
275 }
276 return viewContainers;
277 }
278
279 void DolphinMainWindow::openDirectories(const QList<QUrl> &dirs, bool splitView)
280 {
281 m_tabWidget->openDirectories(dirs, splitView);
282 }
283
284 void DolphinMainWindow::openDirectories(const QStringList &dirs, bool splitView)
285 {
286 openDirectories(QUrl::fromStringList(dirs), splitView);
287 }
288
289 void DolphinMainWindow::openFiles(const QList<QUrl> &files, bool splitView)
290 {
291 m_tabWidget->openFiles(files, splitView);
292 }
293
294 bool DolphinMainWindow::isFoldersPanelEnabled() const
295 {
296 return actionCollection()->action(QStringLiteral("show_folders_panel"))->isChecked();
297 }
298
299 bool DolphinMainWindow::isInformationPanelEnabled() const
300 {
301 #if HAVE_BALOO
302 return actionCollection()->action(QStringLiteral("show_information_panel"))->isChecked();
303 #else
304 return false;
305 #endif
306 }
307
308 bool DolphinMainWindow::isSplitViewEnabledInCurrentTab() const
309 {
310 return m_tabWidget->currentTabPage()->splitViewEnabled();
311 }
312
313 void DolphinMainWindow::openFiles(const QStringList &files, bool splitView)
314 {
315 openFiles(QUrl::fromStringList(files), splitView);
316 }
317
318 void DolphinMainWindow::activateWindow(const QString &activationToken)
319 {
320 window()->setAttribute(Qt::WA_NativeWindow, true);
321
322 if (KWindowSystem::isPlatformWayland()) {
323 KWindowSystem::setCurrentXdgActivationToken(activationToken);
324 } else if (KWindowSystem::isPlatformX11()) {
325 #if HAVE_X11
326 KStartupInfo::setNewStartupId(window()->windowHandle(), activationToken.toUtf8());
327 #endif
328 }
329
330 KWindowSystem::activateWindow(window()->windowHandle());
331 }
332
333 bool DolphinMainWindow::isActiveWindow()
334 {
335 return window()->isActiveWindow();
336 }
337
338 void DolphinMainWindow::showCommand(CommandType command)
339 {
340 DolphinStatusBar *statusBar = m_activeViewContainer->statusBar();
341 switch (command) {
342 case KIO::FileUndoManager::Copy:
343 statusBar->setText(i18nc("@info:status", "Successfully copied."));
344 break;
345 case KIO::FileUndoManager::Move:
346 statusBar->setText(i18nc("@info:status", "Successfully moved."));
347 break;
348 case KIO::FileUndoManager::Link:
349 statusBar->setText(i18nc("@info:status", "Successfully linked."));
350 break;
351 case KIO::FileUndoManager::Trash:
352 statusBar->setText(i18nc("@info:status", "Successfully moved to trash."));
353 break;
354 case KIO::FileUndoManager::Rename:
355 statusBar->setText(i18nc("@info:status", "Successfully renamed."));
356 break;
357
358 case KIO::FileUndoManager::Mkdir:
359 statusBar->setText(i18nc("@info:status", "Created folder."));
360 break;
361
362 default:
363 break;
364 }
365 }
366
367 void DolphinMainWindow::pasteIntoFolder()
368 {
369 m_activeViewContainer->view()->pasteIntoFolder();
370 }
371
372 void DolphinMainWindow::changeUrl(const QUrl &url)
373 {
374 if (!KProtocolManager::supportsListing(url)) {
375 // The URL navigator only checks for validity, not
376 // if the URL can be listed. An error message is
377 // shown due to DolphinViewContainer::restoreView().
378 return;
379 }
380
381 m_activeViewContainer->setUrl(url);
382 updateFileAndEditActions();
383 updatePasteAction();
384 updateViewActions();
385 updateGoActions();
386
387 // will signal used urls to activities manager, too
388 m_recentFiles->addUrl(url);
389
390 Q_EMIT urlChanged(url);
391 }
392
393 void DolphinMainWindow::slotTerminalDirectoryChanged(const QUrl &url)
394 {
395 if (m_tearDownFromPlacesRequested && url == QUrl::fromLocalFile(QDir::homePath())) {
396 m_placesPanel->proceedWithTearDown();
397 m_tearDownFromPlacesRequested = false;
398 }
399
400 m_activeViewContainer->setAutoGrabFocus(false);
401 changeUrl(url);
402 m_activeViewContainer->setAutoGrabFocus(true);
403 }
404
405 void DolphinMainWindow::slotEditableStateChanged(bool editable)
406 {
407 KToggleAction *editableLocationAction = static_cast<KToggleAction *>(actionCollection()->action(QStringLiteral("editable_location")));
408 editableLocationAction->setChecked(editable);
409 }
410
411 void DolphinMainWindow::slotSelectionChanged(const KFileItemList &selection)
412 {
413 updateFileAndEditActions();
414
415 const int selectedUrlsCount = m_tabWidget->currentTabPage()->selectedItemsCount();
416
417 QAction *compareFilesAction = actionCollection()->action(QStringLiteral("compare_files"));
418 if (selectedUrlsCount == 2) {
419 compareFilesAction->setEnabled(isKompareInstalled());
420 } else {
421 compareFilesAction->setEnabled(false);
422 }
423
424 Q_EMIT selectionChanged(selection);
425 }
426
427 void DolphinMainWindow::updateHistory()
428 {
429 const KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigatorInternalWithHistory();
430 const int index = urlNavigator->historyIndex();
431
432 QAction *backAction = actionCollection()->action(KStandardAction::name(KStandardAction::Back));
433 if (backAction) {
434 backAction->setToolTip(i18nc("@info", "Go back"));
435 backAction->setWhatsThis(i18nc("@info:whatsthis go back", "Return to the previously viewed folder."));
436 backAction->setEnabled(index < urlNavigator->historySize() - 1);
437 }
438
439 QAction *forwardAction = actionCollection()->action(KStandardAction::name(KStandardAction::Forward));
440 if (forwardAction) {
441 forwardAction->setToolTip(i18nc("@info", "Go forward"));
442 forwardAction->setWhatsThis(xi18nc("@info:whatsthis go forward", "This undoes a <interface>Go|Back</interface> action."));
443 forwardAction->setEnabled(index > 0);
444 }
445 }
446
447 void DolphinMainWindow::updateFilterBarAction(bool show)
448 {
449 QAction *toggleFilterBarAction = actionCollection()->action(QStringLiteral("toggle_filter"));
450 toggleFilterBarAction->setChecked(show);
451 }
452
453 void DolphinMainWindow::openNewMainWindow()
454 {
455 Dolphin::openNewWindow({m_activeViewContainer->url()}, this);
456 }
457
458 void DolphinMainWindow::openNewActivatedTab()
459 {
460 // keep browsers compatibility, new tab is always after last one
461 auto openNewTabAfterLastTabConfigured = GeneralSettings::openNewTabAfterLastTab();
462 GeneralSettings::setOpenNewTabAfterLastTab(true);
463 m_tabWidget->openNewActivatedTab();
464 GeneralSettings::setOpenNewTabAfterLastTab(openNewTabAfterLastTabConfigured);
465 }
466
467 void DolphinMainWindow::addToPlaces()
468 {
469 QUrl url;
470 QString name;
471
472 // If nothing is selected, act on the current dir
473 if (m_activeViewContainer->view()->selectedItems().isEmpty()) {
474 url = m_activeViewContainer->url();
475 name = m_activeViewContainer->placesText();
476 } else {
477 const auto dirToAdd = m_activeViewContainer->view()->selectedItems().first();
478 url = dirToAdd.url();
479 name = dirToAdd.name();
480 }
481 if (url.isValid()) {
482 QString icon;
483 if (m_activeViewContainer->isSearchModeEnabled()) {
484 icon = QStringLiteral("folder-saved-search-symbolic");
485 } else {
486 icon = KIO::iconNameForUrl(url);
487 }
488 DolphinPlacesModelSingleton::instance().placesModel()->addPlace(name, url, icon);
489 }
490 }
491
492 void DolphinMainWindow::openNewTab(const QUrl &url)
493 {
494 m_tabWidget->openNewTab(url, QUrl());
495 }
496
497 void DolphinMainWindow::openNewTabAndActivate(const QUrl &url)
498 {
499 m_tabWidget->openNewActivatedTab(url, QUrl());
500 }
501
502 void DolphinMainWindow::openNewWindow(const QUrl &url)
503 {
504 Dolphin::openNewWindow({url}, this);
505 }
506
507 void DolphinMainWindow::slotSplitViewChanged()
508 {
509 m_tabWidget->currentTabPage()->setSplitViewEnabled(GeneralSettings::splitView(), WithAnimation);
510 updateSplitActions();
511 }
512
513 void DolphinMainWindow::openInNewTab()
514 {
515 const KFileItemList &list = m_activeViewContainer->view()->selectedItems();
516 bool tabCreated = false;
517
518 for (const KFileItem &item : list) {
519 const QUrl &url = DolphinView::openItemAsFolderUrl(item);
520 if (!url.isEmpty()) {
521 openNewTab(url);
522 tabCreated = true;
523 }
524 }
525
526 // if no new tab has been created from the selection
527 // open the current directory in a new tab
528 if (!tabCreated) {
529 openNewTab(m_activeViewContainer->url());
530 }
531 }
532
533 void DolphinMainWindow::openInNewWindow()
534 {
535 QUrl newWindowUrl;
536
537 const KFileItemList list = m_activeViewContainer->view()->selectedItems();
538 if (list.isEmpty()) {
539 newWindowUrl = m_activeViewContainer->url();
540 } else if (list.count() == 1) {
541 const KFileItem &item = list.first();
542 newWindowUrl = DolphinView::openItemAsFolderUrl(item);
543 }
544
545 if (!newWindowUrl.isEmpty()) {
546 Dolphin::openNewWindow({newWindowUrl}, this);
547 }
548 }
549
550 void DolphinMainWindow::openInSplitView(const QUrl &url)
551 {
552 QUrl newSplitViewUrl = url;
553
554 if (newSplitViewUrl.isEmpty()) {
555 const KFileItemList list = m_activeViewContainer->view()->selectedItems();
556 if (list.count() == 1) {
557 const KFileItem &item = list.first();
558 newSplitViewUrl = DolphinView::openItemAsFolderUrl(item);
559 }
560 }
561
562 if (newSplitViewUrl.isEmpty()) {
563 return;
564 }
565
566 DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
567 if (tabPage->splitViewEnabled()) {
568 tabPage->switchActiveView();
569 tabPage->activeViewContainer()->setUrl(newSplitViewUrl);
570 } else {
571 tabPage->setSplitViewEnabled(true, WithAnimation, newSplitViewUrl);
572 updateViewActions();
573 }
574 }
575
576 void DolphinMainWindow::showTarget()
577 {
578 const KFileItem link = m_activeViewContainer->view()->selectedItems().at(0);
579 const QUrl destinationUrl = link.url().resolved(QUrl(link.linkDest()));
580
581 auto job = KIO::stat(destinationUrl, KIO::StatJob::SourceSide, KIO::StatNoDetails);
582
583 connect(job, &KJob::finished, this, [this, destinationUrl](KJob *job) {
584 KIO::StatJob *statJob = static_cast<KIO::StatJob *>(job);
585
586 if (statJob->error()) {
587 m_activeViewContainer->showMessage(job->errorString(), KMessageWidget::Error);
588 } else {
589 KIO::highlightInFileManager({destinationUrl});
590 }
591 });
592 }
593
594 bool DolphinMainWindow::event(QEvent *event)
595 {
596 if (event->type() == QEvent::ShortcutOverride) {
597 const QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
598 if (keyEvent->key() == Qt::Key_Space && m_activeViewContainer->view()->handleSpaceAsNormalKey()) {
599 event->accept();
600 return true;
601 }
602 }
603
604 return KXmlGuiWindow::event(event);
605 }
606
607 void DolphinMainWindow::showEvent(QShowEvent *event)
608 {
609 KXmlGuiWindow::showEvent(event);
610
611 if (!event->spontaneous() && m_activeViewContainer) {
612 m_activeViewContainer->view()->setFocus();
613 }
614 }
615
616 void DolphinMainWindow::closeEvent(QCloseEvent *event)
617 {
618 // Find out if Dolphin is closed directly by the user or
619 // by the session manager because the session is closed
620 bool closedByUser = true;
621 if (qApp->isSavingSession()) {
622 closedByUser = false;
623 }
624
625 if (m_tabWidget->count() > 1 && GeneralSettings::confirmClosingMultipleTabs() && !GeneralSettings::rememberOpenedTabs() && closedByUser) {
626 // Ask the user if he really wants to quit and close all tabs.
627 // Open a confirmation dialog with 3 buttons:
628 // QDialogButtonBox::Yes -> Quit
629 // QDialogButtonBox::No -> Close only the current tab
630 // QDialogButtonBox::Cancel -> do nothing
631 QDialog *dialog = new QDialog(this, Qt::Dialog);
632 dialog->setWindowTitle(i18nc("@title:window", "Confirmation"));
633 dialog->setModal(true);
634 QDialogButtonBox *buttons = new QDialogButtonBox(QDialogButtonBox::Yes | QDialogButtonBox::No | QDialogButtonBox::Cancel);
635 KGuiItem::assign(buttons->button(QDialogButtonBox::Yes),
636 KGuiItem(i18nc("@action:button 'Quit Dolphin' button", "&Quit %1", QGuiApplication::applicationDisplayName()),
637 QIcon::fromTheme(QStringLiteral("application-exit"))));
638 KGuiItem::assign(buttons->button(QDialogButtonBox::No), KGuiItem(i18n("C&lose Current Tab"), QIcon::fromTheme(QStringLiteral("tab-close"))));
639 KGuiItem::assign(buttons->button(QDialogButtonBox::Cancel), KStandardGuiItem::cancel());
640 buttons->button(QDialogButtonBox::Yes)->setDefault(true);
641
642 bool doNotAskAgainCheckboxResult = false;
643
644 const auto result = KMessageBox::createKMessageBox(dialog,
645 buttons,
646 QMessageBox::Warning,
647 i18n("You have multiple tabs open in this window, are you sure you want to quit?"),
648 QStringList(),
649 i18n("Do not ask again"),
650 &doNotAskAgainCheckboxResult,
651 KMessageBox::Notify);
652
653 if (doNotAskAgainCheckboxResult) {
654 GeneralSettings::setConfirmClosingMultipleTabs(false);
655 }
656
657 switch (result) {
658 case QDialogButtonBox::Yes:
659 // Quit
660 break;
661 case QDialogButtonBox::No:
662 // Close only the current tab
663 m_tabWidget->closeTab();
664 Q_FALLTHROUGH();
665 default:
666 event->ignore();
667 return;
668 }
669 }
670
671 if (m_terminalPanel && m_terminalPanel->hasProgramRunning() && GeneralSettings::confirmClosingTerminalRunningProgram() && closedByUser) {
672 // Ask if the user really wants to quit Dolphin with a program that is still running in the Terminal panel
673 // Open a confirmation dialog with 3 buttons:
674 // QDialogButtonBox::Yes -> Quit
675 // QDialogButtonBox::No -> Show Terminal Panel
676 // QDialogButtonBox::Cancel -> do nothing
677 QDialog *dialog = new QDialog(this, Qt::Dialog);
678 dialog->setWindowTitle(i18nc("@title:window", "Confirmation"));
679 dialog->setModal(true);
680 auto standardButtons = QDialogButtonBox::Yes | QDialogButtonBox::Cancel;
681 if (!m_terminalPanel->isVisible()) {
682 standardButtons |= QDialogButtonBox::No;
683 }
684 QDialogButtonBox *buttons = new QDialogButtonBox(standardButtons);
685 KGuiItem::assign(buttons->button(QDialogButtonBox::Yes), KStandardGuiItem::quit());
686 if (!m_terminalPanel->isVisible()) {
687 KGuiItem::assign(buttons->button(QDialogButtonBox::No), KGuiItem(i18n("Show &Terminal Panel"), QIcon::fromTheme(QStringLiteral("dialog-scripts"))));
688 }
689 KGuiItem::assign(buttons->button(QDialogButtonBox::Cancel), KStandardGuiItem::cancel());
690
691 bool doNotAskAgainCheckboxResult = false;
692
693 const auto result = KMessageBox::createKMessageBox(
694 dialog,
695 buttons,
696 QMessageBox::Warning,
697 i18n("The program '%1' is still running in the Terminal panel. Are you sure you want to quit?", m_terminalPanel->runningProgramName()),
698 QStringList(),
699 i18n("Do not ask again"),
700 &doNotAskAgainCheckboxResult,
701 KMessageBox::Notify | KMessageBox::Dangerous);
702
703 if (doNotAskAgainCheckboxResult) {
704 GeneralSettings::setConfirmClosingTerminalRunningProgram(false);
705 }
706
707 switch (result) {
708 case QDialogButtonBox::Yes:
709 // Quit
710 break;
711 case QDialogButtonBox::No:
712 actionCollection()->action("show_terminal_panel")->trigger();
713 // Do not quit, ignore quit event
714 Q_FALLTHROUGH();
715 default:
716 event->ignore();
717 return;
718 }
719 }
720
721 if (m_sessionSaveTimer && (m_sessionSaveTimer->isActive() || m_sessionSaveWatcher->isRunning())) {
722 const bool sessionSaveTimerActive = m_sessionSaveTimer->isActive();
723
724 m_sessionSaveTimer->stop();
725 m_sessionSaveWatcher->disconnect();
726 m_sessionSaveWatcher->waitForFinished();
727
728 if (sessionSaveTimerActive || m_sessionSaveScheduled) {
729 slotSaveSession();
730 }
731 }
732
733 GeneralSettings::setVersion(CurrentDolphinVersion);
734 GeneralSettings::self()->save();
735
736 KXmlGuiWindow::closeEvent(event);
737 }
738
739 void DolphinMainWindow::slotSaveSession()
740 {
741 m_sessionSaveScheduled = false;
742
743 if (m_sessionSaveWatcher->isRunning()) {
744 // The previous session is still being saved - schedule another save.
745 m_sessionSaveWatcher->disconnect();
746 connect(m_sessionSaveWatcher, &QFutureWatcher<void>::finished, this, &DolphinMainWindow::slotSaveSession, Qt::SingleShotConnection);
747 m_sessionSaveScheduled = true;
748 } else if (!m_sessionSaveTimer->isActive()) {
749 // No point in saving the session if the timer is running (since it will save the session again when it times out).
750 KConfigGui::setSessionConfig(QStringLiteral("dolphin"), QStringLiteral("dolphin"));
751 KConfig *config = KConfigGui::sessionConfig();
752 saveGlobalProperties(config);
753 savePropertiesInternal(config, 1);
754
755 auto future = QtConcurrent::run([config]() {
756 config->sync();
757 });
758 m_sessionSaveWatcher->setFuture(future);
759 }
760 }
761
762 void DolphinMainWindow::setSessionAutoSaveEnabled(bool enable)
763 {
764 if (enable) {
765 if (!m_sessionSaveTimer) {
766 m_sessionSaveTimer = new QTimer(this);
767 m_sessionSaveWatcher = new QFutureWatcher<void>(this);
768 m_sessionSaveTimer->setSingleShot(true);
769 m_sessionSaveTimer->setInterval(22000);
770
771 connect(m_sessionSaveTimer, &QTimer::timeout, this, &DolphinMainWindow::slotSaveSession);
772 }
773
774 connect(m_tabWidget, &DolphinTabWidget::urlChanged, m_sessionSaveTimer, qOverload<>(&QTimer::start), Qt::UniqueConnection);
775 connect(m_tabWidget, &DolphinTabWidget::tabCountChanged, m_sessionSaveTimer, qOverload<>(&QTimer::start), Qt::UniqueConnection);
776 connect(m_tabWidget, &DolphinTabWidget::activeViewChanged, m_sessionSaveTimer, qOverload<>(&QTimer::start), Qt::UniqueConnection);
777 } else if (m_sessionSaveTimer) {
778 m_sessionSaveTimer->stop();
779 m_sessionSaveWatcher->disconnect();
780 m_sessionSaveScheduled = false;
781
782 m_sessionSaveWatcher->waitForFinished();
783
784 m_sessionSaveTimer->deleteLater();
785 m_sessionSaveWatcher->deleteLater();
786 m_sessionSaveTimer = nullptr;
787 m_sessionSaveWatcher = nullptr;
788 }
789 }
790
791 void DolphinMainWindow::saveProperties(KConfigGroup &group)
792 {
793 m_tabWidget->saveProperties(group);
794 }
795
796 void DolphinMainWindow::readProperties(const KConfigGroup &group)
797 {
798 m_tabWidget->readProperties(group);
799 }
800
801 void DolphinMainWindow::updateNewMenu()
802 {
803 m_newFileMenu->checkUpToDate();
804 m_newFileMenu->setWorkingDirectory(activeViewContainer()->url());
805 }
806
807 void DolphinMainWindow::createDirectory()
808 {
809 // When creating directory, namejob is being run. In network folders,
810 // this job can take long time, so instead of starting multiple namejobs,
811 // just check if we are already running one. This prevents opening multiple
812 // dialogs. BUG:481401
813 if (!m_newFileMenu->isCreateDirectoryRunning()) {
814 m_newFileMenu->setWorkingDirectory(activeViewContainer()->url());
815 m_newFileMenu->createDirectory();
816 }
817 }
818
819 void DolphinMainWindow::quit()
820 {
821 close();
822 }
823
824 void DolphinMainWindow::showErrorMessage(const QString &message)
825 {
826 m_activeViewContainer->showMessage(message, KMessageWidget::Error);
827 }
828
829 void DolphinMainWindow::slotUndoAvailable(bool available)
830 {
831 QAction *undoAction = actionCollection()->action(KStandardAction::name(KStandardAction::Undo));
832 if (undoAction) {
833 undoAction->setEnabled(available);
834 }
835 }
836
837 void DolphinMainWindow::slotUndoTextChanged(const QString &text)
838 {
839 QAction *undoAction = actionCollection()->action(KStandardAction::name(KStandardAction::Undo));
840 if (undoAction) {
841 undoAction->setText(text);
842 }
843 }
844
845 void DolphinMainWindow::undo()
846 {
847 clearStatusBar();
848 KIO::FileUndoManager::self()->uiInterface()->setParentWidget(this);
849 KIO::FileUndoManager::self()->undo();
850 }
851
852 void DolphinMainWindow::cut()
853 {
854 if (m_activeViewContainer->view()->selectedItems().isEmpty()) {
855 m_activeViewContainer->setSelectionModeEnabled(true, actionCollection(), SelectionMode::BottomBar::Contents::CutContents);
856 } else {
857 m_activeViewContainer->view()->cutSelectedItemsToClipboard();
858 m_activeViewContainer->setSelectionModeEnabled(false);
859 }
860 }
861
862 void DolphinMainWindow::copy()
863 {
864 if (m_activeViewContainer->view()->selectedItems().isEmpty()) {
865 m_activeViewContainer->setSelectionModeEnabled(true, actionCollection(), SelectionMode::BottomBar::Contents::CopyContents);
866 } else {
867 m_activeViewContainer->view()->copySelectedItemsToClipboard();
868 m_activeViewContainer->setSelectionModeEnabled(false);
869 }
870 }
871
872 void DolphinMainWindow::paste()
873 {
874 m_activeViewContainer->view()->paste();
875 }
876
877 void DolphinMainWindow::find()
878 {
879 m_activeViewContainer->setSearchModeEnabled(true);
880 }
881
882 void DolphinMainWindow::updateSearchAction()
883 {
884 QAction *toggleSearchAction = actionCollection()->action(QStringLiteral("toggle_search"));
885 toggleSearchAction->setChecked(m_activeViewContainer->isSearchModeEnabled());
886 }
887
888 void DolphinMainWindow::updatePasteAction()
889 {
890 QAction *pasteAction = actionCollection()->action(KStandardAction::name(KStandardAction::Paste));
891 QPair<bool, QString> pasteInfo = m_activeViewContainer->view()->pasteInfo();
892 pasteAction->setEnabled(pasteInfo.first);
893 m_disabledActionNotifier->setDisabledReason(pasteAction,
894 m_activeViewContainer->rootItem().isWritable()
895 ? i18nc("@info", "Cannot paste: The clipboard is empty.")
896 : i18nc("@info", "Cannot paste: You do not have permission to write into this folder."));
897 pasteAction->setText(pasteInfo.second);
898 }
899
900 void DolphinMainWindow::slotDirectoryLoadingCompleted()
901 {
902 updatePasteAction();
903 }
904
905 void DolphinMainWindow::slotToolBarActionMiddleClicked(QAction *action)
906 {
907 if (action == actionCollection()->action(KStandardAction::name(KStandardAction::Back))) {
908 goBackInNewTab();
909 } else if (action == actionCollection()->action(KStandardAction::name(KStandardAction::Forward))) {
910 goForwardInNewTab();
911 } else if (action == actionCollection()->action(QStringLiteral("go_up"))) {
912 goUpInNewTab();
913 } else if (action == actionCollection()->action(QStringLiteral("go_home"))) {
914 goHomeInNewTab();
915 }
916 }
917
918 QAction *DolphinMainWindow::urlNavigatorHistoryAction(const KUrlNavigator *urlNavigator, int historyIndex, QObject *parent)
919 {
920 const QUrl url = urlNavigator->locationUrl(historyIndex);
921
922 QString text = url.toDisplayString(QUrl::PreferLocalFile);
923
924 if (!urlNavigator->showFullPath()) {
925 const KFilePlacesModel *placesModel = DolphinPlacesModelSingleton::instance().placesModel();
926
927 const QModelIndex closestIdx = placesModel->closestItem(url);
928 if (closestIdx.isValid()) {
929 const QUrl placeUrl = placesModel->url(closestIdx);
930
931 text = placesModel->text(closestIdx);
932
933 QString pathInsidePlace = url.path().mid(placeUrl.path().length());
934
935 if (!pathInsidePlace.isEmpty() && !pathInsidePlace.startsWith(QLatin1Char('/'))) {
936 pathInsidePlace.prepend(QLatin1Char('/'));
937 }
938
939 if (pathInsidePlace != QLatin1Char('/')) {
940 text.append(pathInsidePlace);
941 }
942 }
943 }
944
945 QAction *action = new QAction(QIcon::fromTheme(KIO::iconNameForUrl(url)), text, parent);
946 action->setData(historyIndex);
947 return action;
948 }
949
950 void DolphinMainWindow::slotAboutToShowBackPopupMenu()
951 {
952 const KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigatorInternalWithHistory();
953 int entries = 0;
954 QMenu *menu = m_backAction->popupMenu();
955 menu->clear();
956 for (int i = urlNavigator->historyIndex() + 1; i < urlNavigator->historySize() && entries < MaxNumberOfNavigationentries; ++i, ++entries) {
957 QAction *action = urlNavigatorHistoryAction(urlNavigator, i, menu);
958 menu->addAction(action);
959 }
960 }
961
962 void DolphinMainWindow::slotGoBack(QAction *action)
963 {
964 int gotoIndex = action->data().value<int>();
965 const KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigatorInternalWithHistory();
966 for (int i = gotoIndex - urlNavigator->historyIndex(); i > 0; --i) {
967 goBack();
968 }
969 }
970
971 void DolphinMainWindow::slotBackForwardActionMiddleClicked(QAction *action)
972 {
973 if (action) {
974 const KUrlNavigator *urlNavigator = activeViewContainer()->urlNavigatorInternalWithHistory();
975 openNewTab(urlNavigator->locationUrl(action->data().value<int>()));
976 }
977 }
978
979 void DolphinMainWindow::slotAboutToShowForwardPopupMenu()
980 {
981 const KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigatorInternalWithHistory();
982 int entries = 0;
983 QMenu *menu = m_forwardAction->popupMenu();
984 for (int i = urlNavigator->historyIndex() - 1; i >= 0 && entries < MaxNumberOfNavigationentries; --i, ++entries) {
985 QAction *action = urlNavigatorHistoryAction(urlNavigator, i, menu);
986 menu->addAction(action);
987 }
988 }
989
990 void DolphinMainWindow::slotGoForward(QAction *action)
991 {
992 int gotoIndex = action->data().value<int>();
993 const KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigatorInternalWithHistory();
994 for (int i = urlNavigator->historyIndex() - gotoIndex; i > 0; --i) {
995 goForward();
996 }
997 }
998
999 void DolphinMainWindow::slotSetSelectionMode(bool enabled, SelectionMode::BottomBar::Contents bottomBarContents)
1000 {
1001 m_activeViewContainer->setSelectionModeEnabled(enabled, actionCollection(), bottomBarContents);
1002 }
1003
1004 void DolphinMainWindow::selectAll()
1005 {
1006 clearStatusBar();
1007
1008 // if the URL navigator is editable and focused, select the whole
1009 // URL instead of all items of the view
1010
1011 KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigator();
1012 QLineEdit *lineEdit = urlNavigator->editor()->lineEdit();
1013 const bool selectUrl = urlNavigator->isUrlEditable() && lineEdit->hasFocus();
1014 if (selectUrl) {
1015 lineEdit->selectAll();
1016 } else {
1017 m_activeViewContainer->view()->selectAll();
1018 }
1019 }
1020
1021 void DolphinMainWindow::invertSelection()
1022 {
1023 clearStatusBar();
1024 m_activeViewContainer->view()->invertSelection();
1025 }
1026
1027 void DolphinMainWindow::toggleSplitView()
1028 {
1029 QUrl newSplitViewUrl;
1030 const KFileItemList list = m_activeViewContainer->view()->selectedItems();
1031 if (list.count() == 1) {
1032 const KFileItem &item = list.first();
1033 newSplitViewUrl = DolphinView::openItemAsFolderUrl(item);
1034 }
1035
1036 DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
1037 tabPage->setSplitViewEnabled(!tabPage->splitViewEnabled(), WithAnimation, newSplitViewUrl);
1038 m_tabWidget->updateTabName(m_tabWidget->indexOf(tabPage));
1039 updateViewActions();
1040 }
1041
1042 void DolphinMainWindow::popoutSplitView()
1043 {
1044 DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
1045 if (!tabPage->splitViewEnabled())
1046 return;
1047 openNewWindow((GeneralSettings::closeActiveSplitView() ? tabPage->activeViewContainer() : tabPage->inactiveViewContainer())->url());
1048 tabPage->setSplitViewEnabled(false, WithAnimation);
1049 updateSplitActions();
1050 }
1051
1052 void DolphinMainWindow::toggleSplitStash()
1053 {
1054 DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
1055 tabPage->setSplitViewEnabled(false, WithAnimation);
1056 tabPage->setSplitViewEnabled(true, WithAnimation, QUrl("stash:/"));
1057 }
1058
1059 void DolphinMainWindow::copyToInactiveSplitView()
1060 {
1061 if (m_activeViewContainer->view()->selectedItems().isEmpty()) {
1062 m_activeViewContainer->setSelectionModeEnabled(true, actionCollection(), SelectionMode::BottomBar::Contents::CopyToOtherViewContents);
1063 } else {
1064 m_tabWidget->copyToInactiveSplitView();
1065 m_activeViewContainer->setSelectionModeEnabled(false);
1066 }
1067 }
1068
1069 void DolphinMainWindow::moveToInactiveSplitView()
1070 {
1071 if (m_activeViewContainer->view()->selectedItems().isEmpty()) {
1072 m_activeViewContainer->setSelectionModeEnabled(true, actionCollection(), SelectionMode::BottomBar::Contents::MoveToOtherViewContents);
1073 } else {
1074 m_tabWidget->moveToInactiveSplitView();
1075 m_activeViewContainer->setSelectionModeEnabled(false);
1076 }
1077 }
1078
1079 void DolphinMainWindow::reloadView()
1080 {
1081 clearStatusBar();
1082 m_activeViewContainer->reload();
1083 m_activeViewContainer->statusBar()->updateSpaceInfo();
1084 }
1085
1086 void DolphinMainWindow::stopLoading()
1087 {
1088 m_activeViewContainer->view()->stopLoading();
1089 }
1090
1091 void DolphinMainWindow::enableStopAction()
1092 {
1093 actionCollection()->action(QStringLiteral("stop"))->setEnabled(true);
1094 }
1095
1096 void DolphinMainWindow::disableStopAction()
1097 {
1098 actionCollection()->action(QStringLiteral("stop"))->setEnabled(false);
1099 }
1100
1101 void DolphinMainWindow::toggleSelectionMode()
1102 {
1103 const bool checked = !m_activeViewContainer->isSelectionModeEnabled();
1104
1105 m_activeViewContainer->setSelectionModeEnabled(checked, actionCollection(), SelectionMode::BottomBar::Contents::GeneralContents);
1106 actionCollection()->action(QStringLiteral("toggle_selection_mode"))->setChecked(checked);
1107 }
1108
1109 void DolphinMainWindow::showFilterBar()
1110 {
1111 m_activeViewContainer->setFilterBarVisible(true);
1112 }
1113
1114 void DolphinMainWindow::toggleFilterBar()
1115 {
1116 const bool checked = !m_activeViewContainer->isFilterBarVisible();
1117 m_activeViewContainer->setFilterBarVisible(checked);
1118
1119 QAction *toggleFilterBarAction = actionCollection()->action(QStringLiteral("toggle_filter"));
1120 toggleFilterBarAction->setChecked(checked);
1121 }
1122
1123 void DolphinMainWindow::toggleEditLocation()
1124 {
1125 clearStatusBar();
1126
1127 QAction *action = actionCollection()->action(QStringLiteral("editable_location"));
1128 KUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigator();
1129 urlNavigator->setUrlEditable(action->isChecked());
1130 }
1131
1132 void DolphinMainWindow::replaceLocation()
1133 {
1134 KUrlNavigator *navigator = m_activeViewContainer->urlNavigator();
1135 QLineEdit *lineEdit = navigator->editor()->lineEdit();
1136
1137 // If the text field currently has focus and everything is selected,
1138 // pressing the keyboard shortcut returns the whole thing to breadcrumb mode
1139 // and goes back to the view, just like how it was before this action was triggered the first time.
1140 if (navigator->isUrlEditable() && lineEdit->hasFocus() && lineEdit->selectedText() == lineEdit->text()) {
1141 navigator->setUrlEditable(false);
1142 m_activeViewContainer->view()->setFocus();
1143 } else {
1144 navigator->setUrlEditable(true);
1145 navigator->setFocus();
1146 lineEdit->selectAll();
1147 }
1148 }
1149
1150 void DolphinMainWindow::togglePanelLockState()
1151 {
1152 const bool newLockState = !GeneralSettings::lockPanels();
1153 const auto childrenObjects = children();
1154 for (QObject *child : childrenObjects) {
1155 DolphinDockWidget *dock = qobject_cast<DolphinDockWidget *>(child);
1156 if (dock) {
1157 dock->setLocked(newLockState);
1158 }
1159 }
1160
1161 DolphinPlacesModelSingleton::instance().placesModel()->setPanelsLocked(newLockState);
1162
1163 GeneralSettings::setLockPanels(newLockState);
1164 }
1165
1166 void DolphinMainWindow::slotTerminalPanelVisibilityChanged(bool visible)
1167 {
1168 if (!visible && m_activeViewContainer) {
1169 m_activeViewContainer->view()->setFocus();
1170 }
1171 // Putting focus to the Terminal is not handled here but in TerminalPanel::showEvent().
1172 }
1173
1174 void DolphinMainWindow::slotPlacesPanelVisibilityChanged(bool visible)
1175 {
1176 if (!visible && m_activeViewContainer) {
1177 m_activeViewContainer->view()->setFocus();
1178 return;
1179 }
1180 m_placesPanel->setFocus();
1181 }
1182
1183 void DolphinMainWindow::goBack()
1184 {
1185 DolphinUrlNavigator *urlNavigator = m_activeViewContainer->urlNavigatorInternalWithHistory();
1186 urlNavigator->goBack();
1187
1188 if (urlNavigator->locationState().isEmpty()) {
1189 // An empty location state indicates a redirection URL,
1190 // which must be skipped too
1191 urlNavigator->goBack();
1192 }
1193 }
1194
1195 void DolphinMainWindow::goForward()
1196 {
1197 m_activeViewContainer->urlNavigatorInternalWithHistory()->goForward();
1198 }
1199
1200 void DolphinMainWindow::goUp()
1201 {
1202 m_activeViewContainer->urlNavigatorInternalWithHistory()->goUp();
1203 }
1204
1205 void DolphinMainWindow::goHome()
1206 {
1207 m_activeViewContainer->urlNavigatorInternalWithHistory()->goHome();
1208 }
1209
1210 void DolphinMainWindow::goBackInNewTab()
1211 {
1212 const KUrlNavigator *urlNavigator = activeViewContainer()->urlNavigatorInternalWithHistory();
1213 const int index = urlNavigator->historyIndex() + 1;
1214 openNewTab(urlNavigator->locationUrl(index));
1215 }
1216
1217 void DolphinMainWindow::goForwardInNewTab()
1218 {
1219 const KUrlNavigator *urlNavigator = activeViewContainer()->urlNavigatorInternalWithHistory();
1220 const int index = urlNavigator->historyIndex() - 1;
1221 openNewTab(urlNavigator->locationUrl(index));
1222 }
1223
1224 void DolphinMainWindow::goUpInNewTab()
1225 {
1226 const QUrl currentUrl = activeViewContainer()->urlNavigator()->locationUrl();
1227 openNewTab(KIO::upUrl(currentUrl));
1228 }
1229
1230 void DolphinMainWindow::goHomeInNewTab()
1231 {
1232 openNewTab(Dolphin::homeUrl());
1233 }
1234
1235 void DolphinMainWindow::compareFiles()
1236 {
1237 const KFileItemList items = m_tabWidget->currentTabPage()->selectedItems();
1238 if (items.count() != 2) {
1239 // The action is disabled in this case, but it could have been triggered
1240 // via D-Bus, see https://bugs.kde.org/show_bug.cgi?id=325517
1241 return;
1242 }
1243
1244 QUrl urlA = items.at(0).url();
1245 QUrl urlB = items.at(1).url();
1246
1247 QString command(QStringLiteral("kompare -c \""));
1248 command.append(urlA.toDisplayString(QUrl::PreferLocalFile));
1249 command.append("\" \"");
1250 command.append(urlB.toDisplayString(QUrl::PreferLocalFile));
1251 command.append('\"');
1252
1253 KIO::CommandLauncherJob *job = new KIO::CommandLauncherJob(command, this);
1254 job->setDesktopName(QStringLiteral("org.kde.kompare"));
1255 job->start();
1256 }
1257
1258 void DolphinMainWindow::toggleShowMenuBar()
1259 {
1260 const bool visible = menuBar()->isVisible();
1261 menuBar()->setVisible(!visible);
1262 }
1263
1264 QPointer<QAction> DolphinMainWindow::preferredSearchTool()
1265 {
1266 m_searchTools.clear();
1267
1268 KService::Ptr kfind = KService::serviceByDesktopName(QStringLiteral("org.kde.kfind"));
1269
1270 if (!kfind) {
1271 return nullptr;
1272 }
1273
1274 auto *action = new QAction(QIcon::fromTheme(kfind->icon()), kfind->name(), this);
1275
1276 connect(action, &QAction::triggered, this, [this, kfind] {
1277 auto *job = new KIO::ApplicationLauncherJob(kfind);
1278 job->setUrls({m_activeViewContainer->url()});
1279 job->start();
1280 });
1281
1282 return action;
1283 }
1284
1285 void DolphinMainWindow::updateOpenPreferredSearchToolAction()
1286 {
1287 QAction *openPreferredSearchTool = actionCollection()->action(QStringLiteral("open_preferred_search_tool"));
1288 if (!openPreferredSearchTool) {
1289 return;
1290 }
1291 QPointer<QAction> tool = preferredSearchTool();
1292 if (tool) {
1293 openPreferredSearchTool->setVisible(true);
1294 openPreferredSearchTool->setText(i18nc("@action:inmenu Tools", "Open %1", tool->text()));
1295 // Only override with the app icon if it is the default, i.e. the user hasn't configured one manually
1296 // https://bugs.kde.org/show_bug.cgi?id=442815
1297 if (openPreferredSearchTool->icon().name() == QLatin1String("search")) {
1298 openPreferredSearchTool->setIcon(tool->icon());
1299 }
1300 } else {
1301 openPreferredSearchTool->setVisible(false);
1302 // still visible in Shortcuts configuration window
1303 openPreferredSearchTool->setText(i18nc("@action:inmenu Tools", "Open Preferred Search Tool"));
1304 openPreferredSearchTool->setIcon(QIcon::fromTheme(QStringLiteral("search")));
1305 }
1306 }
1307
1308 void DolphinMainWindow::openPreferredSearchTool()
1309 {
1310 QPointer<QAction> tool = preferredSearchTool();
1311 if (tool) {
1312 tool->trigger();
1313 }
1314 }
1315
1316 void DolphinMainWindow::openTerminal()
1317 {
1318 openTerminalJob(m_activeViewContainer->url());
1319 }
1320
1321 void DolphinMainWindow::openTerminalHere()
1322 {
1323 QList<QUrl> urls = {};
1324
1325 const auto selectedItems = m_activeViewContainer->view()->selectedItems();
1326 for (const KFileItem &item : selectedItems) {
1327 QUrl url = item.targetUrl();
1328 if (item.isFile()) {
1329 url.setPath(QFileInfo(url.path()).absolutePath());
1330 }
1331 if (!urls.contains(url)) {
1332 urls << url;
1333 }
1334 }
1335
1336 // No items are selected. Open a terminal window for the current location.
1337 if (urls.count() == 0) {
1338 openTerminal();
1339 return;
1340 }
1341
1342 if (urls.count() > 5) {
1343 QString question = i18np("Are you sure you want to open 1 terminal window?", "Are you sure you want to open %1 terminal windows?", urls.count());
1344 const int answer = KMessageBox::warningContinueCancel(
1345 this,
1346 question,
1347 {},
1348 KGuiItem(i18ncp("@action:button", "Open %1 Terminal", "Open %1 Terminals", urls.count()), QStringLiteral("utilities-terminal")),
1349 KStandardGuiItem::cancel(),
1350 QStringLiteral("ConfirmOpenManyTerminals"));
1351 if (answer != KMessageBox::PrimaryAction && answer != KMessageBox::Continue) {
1352 return;
1353 }
1354 }
1355
1356 for (const QUrl &url : std::as_const(urls)) {
1357 openTerminalJob(url);
1358 }
1359 }
1360
1361 void DolphinMainWindow::openTerminalJob(const QUrl &url)
1362 {
1363 if (url.isLocalFile()) {
1364 auto job = new KTerminalLauncherJob(QString());
1365 job->setWorkingDirectory(url.toLocalFile());
1366 job->start();
1367 return;
1368 }
1369
1370 // Not a local file, with protocol Class ":local", try stat'ing
1371 if (KProtocolInfo::protocolClass(url.scheme()) == QLatin1String(":local")) {
1372 KIO::StatJob *job = KIO::mostLocalUrl(url);
1373 KJobWidgets::setWindow(job, this);
1374 connect(job, &KJob::result, this, [job]() {
1375 QUrl statUrl;
1376 if (!job->error()) {
1377 statUrl = job->mostLocalUrl();
1378 }
1379
1380 auto job = new KTerminalLauncherJob(QString());
1381 job->setWorkingDirectory(statUrl.isLocalFile() ? statUrl.toLocalFile() : QDir::homePath());
1382 job->start();
1383 });
1384
1385 return;
1386 }
1387
1388 // Nothing worked, just use $HOME
1389 auto job = new KTerminalLauncherJob(QString());
1390 job->setWorkingDirectory(QDir::homePath());
1391 job->start();
1392 }
1393
1394 void DolphinMainWindow::editSettings()
1395 {
1396 if (!m_settingsDialog) {
1397 DolphinViewContainer *container = activeViewContainer();
1398 container->view()->writeSettings();
1399
1400 const QUrl url = container->url();
1401 DolphinSettingsDialog *settingsDialog = new DolphinSettingsDialog(url, this, actionCollection());
1402 connect(settingsDialog, &DolphinSettingsDialog::settingsChanged, this, &DolphinMainWindow::refreshViews);
1403 connect(settingsDialog, &DolphinSettingsDialog::settingsChanged, &DolphinUrlNavigatorsController::slotReadSettings);
1404 settingsDialog->setAttribute(Qt::WA_DeleteOnClose);
1405 settingsDialog->show();
1406 m_settingsDialog = settingsDialog;
1407 } else {
1408 m_settingsDialog.data()->raise();
1409 }
1410 }
1411
1412 void DolphinMainWindow::handleUrl(const QUrl &url)
1413 {
1414 delete m_lastHandleUrlOpenJob;
1415 m_lastHandleUrlOpenJob = nullptr;
1416
1417 if (url.isLocalFile() && QFileInfo(url.toLocalFile()).isDir()) {
1418 activeViewContainer()->setUrl(url);
1419 } else {
1420 m_lastHandleUrlOpenJob = new KIO::OpenUrlJob(url);
1421 m_lastHandleUrlOpenJob->setUiDelegate(KIO::createDefaultJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, this));
1422 m_lastHandleUrlOpenJob->setShowOpenOrExecuteDialog(true);
1423
1424 connect(m_lastHandleUrlOpenJob, &KIO::OpenUrlJob::mimeTypeFound, this, [this, url](const QString &mimetype) {
1425 if (mimetype == QLatin1String("inode/directory")) {
1426 // If it's a dir, we'll take it from here
1427 m_lastHandleUrlOpenJob->kill();
1428 m_lastHandleUrlOpenJob = nullptr;
1429 activeViewContainer()->setUrl(url);
1430 }
1431 });
1432
1433 connect(m_lastHandleUrlOpenJob, &KIO::OpenUrlJob::result, this, [this]() {
1434 m_lastHandleUrlOpenJob = nullptr;
1435 });
1436
1437 m_lastHandleUrlOpenJob->start();
1438 }
1439 }
1440
1441 void DolphinMainWindow::slotWriteStateChanged(bool isFolderWritable)
1442 {
1443 // trash:/ is writable but we don't want to create new items in it.
1444 // TODO: remove the trash check once https://phabricator.kde.org/T8234 is implemented
1445 newFileMenu()->setEnabled(isFolderWritable && m_activeViewContainer->url().scheme() != QLatin1String("trash"));
1446 // When the menu is disabled, actions in it are disabled later in the event loop, and we need to set the disabled reason after that.
1447 QTimer::singleShot(0, this, [this]() {
1448 m_disabledActionNotifier->setDisabledReason(actionCollection()->action(QStringLiteral("create_dir")),
1449 i18nc("@info", "Cannot create new folder: You do not have permission to create items in this folder."));
1450 });
1451 }
1452
1453 void DolphinMainWindow::openContextMenu(const QPoint &pos, const KFileItem &item, const KFileItemList &selectedItems, const QUrl &url)
1454 {
1455 QPointer<DolphinContextMenu> contextMenu = new DolphinContextMenu(this, item, selectedItems, url, &m_fileItemActions);
1456 contextMenu->exec(pos);
1457
1458 // Delete the menu, unless it has been deleted in its own nested event loop already.
1459 if (contextMenu) {
1460 contextMenu->deleteLater();
1461 }
1462 }
1463
1464 QMenu *DolphinMainWindow::createPopupMenu()
1465 {
1466 QMenu *menu = KXmlGuiWindow::createPopupMenu();
1467
1468 menu->addSeparator();
1469 menu->addAction(actionCollection()->action(QStringLiteral("lock_panels")));
1470
1471 return menu;
1472 }
1473
1474 void DolphinMainWindow::updateHamburgerMenu()
1475 {
1476 KActionCollection *ac = actionCollection();
1477 auto hamburgerMenu = static_cast<KHamburgerMenu *>(ac->action(KStandardAction::name(KStandardAction::HamburgerMenu)));
1478 auto menu = hamburgerMenu->menu();
1479 if (!menu) {
1480 menu = new QMenu(this);
1481 hamburgerMenu->setMenu(menu);
1482 hamburgerMenu->hideActionsOf(ac->action(QStringLiteral("basic_actions"))->menu());
1483 hamburgerMenu->hideActionsOf(ac->action(QStringLiteral("zoom"))->menu());
1484 } else {
1485 menu->clear();
1486 }
1487 const QList<QAction *> toolbarActions = toolBar()->actions();
1488
1489 if (!toolBar()->isVisible()) {
1490 // If neither the menu bar nor the toolbar are visible, these actions should be available.
1491 menu->addAction(ac->action(KStandardAction::name(KStandardAction::ShowMenubar)));
1492 menu->addAction(toolBarMenuAction());
1493 menu->addSeparator();
1494 }
1495
1496 // This group of actions (until the next separator) contains all the most basic actions
1497 // necessary to use Dolphin effectively.
1498 menu->addAction(ac->action(QStringLiteral("go_back")));
1499 menu->addAction(ac->action(QStringLiteral("go_forward")));
1500
1501 menu->addMenu(m_newFileMenu->menu());
1502 if (!toolBar()->isVisible() || !toolbarActions.contains(ac->action(QStringLiteral("toggle_selection_mode_tool_bar")))) {
1503 menu->addAction(ac->action(QStringLiteral("toggle_selection_mode")));
1504 }
1505 menu->addAction(ac->action(QStringLiteral("basic_actions")));
1506 menu->addAction(ac->action(KStandardAction::name(KStandardAction::Undo)));
1507 if (!toolBar()->isVisible()
1508 || (!toolbarActions.contains(ac->action(QStringLiteral("toggle_search")))
1509 && !toolbarActions.contains(ac->action(QStringLiteral("open_preferred_search_tool"))))) {
1510 menu->addAction(ac->action(KStandardAction::name(KStandardAction::Find)));
1511 // This way a search action will only be added if none of the three available
1512 // search actions is present on the toolbar.
1513 }
1514 if (!toolBar()->isVisible() || !toolbarActions.contains(ac->action(QStringLiteral("toggle_filter")))) {
1515 menu->addAction(ac->action(QStringLiteral("show_filter_bar")));
1516 // This way a filter action will only be added if none of the two available
1517 // filter actions is present on the toolbar.
1518 }
1519 menu->addSeparator();
1520
1521 // The second group of actions (up until the next separator) contains actions for opening
1522 // additional views to interact with the file system.
1523 menu->addAction(ac->action(QStringLiteral("file_new")));
1524 menu->addAction(ac->action(QStringLiteral("new_tab")));
1525 if (ac->action(QStringLiteral("undo_close_tab"))->isEnabled()) {
1526 menu->addAction(ac->action(QStringLiteral("closed_tabs")));
1527 }
1528 menu->addAction(ac->action(QStringLiteral("open_terminal")));
1529 menu->addSeparator();
1530
1531 // The third group contains actions to change what one sees in the view
1532 // and to change the more general UI.
1533 if (!toolBar()->isVisible()
1534 || (!toolbarActions.contains(ac->action(QStringLiteral("icons"))) && !toolbarActions.contains(ac->action(QStringLiteral("compact")))
1535 && !toolbarActions.contains(ac->action(QStringLiteral("details"))) && !toolbarActions.contains(ac->action(QStringLiteral("view_mode"))))) {
1536 menu->addAction(ac->action(QStringLiteral("view_mode")));
1537 }
1538 menu->addAction(ac->action(QStringLiteral("show_hidden_files")));
1539 menu->addAction(ac->action(QStringLiteral("sort")));
1540 menu->addAction(ac->action(QStringLiteral("additional_info")));
1541 if (!GeneralSettings::showStatusBar() || !GeneralSettings::showZoomSlider()) {
1542 menu->addAction(ac->action(QStringLiteral("zoom")));
1543 }
1544 menu->addAction(ac->action(QStringLiteral("panels")));
1545
1546 // The "Configure" menu is not added to the actionCollection() because there is hardly
1547 // a good reason for users to put it on their toolbar.
1548 auto configureMenu = menu->addMenu(QIcon::fromTheme(QStringLiteral("configure")), i18nc("@action:inmenu menu for configure actions", "Configure"));
1549 configureMenu->addAction(ac->action(KStandardAction::name(KStandardAction::SwitchApplicationLanguage)));
1550 configureMenu->addAction(ac->action(KStandardAction::name(KStandardAction::KeyBindings)));
1551 configureMenu->addAction(ac->action(KStandardAction::name(KStandardAction::ConfigureToolbars)));
1552 configureMenu->addAction(ac->action(KStandardAction::name(KStandardAction::Preferences)));
1553 hamburgerMenu->hideActionsOf(configureMenu);
1554 }
1555
1556 void DolphinMainWindow::slotPlaceActivated(const QUrl &url)
1557 {
1558 DolphinViewContainer *view = activeViewContainer();
1559
1560 if (view->url() == url) {
1561 view->clearFilterBar(); // Fixes bug 259382.
1562
1563 // We can end up here if the user clicked a device in the Places Panel
1564 // which had been unmounted earlier, see https://bugs.kde.org/show_bug.cgi?id=161385.
1565 reloadView();
1566 } else {
1567 view->disableUrlNavigatorSelectionRequests();
1568 changeUrl(url);
1569 view->enableUrlNavigatorSelectionRequests();
1570 }
1571 }
1572
1573 void DolphinMainWindow::closedTabsCountChanged(unsigned int count)
1574 {
1575 actionCollection()->action(QStringLiteral("undo_close_tab"))->setEnabled(count > 0);
1576 }
1577
1578 void DolphinMainWindow::activeViewChanged(DolphinViewContainer *viewContainer)
1579 {
1580 DolphinViewContainer *oldViewContainer = m_activeViewContainer;
1581 Q_ASSERT(viewContainer);
1582
1583 m_activeViewContainer = viewContainer;
1584
1585 if (oldViewContainer) {
1586 const QAction *toggleSearchAction = actionCollection()->action(QStringLiteral("toggle_search"));
1587 toggleSearchAction->disconnect(oldViewContainer);
1588
1589 // Disconnect all signals between the old view container (container,
1590 // view and url navigator) and main window.
1591 oldViewContainer->disconnect(this);
1592 oldViewContainer->view()->disconnect(this);
1593 oldViewContainer->urlNavigatorInternalWithHistory()->disconnect(this);
1594 auto navigators = static_cast<DolphinNavigatorsWidgetAction *>(actionCollection()->action(QStringLiteral("url_navigators")));
1595 navigators->primaryUrlNavigator()->disconnect(this);
1596 if (auto secondaryUrlNavigator = navigators->secondaryUrlNavigator()) {
1597 secondaryUrlNavigator->disconnect(this);
1598 }
1599
1600 // except the requestItemInfo so that on hover the information panel can still be updated
1601 connect(oldViewContainer->view(), &DolphinView::requestItemInfo, this, &DolphinMainWindow::requestItemInfo);
1602
1603 // Disconnect other slots.
1604 disconnect(oldViewContainer,
1605 &DolphinViewContainer::selectionModeChanged,
1606 actionCollection()->action(QStringLiteral("toggle_selection_mode")),
1607 &QAction::setChecked);
1608 }
1609
1610 connectViewSignals(viewContainer);
1611
1612 m_actionHandler->setCurrentView(viewContainer->view());
1613
1614 updateHistory();
1615 updateFileAndEditActions();
1616 updatePasteAction();
1617 updateViewActions();
1618 updateGoActions();
1619 updateSearchAction();
1620
1621 const QUrl url = viewContainer->url();
1622 Q_EMIT urlChanged(url);
1623 }
1624
1625 void DolphinMainWindow::tabCountChanged(int count)
1626 {
1627 const bool enableTabActions = (count > 1);
1628 for (int i = 0; i < MaxActivateTabShortcuts; ++i) {
1629 actionCollection()->action(QStringLiteral("activate_tab_%1").arg(i))->setEnabled(enableTabActions);
1630 }
1631 actionCollection()->action(QStringLiteral("activate_last_tab"))->setEnabled(enableTabActions);
1632 actionCollection()->action(QStringLiteral("activate_next_tab"))->setEnabled(enableTabActions);
1633 actionCollection()->action(QStringLiteral("activate_prev_tab"))->setEnabled(enableTabActions);
1634 }
1635
1636 void DolphinMainWindow::updateWindowTitle()
1637 {
1638 const QString newTitle = m_activeViewContainer->captionWindowTitle();
1639 if (windowTitle() != newTitle) {
1640 setWindowTitle(newTitle);
1641 }
1642 }
1643
1644 void DolphinMainWindow::slotStorageTearDownFromPlacesRequested(const QString &mountPath)
1645 {
1646 connect(m_placesPanel, &PlacesPanel::storageTearDownSuccessful, this, [this, mountPath]() {
1647 setViewsToHomeIfMountPathOpen(mountPath);
1648 });
1649
1650 if (m_terminalPanel && m_terminalPanel->currentWorkingDirectoryIsChildOf(mountPath)) {
1651 m_tearDownFromPlacesRequested = true;
1652 m_terminalPanel->goHome();
1653 // m_placesPanel->proceedWithTearDown() will be called in slotTerminalDirectoryChanged
1654 } else {
1655 m_placesPanel->proceedWithTearDown();
1656 }
1657 }
1658
1659 void DolphinMainWindow::slotStorageTearDownExternallyRequested(const QString &mountPath)
1660 {
1661 connect(m_placesPanel, &PlacesPanel::storageTearDownSuccessful, this, [this, mountPath]() {
1662 setViewsToHomeIfMountPathOpen(mountPath);
1663 });
1664
1665 if (m_terminalPanel && m_terminalPanel->currentWorkingDirectoryIsChildOf(mountPath)) {
1666 m_tearDownFromPlacesRequested = false;
1667 m_terminalPanel->goHome();
1668 }
1669 }
1670
1671 void DolphinMainWindow::slotKeyBindings()
1672 {
1673 KShortcutsDialog dialog(KShortcutsEditor::AllActions, KShortcutsEditor::LetterShortcutsAllowed, this);
1674 dialog.addCollection(actionCollection());
1675 if (m_terminalPanel) {
1676 KActionCollection *konsolePartActionCollection = m_terminalPanel->actionCollection();
1677 if (konsolePartActionCollection) {
1678 dialog.addCollection(konsolePartActionCollection, QStringLiteral("KonsolePart"));
1679 }
1680 }
1681 dialog.configure();
1682 }
1683
1684 void DolphinMainWindow::setViewsToHomeIfMountPathOpen(const QString &mountPath)
1685 {
1686 const QVector<DolphinViewContainer *> theViewContainers = viewContainers();
1687 for (DolphinViewContainer *viewContainer : theViewContainers) {
1688 if (viewContainer && viewContainer->url().toLocalFile().startsWith(mountPath)) {
1689 viewContainer->setUrl(QUrl::fromLocalFile(QDir::homePath()));
1690 }
1691 }
1692 disconnect(m_placesPanel, &PlacesPanel::storageTearDownSuccessful, nullptr, nullptr);
1693 }
1694
1695 void DolphinMainWindow::setupActions()
1696 {
1697 auto hamburgerMenuAction = KStandardAction::hamburgerMenu(nullptr, nullptr, actionCollection());
1698
1699 // setup 'File' menu
1700 m_newFileMenu = new DolphinNewFileMenu(nullptr, this);
1701 actionCollection()->addAction(QStringLiteral("new_menu"), m_newFileMenu);
1702 QMenu *menu = m_newFileMenu->menu();
1703 menu->setTitle(i18nc("@title:menu Create new folder, file, link, etc.", "Create New"));
1704 menu->setIcon(QIcon::fromTheme(QStringLiteral("list-add")));
1705 m_newFileMenu->setPopupMode(QToolButton::InstantPopup);
1706 connect(menu, &QMenu::aboutToShow, this, &DolphinMainWindow::updateNewMenu);
1707
1708 QAction *newWindow = KStandardAction::openNew(this, &DolphinMainWindow::openNewMainWindow, actionCollection());
1709 newWindow->setText(i18nc("@action:inmenu File", "New &Window"));
1710 newWindow->setToolTip(i18nc("@info", "Open a new Dolphin window"));
1711 newWindow->setWhatsThis(xi18nc("@info:whatsthis",
1712 "This opens a new "
1713 "window just like this one with the current location."
1714 "<nl/>You can drag and drop items between windows."));
1715 newWindow->setIcon(QIcon::fromTheme(QStringLiteral("window-new")));
1716
1717 QAction *newTab = actionCollection()->addAction(QStringLiteral("new_tab"));
1718 newTab->setIcon(QIcon::fromTheme(QStringLiteral("tab-new")));
1719 newTab->setText(i18nc("@action:inmenu File", "New Tab"));
1720 newTab->setWhatsThis(xi18nc("@info:whatsthis",
1721 "This opens a new "
1722 "<emphasis>Tab</emphasis> with the current location."
1723 "<nl/>Tabs allow you to quickly switch between multiple locations and views within this window. "
1724 "You can drag and drop items between tabs."));
1725 actionCollection()->setDefaultShortcut(newTab, Qt::CTRL | Qt::Key_T);
1726 connect(newTab, &QAction::triggered, this, &DolphinMainWindow::openNewActivatedTab);
1727
1728 QAction *addToPlaces = actionCollection()->addAction(QStringLiteral("add_to_places"));
1729 addToPlaces->setIcon(QIcon::fromTheme(QStringLiteral("bookmark-new")));
1730 addToPlaces->setText(i18nc("@action:inmenu Add current folder to places", "Add to Places"));
1731 addToPlaces->setWhatsThis(xi18nc("@info:whatsthis",
1732 "This adds the selected folder "
1733 "to the Places panel."));
1734 connect(addToPlaces, &QAction::triggered, this, &DolphinMainWindow::addToPlaces);
1735
1736 QAction *closeTab = KStandardAction::close(m_tabWidget, QOverload<>::of(&DolphinTabWidget::closeTab), actionCollection());
1737 closeTab->setText(i18nc("@action:inmenu File", "Close Tab"));
1738 closeTab->setToolTip(i18nc("@info", "Close Tab"));
1739 closeTab->setWhatsThis(i18nc("@info:whatsthis",
1740 "This closes the "
1741 "currently viewed tab. If no more tabs are left, this closes "
1742 "the whole window instead."));
1743
1744 QAction *quitAction = KStandardAction::quit(this, &DolphinMainWindow::quit, actionCollection());
1745 quitAction->setWhatsThis(i18nc("@info:whatsthis quit", "This closes this window."));
1746
1747 // setup 'Edit' menu
1748 KStandardAction::undo(this, &DolphinMainWindow::undo, actionCollection());
1749
1750 // i18n: This will be the last paragraph for the whatsthis for all three:
1751 // Cut, Copy and Paste
1752 const QString cutCopyPastePara = xi18nc("@info:whatsthis",
1753 "<para><emphasis>Cut, "
1754 "Copy</emphasis> and <emphasis>Paste</emphasis> work between many "
1755 "applications and are among the most used commands. That's why their "
1756 "<emphasis>keyboard shortcuts</emphasis> are prominently placed right "
1757 "next to each other on the keyboard: <shortcut>Ctrl+X</shortcut>, "
1758 "<shortcut>Ctrl+C</shortcut> and <shortcut>Ctrl+V</shortcut>.</para>");
1759 QAction *cutAction = KStandardAction::cut(this, &DolphinMainWindow::cut, actionCollection());
1760 m_actionTextHelper->registerTextWhenNothingIsSelected(cutAction, i18nc("@action", "Cut…"));
1761 cutAction->setWhatsThis(xi18nc("@info:whatsthis cut",
1762 "This copies the items "
1763 "in your current selection to the <emphasis>clipboard</emphasis>.<nl/>"
1764 "Use the <emphasis>Paste</emphasis> action afterwards to copy them from "
1765 "the clipboard to a new location. The items will be removed from their "
1766 "initial location.")
1767 + cutCopyPastePara);
1768 QAction *copyAction = KStandardAction::copy(this, &DolphinMainWindow::copy, actionCollection());
1769 m_actionTextHelper->registerTextWhenNothingIsSelected(copyAction, i18nc("@action", "Copy…"));
1770 copyAction->setWhatsThis(xi18nc("@info:whatsthis copy",
1771 "This copies the "
1772 "items in your current selection to the <emphasis>clipboard</emphasis>."
1773 "<nl/>Use the <emphasis>Paste</emphasis> action afterwards to copy them "
1774 "from the clipboard to a new location.")
1775 + cutCopyPastePara);
1776 QAction *paste = KStandardAction::paste(this, &DolphinMainWindow::paste, actionCollection());
1777 // The text of the paste-action is modified dynamically by Dolphin
1778 // (e. g. to "Paste One Folder"). To prevent that the size of the toolbar changes
1779 // due to the long text, the text "Paste" is used:
1780 paste->setIconText(i18nc("@action:inmenu Edit", "Paste"));
1781 paste->setWhatsThis(xi18nc("@info:whatsthis paste",
1782 "This copies the items from "
1783 "your <emphasis>clipboard</emphasis> to the currently viewed folder.<nl/>"
1784 "If the items were added to the clipboard by the <emphasis>Cut</emphasis> "
1785 "action they are removed from their old location.")
1786 + cutCopyPastePara);
1787
1788 QAction *copyToOtherViewAction = actionCollection()->addAction(QStringLiteral("copy_to_inactive_split_view"));
1789 copyToOtherViewAction->setText(i18nc("@action:inmenu", "Copy to Other View"));
1790 m_actionTextHelper->registerTextWhenNothingIsSelected(copyToOtherViewAction, i18nc("@action:inmenu", "Copy to Other View…"));
1791 copyToOtherViewAction->setWhatsThis(xi18nc("@info:whatsthis Copy",
1792 "This copies the selected items from "
1793 "the view in focus to the other view. "
1794 "(Only available while in Split View mode.)"));
1795 copyToOtherViewAction->setIcon(QIcon::fromTheme(QStringLiteral("edit-copy")));
1796 copyToOtherViewAction->setIconText(i18nc("@action:inmenu Edit", "Copy to Other View"));
1797 actionCollection()->setDefaultShortcut(copyToOtherViewAction, Qt::SHIFT | Qt::Key_F5);
1798 connect(copyToOtherViewAction, &QAction::triggered, this, &DolphinMainWindow::copyToInactiveSplitView);
1799
1800 QAction *moveToOtherViewAction = actionCollection()->addAction(QStringLiteral("move_to_inactive_split_view"));
1801 moveToOtherViewAction->setText(i18nc("@action:inmenu", "Move to Other View"));
1802 m_actionTextHelper->registerTextWhenNothingIsSelected(moveToOtherViewAction, i18nc("@action:inmenu", "Move to Other View…"));
1803 moveToOtherViewAction->setWhatsThis(xi18nc("@info:whatsthis Move",
1804 "This moves the selected items from "
1805 "the view in focus to the other view. "
1806 "(Only available while in Split View mode.)"));
1807 moveToOtherViewAction->setIcon(QIcon::fromTheme(QStringLiteral("edit-cut")));
1808 moveToOtherViewAction->setIconText(i18nc("@action:inmenu Edit", "Move to Other View"));
1809 actionCollection()->setDefaultShortcut(moveToOtherViewAction, Qt::SHIFT | Qt::Key_F6);
1810 connect(moveToOtherViewAction, &QAction::triggered, this, &DolphinMainWindow::moveToInactiveSplitView);
1811
1812 QAction *showFilterBar = actionCollection()->addAction(QStringLiteral("show_filter_bar"));
1813 showFilterBar->setText(i18nc("@action:inmenu Tools", "Filter…"));
1814 showFilterBar->setToolTip(i18nc("@info:tooltip", "Show Filter Bar"));
1815 showFilterBar->setWhatsThis(xi18nc("@info:whatsthis",
1816 "This opens the "
1817 "<emphasis>Filter Bar</emphasis> at the bottom of the window.<nl/> "
1818 "There you can enter text to filter the files and folders currently displayed. "
1819 "Only those that contain the text in their name will be kept in view."));
1820 showFilterBar->setIcon(QIcon::fromTheme(QStringLiteral("view-filter")));
1821 actionCollection()->setDefaultShortcuts(showFilterBar, {Qt::CTRL | Qt::Key_I, Qt::Key_Slash});
1822 connect(showFilterBar, &QAction::triggered, this, &DolphinMainWindow::showFilterBar);
1823
1824 // toggle_filter acts as a copy of the main showFilterBar to be used mainly
1825 // in the toolbar, with no default shortcut attached, to avoid messing with
1826 // existing workflows (filter bar always open and Ctrl-I to focus)
1827 QAction *toggleFilter = actionCollection()->addAction(QStringLiteral("toggle_filter"));
1828 toggleFilter->setText(i18nc("@action:inmenu", "Toggle Filter Bar"));
1829 toggleFilter->setIconText(i18nc("@action:intoolbar", "Filter"));
1830 toggleFilter->setIcon(showFilterBar->icon());
1831 toggleFilter->setToolTip(showFilterBar->toolTip());
1832 toggleFilter->setWhatsThis(showFilterBar->whatsThis());
1833 toggleFilter->setCheckable(true);
1834 connect(toggleFilter, &QAction::triggered, this, &DolphinMainWindow::toggleFilterBar);
1835
1836 QAction *searchAction = KStandardAction::find(this, &DolphinMainWindow::find, actionCollection());
1837 searchAction->setText(i18n("Search…"));
1838 searchAction->setToolTip(i18nc("@info:tooltip", "Search for files and folders"));
1839 searchAction->setWhatsThis(xi18nc("@info:whatsthis find",
1840 "<para>This helps you "
1841 "find files and folders by opening a <emphasis>search bar</emphasis>. "
1842 "There you can enter search terms and specify settings to find the "
1843 "items you are looking for.</para><para>Use this help again on "
1844 "the search bar so we can have a look at it while the settings are "
1845 "explained.</para>"));
1846
1847 // toggle_search acts as a copy of the main searchAction to be used mainly
1848 // in the toolbar, with no default shortcut attached, to avoid messing with
1849 // existing workflows (search bar always open and Ctrl-F to focus)
1850 QAction *toggleSearchAction = actionCollection()->addAction(QStringLiteral("toggle_search"));
1851 toggleSearchAction->setText(i18nc("@action:inmenu", "Toggle Search Bar"));
1852 toggleSearchAction->setIconText(i18nc("@action:intoolbar", "Search"));
1853 toggleSearchAction->setIcon(searchAction->icon());
1854 toggleSearchAction->setToolTip(searchAction->toolTip());
1855 toggleSearchAction->setWhatsThis(searchAction->whatsThis());
1856 toggleSearchAction->setCheckable(true);
1857
1858 QAction *toggleSelectionModeAction = actionCollection()->addAction(QStringLiteral("toggle_selection_mode"));
1859 // i18n: This action toggles a selection mode.
1860 toggleSelectionModeAction->setText(i18nc("@action:inmenu", "Select Files and Folders"));
1861 // i18n: Opens a selection mode for selecting files/folders.
1862 // The text is kept so unspecific because it will be shown on the toolbar where space is at a premium.
1863 toggleSelectionModeAction->setIconText(i18nc("@action:intoolbar", "Select"));
1864 toggleSelectionModeAction->setWhatsThis(xi18nc(
1865 "@info:whatsthis",
1866 "<para>This application only knows which files or folders should be acted on if they are"
1867 " <emphasis>selected</emphasis> first. Press this to toggle a <emphasis>Selection Mode</emphasis> which makes selecting and deselecting as easy as "
1868 "pressing an item once.</para><para>While in this mode, a quick access bar at the bottom shows available actions for the currently selected items."
1869 "</para>"));
1870 toggleSelectionModeAction->setIcon(QIcon::fromTheme(QStringLiteral("quickwizard")));
1871 toggleSelectionModeAction->setCheckable(true);
1872 actionCollection()->setDefaultShortcut(toggleSelectionModeAction, Qt::Key_Space);
1873 connect(toggleSelectionModeAction, &QAction::triggered, this, &DolphinMainWindow::toggleSelectionMode);
1874
1875 // A special version of the toggleSelectionModeAction for the toolbar that also contains a menu
1876 // with the selectAllAction and invertSelectionAction.
1877 auto *toggleSelectionModeToolBarAction =
1878 new KToolBarPopupAction(toggleSelectionModeAction->icon(), toggleSelectionModeAction->iconText(), actionCollection());
1879 toggleSelectionModeToolBarAction->setToolTip(toggleSelectionModeAction->text());
1880 toggleSelectionModeToolBarAction->setWhatsThis(toggleSelectionModeAction->whatsThis());
1881 actionCollection()->addAction(QStringLiteral("toggle_selection_mode_tool_bar"), toggleSelectionModeToolBarAction);
1882 toggleSelectionModeToolBarAction->setCheckable(true);
1883 toggleSelectionModeToolBarAction->setPopupMode(KToolBarPopupAction::DelayedPopup);
1884 connect(toggleSelectionModeToolBarAction, &QAction::triggered, toggleSelectionModeAction, &QAction::trigger);
1885 connect(toggleSelectionModeAction, &QAction::toggled, toggleSelectionModeToolBarAction, &QAction::setChecked);
1886
1887 QAction *selectAllAction = KStandardAction::selectAll(this, &DolphinMainWindow::selectAll, actionCollection());
1888 selectAllAction->setWhatsThis(xi18nc("@info:whatsthis",
1889 "This selects all "
1890 "files and folders in the current location."));
1891
1892 QAction *invertSelection = actionCollection()->addAction(QStringLiteral("invert_selection"));
1893 invertSelection->setText(i18nc("@action:inmenu Edit", "Invert Selection"));
1894 invertSelection->setWhatsThis(xi18nc("@info:whatsthis invert",
1895 "This selects all "
1896 "items that you have currently <emphasis>not</emphasis> selected instead."));
1897 invertSelection->setIcon(QIcon::fromTheme(QStringLiteral("edit-select-invert")));
1898 actionCollection()->setDefaultShortcut(invertSelection, Qt::CTRL | Qt::SHIFT | Qt::Key_A);
1899 connect(invertSelection, &QAction::triggered, this, &DolphinMainWindow::invertSelection);
1900
1901 QMenu *toggleSelectionModeActionMenu = new QMenu(this);
1902 toggleSelectionModeActionMenu->addAction(selectAllAction);
1903 toggleSelectionModeActionMenu->addAction(invertSelection);
1904 toggleSelectionModeToolBarAction->setMenu(toggleSelectionModeActionMenu);
1905
1906 // setup 'View' menu
1907 // (note that most of it is set up in DolphinViewActionHandler)
1908
1909 Admin::WorkerIntegration::createActAsAdminAction(actionCollection(), this);
1910
1911 m_splitViewAction = actionCollection()->add<KActionMenu>(QStringLiteral("split_view"));
1912 m_splitViewMenuAction = actionCollection()->addAction(QStringLiteral("split_view_menu"));
1913
1914 m_splitViewAction->setWhatsThis(xi18nc("@info:whatsthis split",
1915 "<para>This presents "
1916 "a second view side-by-side with the current view, so you can see "
1917 "the contents of two folders at once and easily move items between "
1918 "them.</para><para>The view that is not \"in focus\" will be dimmed. "
1919 "</para>Click this button again to close one of the views."));
1920 m_splitViewMenuAction->setWhatsThis(m_splitViewAction->whatsThis());
1921
1922 // only set it for the menu version
1923 actionCollection()->setDefaultShortcut(m_splitViewMenuAction, Qt::Key_F3);
1924
1925 connect(m_splitViewAction, &QAction::triggered, this, &DolphinMainWindow::toggleSplitView);
1926 connect(m_splitViewMenuAction, &QAction::triggered, this, &DolphinMainWindow::toggleSplitView);
1927
1928 QAction *popoutSplit = actionCollection()->addAction(QStringLiteral("popout_split_view"));
1929 popoutSplit->setWhatsThis(xi18nc("@info:whatsthis",
1930 "If the view has been split, this will pop the view in focus "
1931 "out into a new window."));
1932 popoutSplit->setIcon(QIcon::fromTheme(QStringLiteral("window-new")));
1933 actionCollection()->setDefaultShortcut(popoutSplit, Qt::SHIFT | Qt::Key_F3);
1934 connect(popoutSplit, &QAction::triggered, this, &DolphinMainWindow::popoutSplitView);
1935
1936 QAction *stashSplit = actionCollection()->addAction(QStringLiteral("split_stash"));
1937 actionCollection()->setDefaultShortcut(stashSplit, Qt::CTRL | Qt::Key_S);
1938 stashSplit->setText(i18nc("@action:intoolbar Stash", "Stash"));
1939 stashSplit->setToolTip(i18nc("@info", "Opens the stash virtual directory in a split window"));
1940 stashSplit->setIcon(QIcon::fromTheme(QStringLiteral("folder-stash")));
1941 stashSplit->setCheckable(false);
1942 QDBusConnectionInterface *sessionInterface = QDBusConnection::sessionBus().interface();
1943 stashSplit->setVisible(sessionInterface && sessionInterface->isServiceRegistered(QStringLiteral("org.kde.kio.StashNotifier")));
1944 connect(stashSplit, &QAction::triggered, this, &DolphinMainWindow::toggleSplitStash);
1945
1946 QAction *redisplay = KStandardAction::redisplay(this, &DolphinMainWindow::reloadView, actionCollection());
1947 redisplay->setToolTip(i18nc("@info:tooltip", "Refresh view"));
1948 redisplay->setWhatsThis(xi18nc("@info:whatsthis refresh",
1949 "<para>This refreshes "
1950 "the folder view.</para>"
1951 "<para>If the contents of this folder have changed, refreshing will re-scan this folder "
1952 "and show you a newly-updated view of the files and folders contained here.</para>"
1953 "<para>If the view is split, this refreshes the one that is currently in focus.</para>"));
1954
1955 QAction *stop = actionCollection()->addAction(QStringLiteral("stop"));
1956 stop->setText(i18nc("@action:inmenu View", "Stop"));
1957 stop->setToolTip(i18nc("@info", "Stop loading"));
1958 stop->setWhatsThis(i18nc("@info", "This stops the loading of the contents of the current folder."));
1959 stop->setIcon(QIcon::fromTheme(QStringLiteral("process-stop")));
1960 connect(stop, &QAction::triggered, this, &DolphinMainWindow::stopLoading);
1961
1962 KToggleAction *editableLocation = actionCollection()->add<KToggleAction>(QStringLiteral("editable_location"));
1963 editableLocation->setText(i18nc("@action:inmenu Navigation Bar", "Editable Location"));
1964 editableLocation->setWhatsThis(xi18nc("@info:whatsthis",
1965 "This toggles the <emphasis>Location Bar</emphasis> to be "
1966 "editable so you can directly enter a location you want to go to.<nl/>"
1967 "You can also switch to editing by clicking to the right of the "
1968 "location and switch back by confirming the edited location."));
1969 actionCollection()->setDefaultShortcut(editableLocation, Qt::Key_F6);
1970 connect(editableLocation, &KToggleAction::triggered, this, &DolphinMainWindow::toggleEditLocation);
1971
1972 QAction *replaceLocation = actionCollection()->addAction(QStringLiteral("replace_location"));
1973 replaceLocation->setText(i18nc("@action:inmenu Navigation Bar", "Replace Location"));
1974 // i18n: "enter" is used both in the meaning of "writing" and "going to" a new location here.
1975 // Both meanings are useful but not necessary to understand the use of "Replace Location".
1976 // So you might want to be more verbose in your language to convey the meaning but it's up to you.
1977 replaceLocation->setWhatsThis(xi18nc("@info:whatsthis",
1978 "This switches to editing the location and selects it "
1979 "so you can quickly enter a different location."));
1980 actionCollection()->setDefaultShortcuts(replaceLocation, {Qt::CTRL | Qt::Key_L, Qt::ALT | Qt::Key_D});
1981 connect(replaceLocation, &QAction::triggered, this, &DolphinMainWindow::replaceLocation);
1982
1983 // setup 'Go' menu
1984 {
1985 QScopedPointer<QAction> backAction(KStandardAction::back(nullptr, nullptr, nullptr));
1986 m_backAction = new KToolBarPopupAction(backAction->icon(), backAction->text(), actionCollection());
1987 m_backAction->setObjectName(backAction->objectName());
1988 m_backAction->setShortcuts(backAction->shortcuts());
1989 }
1990 m_backAction->setPopupMode(KToolBarPopupAction::DelayedPopup);
1991 connect(m_backAction, &QAction::triggered, this, &DolphinMainWindow::goBack);
1992 connect(m_backAction->popupMenu(), &QMenu::aboutToShow, this, &DolphinMainWindow::slotAboutToShowBackPopupMenu);
1993 connect(m_backAction->popupMenu(), &QMenu::triggered, this, &DolphinMainWindow::slotGoBack);
1994 actionCollection()->addAction(m_backAction->objectName(), m_backAction);
1995
1996 auto backShortcuts = m_backAction->shortcuts();
1997 // Prepend this shortcut, to avoid being hidden by the two-slot UI (#371130)
1998 backShortcuts.prepend(QKeySequence(Qt::Key_Backspace));
1999 actionCollection()->setDefaultShortcuts(m_backAction, backShortcuts);
2000
2001 DolphinRecentTabsMenu *recentTabsMenu = new DolphinRecentTabsMenu(this);
2002 actionCollection()->addAction(QStringLiteral("closed_tabs"), recentTabsMenu);
2003 connect(m_tabWidget, &DolphinTabWidget::rememberClosedTab, recentTabsMenu, &DolphinRecentTabsMenu::rememberClosedTab);
2004 connect(recentTabsMenu, &DolphinRecentTabsMenu::restoreClosedTab, m_tabWidget, &DolphinTabWidget::restoreClosedTab);
2005 connect(recentTabsMenu, &DolphinRecentTabsMenu::closedTabsCountChanged, this, &DolphinMainWindow::closedTabsCountChanged);
2006
2007 QAction *undoCloseTab = actionCollection()->addAction(QStringLiteral("undo_close_tab"));
2008 undoCloseTab->setText(i18nc("@action:inmenu File", "Undo close tab"));
2009 undoCloseTab->setWhatsThis(i18nc("@info:whatsthis undo close tab", "This returns you to the previously closed tab."));
2010 actionCollection()->setDefaultShortcut(undoCloseTab, Qt::CTRL | Qt::SHIFT | Qt::Key_T);
2011 undoCloseTab->setIcon(QIcon::fromTheme(QStringLiteral("edit-undo")));
2012 undoCloseTab->setEnabled(false);
2013 connect(undoCloseTab, &QAction::triggered, recentTabsMenu, &DolphinRecentTabsMenu::undoCloseTab);
2014
2015 auto undoAction = actionCollection()->action(KStandardAction::name(KStandardAction::Undo));
2016 undoAction->setWhatsThis(xi18nc("@info:whatsthis",
2017 "This undoes "
2018 "the last change you made to files or folders.<nl/>"
2019 "Such changes include <interface>creating</interface>, <interface>renaming</interface> "
2020 "and <interface>moving</interface> them to a different location "
2021 "or to the <filename>Trash</filename>. <nl/>Any changes that cannot be undone "
2022 "will ask for your confirmation beforehand."));
2023 undoAction->setEnabled(false); // undo should be disabled by default
2024
2025 {
2026 QScopedPointer<QAction> forwardAction(KStandardAction::forward(nullptr, nullptr, nullptr));
2027 m_forwardAction = new KToolBarPopupAction(forwardAction->icon(), forwardAction->text(), actionCollection());
2028 m_forwardAction->setObjectName(forwardAction->objectName());
2029 m_forwardAction->setShortcuts(forwardAction->shortcuts());
2030 }
2031 m_forwardAction->setPopupMode(KToolBarPopupAction::DelayedPopup);
2032 connect(m_forwardAction, &QAction::triggered, this, &DolphinMainWindow::goForward);
2033 connect(m_forwardAction->popupMenu(), &QMenu::aboutToShow, this, &DolphinMainWindow::slotAboutToShowForwardPopupMenu);
2034 connect(m_forwardAction->popupMenu(), &QMenu::triggered, this, &DolphinMainWindow::slotGoForward);
2035 actionCollection()->addAction(m_forwardAction->objectName(), m_forwardAction);
2036 actionCollection()->setDefaultShortcuts(m_forwardAction, m_forwardAction->shortcuts());
2037
2038 // enable middle-click to open in a new tab
2039 auto *middleClickEventFilter = new MiddleClickActionEventFilter(this);
2040 connect(middleClickEventFilter, &MiddleClickActionEventFilter::actionMiddleClicked, this, &DolphinMainWindow::slotBackForwardActionMiddleClicked);
2041 m_backAction->popupMenu()->installEventFilter(middleClickEventFilter);
2042 m_forwardAction->popupMenu()->installEventFilter(middleClickEventFilter);
2043 KStandardAction::up(this, &DolphinMainWindow::goUp, actionCollection());
2044 QAction *homeAction = KStandardAction::home(this, &DolphinMainWindow::goHome, actionCollection());
2045 homeAction->setWhatsThis(xi18nc("@info:whatsthis",
2046 "Go to your "
2047 "<filename>Home</filename> folder.<nl/>Every user account "
2048 "has their own <filename>Home</filename> that contains their personal files, "
2049 "as well as hidden folders for their applications' data and configuration files."));
2050
2051 // setup 'Tools' menu
2052 QAction *compareFiles = actionCollection()->addAction(QStringLiteral("compare_files"));
2053 compareFiles->setText(i18nc("@action:inmenu Tools", "Compare Files"));
2054 compareFiles->setIcon(QIcon::fromTheme(QStringLiteral("kompare")));
2055 compareFiles->setEnabled(false);
2056 connect(compareFiles, &QAction::triggered, this, &DolphinMainWindow::compareFiles);
2057
2058 QAction *openPreferredSearchTool = actionCollection()->addAction(QStringLiteral("open_preferred_search_tool"));
2059 openPreferredSearchTool->setText(i18nc("@action:inmenu Tools", "Open Preferred Search Tool"));
2060 openPreferredSearchTool->setWhatsThis(xi18nc("@info:whatsthis",
2061 "<para>This opens a preferred search tool for the viewed location.</para>"
2062 "<para>Use <emphasis>More Search Tools</emphasis> menu to configure it.</para>"));
2063 openPreferredSearchTool->setIcon(QIcon::fromTheme(QStringLiteral("search")));
2064 actionCollection()->setDefaultShortcut(openPreferredSearchTool, Qt::CTRL | Qt::SHIFT | Qt::Key_F);
2065 connect(openPreferredSearchTool, &QAction::triggered, this, &DolphinMainWindow::openPreferredSearchTool);
2066
2067 if (KAuthorized::authorize(QStringLiteral("shell_access"))) {
2068 QAction *openTerminal = actionCollection()->addAction(QStringLiteral("open_terminal"));
2069 openTerminal->setText(i18nc("@action:inmenu Tools", "Open Terminal"));
2070 openTerminal->setWhatsThis(xi18nc("@info:whatsthis",
2071 "<para>This opens a <emphasis>terminal</emphasis> application for the viewed location.</para>"
2072 "<para>To learn more about terminals use the help features in the terminal application.</para>"));
2073 openTerminal->setIcon(QIcon::fromTheme(QStringLiteral("utilities-terminal")));
2074 actionCollection()->setDefaultShortcut(openTerminal, Qt::SHIFT | Qt::Key_F4);
2075 connect(openTerminal, &QAction::triggered, this, &DolphinMainWindow::openTerminal);
2076
2077 QAction *openTerminalHere = actionCollection()->addAction(QStringLiteral("open_terminal_here"));
2078 // i18n: "Here" refers to the location(s) of the currently selected item(s) or the currently viewed location if nothing is selected.
2079 openTerminalHere->setText(i18nc("@action:inmenu Tools", "Open Terminal Here"));
2080 openTerminalHere->setWhatsThis(xi18nc("@info:whatsthis",
2081 "<para>This opens <emphasis>terminal</emphasis> applications for the selected items' locations.</para>"
2082 "<para>To learn more about terminals use the help features in the terminal application.</para>"));
2083 openTerminalHere->setIcon(QIcon::fromTheme(QStringLiteral("utilities-terminal")));
2084 actionCollection()->setDefaultShortcut(openTerminalHere, Qt::SHIFT | Qt::ALT | Qt::Key_F4);
2085 connect(openTerminalHere, &QAction::triggered, this, &DolphinMainWindow::openTerminalHere);
2086 }
2087
2088 // setup 'Bookmarks' menu
2089 KActionMenu *bookmarkMenu = new KActionMenu(i18nc("@title:menu", "&Bookmarks"), this);
2090 bookmarkMenu->setIcon(QIcon::fromTheme(QStringLiteral("bookmarks")));
2091 // Make the toolbar button version work properly on click
2092 bookmarkMenu->setPopupMode(QToolButton::InstantPopup);
2093 m_bookmarkHandler = new DolphinBookmarkHandler(this, actionCollection(), bookmarkMenu->menu(), this);
2094 actionCollection()->addAction(QStringLiteral("bookmarks"), bookmarkMenu);
2095
2096 // setup 'Settings' menu
2097 KToggleAction *showMenuBar = KStandardAction::showMenubar(nullptr, nullptr, actionCollection());
2098 showMenuBar->setWhatsThis(xi18nc("@info:whatsthis",
2099 "<para>This switches between having a <emphasis>Menubar</emphasis> "
2100 "and having an <interface>%1</interface> button. Both "
2101 "contain mostly the same actions and configuration options.</para>"
2102 "<para>The Menubar takes up more space but allows for fast and organized access to all "
2103 "actions an application has to offer.</para><para>The %1 button "
2104 "is simpler and small which makes triggering advanced actions more time consuming.</para>",
2105 hamburgerMenuAction->text().replace('&', "")));
2106 connect(showMenuBar,
2107 &KToggleAction::triggered, // Fixes #286822
2108 this,
2109 &DolphinMainWindow::toggleShowMenuBar,
2110 Qt::QueuedConnection);
2111
2112 KToggleAction *showStatusBar = KStandardAction::showStatusbar(nullptr, nullptr, actionCollection());
2113 showStatusBar->setChecked(GeneralSettings::showStatusBar());
2114 connect(GeneralSettings::self(), &GeneralSettings::showStatusBarChanged, showStatusBar, &KToggleAction::setChecked);
2115 connect(showStatusBar, &KToggleAction::triggered, this, [this](bool checked) {
2116 GeneralSettings::setShowStatusBar(checked);
2117 refreshViews();
2118 });
2119
2120 KStandardAction::keyBindings(this, &DolphinMainWindow::slotKeyBindings, actionCollection());
2121 KStandardAction::preferences(this, &DolphinMainWindow::editSettings, actionCollection());
2122
2123 // not in menu actions
2124 QList<QKeySequence> nextTabKeys = KStandardShortcut::tabNext();
2125 nextTabKeys.append(QKeySequence(Qt::CTRL | Qt::Key_Tab));
2126
2127 QList<QKeySequence> prevTabKeys = KStandardShortcut::tabPrev();
2128 prevTabKeys.append(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_Tab));
2129
2130 for (int i = 0; i < MaxActivateTabShortcuts; ++i) {
2131 QAction *activateTab = actionCollection()->addAction(QStringLiteral("activate_tab_%1").arg(i));
2132 activateTab->setText(i18nc("@action:inmenu", "Go to Tab %1", i + 1));
2133 activateTab->setEnabled(false);
2134 connect(activateTab, &QAction::triggered, this, [this, i]() {
2135 m_tabWidget->activateTab(i);
2136 });
2137
2138 // only add default shortcuts for the first 9 tabs regardless of MaxActivateTabShortcuts
2139 if (i < 9) {
2140 actionCollection()->setDefaultShortcut(activateTab, QStringLiteral("Alt+%1").arg(i + 1));
2141 }
2142 }
2143
2144 QAction *activateLastTab = actionCollection()->addAction(QStringLiteral("activate_last_tab"));
2145 activateLastTab->setIconText(i18nc("@action:inmenu", "Last Tab"));
2146 activateLastTab->setText(i18nc("@action:inmenu", "Go to Last Tab"));
2147 activateLastTab->setEnabled(false);
2148 connect(activateLastTab, &QAction::triggered, m_tabWidget, &DolphinTabWidget::activateLastTab);
2149 actionCollection()->setDefaultShortcut(activateLastTab, Qt::ALT | Qt::Key_0);
2150
2151 QAction *activateNextTab = actionCollection()->addAction(QStringLiteral("activate_next_tab"));
2152 activateNextTab->setIconText(i18nc("@action:inmenu", "Next Tab"));
2153 activateNextTab->setText(i18nc("@action:inmenu", "Go to Next Tab"));
2154 activateNextTab->setEnabled(false);
2155 connect(activateNextTab, &QAction::triggered, m_tabWidget, &DolphinTabWidget::activateNextTab);
2156 actionCollection()->setDefaultShortcuts(activateNextTab, nextTabKeys);
2157
2158 QAction *activatePrevTab = actionCollection()->addAction(QStringLiteral("activate_prev_tab"));
2159 activatePrevTab->setIconText(i18nc("@action:inmenu", "Previous Tab"));
2160 activatePrevTab->setText(i18nc("@action:inmenu", "Go to Previous Tab"));
2161 activatePrevTab->setEnabled(false);
2162 connect(activatePrevTab, &QAction::triggered, m_tabWidget, &DolphinTabWidget::activatePrevTab);
2163 actionCollection()->setDefaultShortcuts(activatePrevTab, prevTabKeys);
2164
2165 // for context menu
2166 QAction *showTarget = actionCollection()->addAction(QStringLiteral("show_target"));
2167 showTarget->setText(i18nc("@action:inmenu", "Show Target"));
2168 showTarget->setIcon(QIcon::fromTheme(QStringLiteral("document-open-folder")));
2169 showTarget->setEnabled(false);
2170 connect(showTarget, &QAction::triggered, this, &DolphinMainWindow::showTarget);
2171
2172 QAction *openInNewTab = actionCollection()->addAction(QStringLiteral("open_in_new_tab"));
2173 openInNewTab->setText(i18nc("@action:inmenu", "Open in New Tab"));
2174 openInNewTab->setIcon(QIcon::fromTheme(QStringLiteral("tab-new")));
2175 connect(openInNewTab, &QAction::triggered, this, &DolphinMainWindow::openInNewTab);
2176
2177 QAction *openInNewTabs = actionCollection()->addAction(QStringLiteral("open_in_new_tabs"));
2178 openInNewTabs->setText(i18nc("@action:inmenu", "Open in New Tabs"));
2179 openInNewTabs->setIcon(QIcon::fromTheme(QStringLiteral("tab-new")));
2180 connect(openInNewTabs, &QAction::triggered, this, &DolphinMainWindow::openInNewTab);
2181
2182 QAction *openInNewWindow = actionCollection()->addAction(QStringLiteral("open_in_new_window"));
2183 openInNewWindow->setText(i18nc("@action:inmenu", "Open in New Window"));
2184 openInNewWindow->setIcon(QIcon::fromTheme(QStringLiteral("window-new")));
2185 connect(openInNewWindow, &QAction::triggered, this, &DolphinMainWindow::openInNewWindow);
2186
2187 QAction *openInSplitViewAction = actionCollection()->addAction(QStringLiteral("open_in_split_view"));
2188 openInSplitViewAction->setText(i18nc("@action:inmenu", "Open in Split View"));
2189 openInSplitViewAction->setIcon(QIcon::fromTheme(QStringLiteral("view-right-new")));
2190 connect(openInSplitViewAction, &QAction::triggered, this, [this]() {
2191 openInSplitView(QUrl());
2192 });
2193
2194 m_recentFiles = new KRecentFilesAction(this);
2195 }
2196
2197 void DolphinMainWindow::setupDockWidgets()
2198 {
2199 const bool lock = GeneralSettings::lockPanels();
2200
2201 DolphinPlacesModelSingleton::instance().placesModel()->setPanelsLocked(lock);
2202
2203 KDualAction *lockLayoutAction = actionCollection()->add<KDualAction>(QStringLiteral("lock_panels"));
2204 lockLayoutAction->setActiveText(i18nc("@action:inmenu Panels", "Unlock Panels"));
2205 lockLayoutAction->setActiveIcon(QIcon::fromTheme(QStringLiteral("object-unlocked")));
2206 lockLayoutAction->setInactiveText(i18nc("@action:inmenu Panels", "Lock Panels"));
2207 lockLayoutAction->setInactiveIcon(QIcon::fromTheme(QStringLiteral("object-locked")));
2208 lockLayoutAction->setWhatsThis(xi18nc("@info:whatsthis",
2209 "This "
2210 "switches between having panels <emphasis>locked</emphasis> or "
2211 "<emphasis>unlocked</emphasis>.<nl/>Unlocked panels can be "
2212 "dragged to the other side of the window and have a close "
2213 "button.<nl/>Locked panels are embedded more cleanly."));
2214 lockLayoutAction->setActive(lock);
2215 connect(lockLayoutAction, &KDualAction::triggered, this, &DolphinMainWindow::togglePanelLockState);
2216
2217 // Setup "Information"
2218 DolphinDockWidget *infoDock = new DolphinDockWidget(i18nc("@title:window", "Information"));
2219 infoDock->setLocked(lock);
2220 infoDock->setObjectName(QStringLiteral("infoDock"));
2221 infoDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
2222
2223 #if HAVE_BALOO
2224 InformationPanel *infoPanel = new InformationPanel(infoDock);
2225 infoPanel->setCustomContextMenuActions({lockLayoutAction});
2226 connect(infoPanel, &InformationPanel::urlActivated, this, &DolphinMainWindow::handleUrl);
2227 infoDock->setWidget(infoPanel);
2228
2229 createPanelAction(QIcon::fromTheme(QStringLiteral("documentinfo")), Qt::Key_F11, infoDock, QStringLiteral("show_information_panel"));
2230
2231 addDockWidget(Qt::RightDockWidgetArea, infoDock);
2232 connect(this, &DolphinMainWindow::urlChanged, infoPanel, &InformationPanel::setUrl);
2233 connect(this, &DolphinMainWindow::selectionChanged, infoPanel, &InformationPanel::setSelection);
2234 connect(this, &DolphinMainWindow::requestItemInfo, infoPanel, &InformationPanel::requestDelayedItemInfo);
2235 connect(this, &DolphinMainWindow::fileItemsChanged, infoPanel, &InformationPanel::slotFilesItemChanged);
2236 connect(this, &DolphinMainWindow::settingsChanged, infoPanel, &InformationPanel::readSettings);
2237 #endif
2238
2239 // i18n: This is the last paragraph for the "What's This"-texts of all four panels.
2240 const QString panelWhatsThis = xi18nc("@info:whatsthis",
2241 "<para>To show or "
2242 "hide panels like this go to <interface>Menu|Panels</interface> "
2243 "or <interface>View|Panels</interface>.</para>");
2244 #if HAVE_BALOO
2245 actionCollection()
2246 ->action(QStringLiteral("show_information_panel"))
2247 ->setWhatsThis(xi18nc("@info:whatsthis",
2248 "<para> This toggles the "
2249 "<emphasis>information</emphasis> panel at the right side of the "
2250 "window.</para><para>The panel provides in-depth information "
2251 "about the items your mouse is hovering over or about the selected "
2252 "items. Otherwise it informs you about the currently viewed folder.<nl/>"
2253 "For single items a preview of their contents is provided.</para>"));
2254 #endif
2255 infoDock->setWhatsThis(xi18nc("@info:whatsthis",
2256 "<para>This panel "
2257 "provides in-depth information about the items your mouse is "
2258 "hovering over or about the selected items. Otherwise it informs "
2259 "you about the currently viewed folder.<nl/>For single items a "
2260 "preview of their contents is provided.</para><para>You can configure "
2261 "which and how details are given here by right-clicking.</para>")
2262 + panelWhatsThis);
2263
2264 // Setup "Folders"
2265 DolphinDockWidget *foldersDock = new DolphinDockWidget(i18nc("@title:window", "Folders"));
2266 foldersDock->setLocked(lock);
2267 foldersDock->setObjectName(QStringLiteral("foldersDock"));
2268 foldersDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
2269 FoldersPanel *foldersPanel = new FoldersPanel(foldersDock);
2270 foldersPanel->setCustomContextMenuActions({lockLayoutAction});
2271 foldersDock->setWidget(foldersPanel);
2272
2273 createPanelAction(QIcon::fromTheme(QStringLiteral("folder")), Qt::Key_F7, foldersDock, QStringLiteral("show_folders_panel"));
2274
2275 addDockWidget(Qt::LeftDockWidgetArea, foldersDock);
2276 connect(this, &DolphinMainWindow::urlChanged, foldersPanel, &FoldersPanel::setUrl);
2277 connect(foldersPanel, &FoldersPanel::folderActivated, this, &DolphinMainWindow::changeUrl);
2278 connect(foldersPanel, &FoldersPanel::folderInNewTab, this, &DolphinMainWindow::openNewTab);
2279 connect(foldersPanel, &FoldersPanel::folderInNewActiveTab, this, &DolphinMainWindow::openNewTabAndActivate);
2280 connect(foldersPanel, &FoldersPanel::errorMessage, this, &DolphinMainWindow::showErrorMessage);
2281
2282 actionCollection()
2283 ->action(QStringLiteral("show_folders_panel"))
2284 ->setWhatsThis(xi18nc("@info:whatsthis",
2285 "This toggles the "
2286 "<emphasis>folders</emphasis> panel at the left side of the window."
2287 "<nl/><nl/>It shows the folders of the <emphasis>file system"
2288 "</emphasis> in a <emphasis>tree view</emphasis>."));
2289 foldersDock->setWhatsThis(xi18nc("@info:whatsthis",
2290 "<para>This panel "
2291 "shows the folders of the <emphasis>file system</emphasis> in a "
2292 "<emphasis>tree view</emphasis>.</para><para>Click a folder to go "
2293 "there. Click the arrow to the left of a folder to see its subfolders. "
2294 "This allows quick switching between any folders.</para>")
2295 + panelWhatsThis);
2296
2297 // Setup "Terminal"
2298 #if HAVE_TERMINAL
2299 if (KAuthorized::authorize(QStringLiteral("shell_access"))) {
2300 DolphinDockWidget *terminalDock = new DolphinDockWidget(i18nc("@title:window Shell terminal", "Terminal"));
2301 terminalDock->setLocked(lock);
2302 terminalDock->setObjectName(QStringLiteral("terminalDock"));
2303 terminalDock->setContentsMargins(0, 0, 0, 0);
2304 m_terminalPanel = new TerminalPanel(terminalDock);
2305 m_terminalPanel->setCustomContextMenuActions({lockLayoutAction});
2306 terminalDock->setWidget(m_terminalPanel);
2307
2308 connect(m_terminalPanel, &TerminalPanel::hideTerminalPanel, terminalDock, &DolphinDockWidget::hide);
2309 connect(m_terminalPanel, &TerminalPanel::changeUrl, this, &DolphinMainWindow::slotTerminalDirectoryChanged);
2310 connect(terminalDock, &DolphinDockWidget::visibilityChanged, m_terminalPanel, &TerminalPanel::dockVisibilityChanged);
2311 connect(terminalDock, &DolphinDockWidget::visibilityChanged, this, &DolphinMainWindow::slotTerminalPanelVisibilityChanged);
2312
2313 createPanelAction(QIcon::fromTheme(QStringLiteral("dialog-scripts")), Qt::Key_F4, terminalDock, QStringLiteral("show_terminal_panel"));
2314
2315 addDockWidget(Qt::BottomDockWidgetArea, terminalDock);
2316 connect(this, &DolphinMainWindow::urlChanged, m_terminalPanel, &TerminalPanel::setUrl);
2317
2318 if (GeneralSettings::version() < 200) {
2319 terminalDock->hide();
2320 }
2321
2322 actionCollection()
2323 ->action(QStringLiteral("show_terminal_panel"))
2324 ->setWhatsThis(xi18nc("@info:whatsthis",
2325 "<para>This toggles the "
2326 "<emphasis>terminal</emphasis> panel at the bottom of the window."
2327 "<nl/>The location in the terminal will always match the folder "
2328 "view so you can navigate using either.</para><para>The terminal "
2329 "panel is not needed for basic computer usage but can be useful "
2330 "for advanced tasks. To learn more about terminals use the help features "
2331 "in a standalone terminal application like Konsole.</para>"));
2332 terminalDock->setWhatsThis(xi18nc("@info:whatsthis",
2333 "<para>This is "
2334 "the <emphasis>terminal</emphasis> panel. It behaves like a "
2335 "normal terminal but will match the location of the folder view "
2336 "so you can navigate using either.</para><para>The terminal panel "
2337 "is not needed for basic computer usage but can be useful for "
2338 "advanced tasks. To learn more about terminals use the help features in a "
2339 "standalone terminal application like Konsole.</para>")
2340 + panelWhatsThis);
2341
2342 QAction *focusTerminalPanel = actionCollection()->addAction(QStringLiteral("focus_terminal_panel"));
2343 focusTerminalPanel->setText(i18nc("@action:inmenu Tools", "Focus Terminal Panel"));
2344 focusTerminalPanel->setToolTip(i18nc("@info:tooltip", "Move keyboard focus to and from the Terminal panel."));
2345 focusTerminalPanel->setIcon(QIcon::fromTheme(QStringLiteral("swap-panels")));
2346 actionCollection()->setDefaultShortcut(focusTerminalPanel, Qt::CTRL | Qt::SHIFT | Qt::Key_F4);
2347 connect(focusTerminalPanel, &QAction::triggered, this, &DolphinMainWindow::toggleTerminalPanelFocus);
2348 } // endif "shell_access" allowed
2349 #endif // HAVE_TERMINAL
2350
2351 if (GeneralSettings::version() < 200) {
2352 infoDock->hide();
2353 foldersDock->hide();
2354 }
2355
2356 // Setup "Places"
2357 DolphinDockWidget *placesDock = new DolphinDockWidget(i18nc("@title:window", "Places"));
2358 placesDock->setLocked(lock);
2359 placesDock->setObjectName(QStringLiteral("placesDock"));
2360 placesDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea);
2361
2362 m_placesPanel = new PlacesPanel(placesDock);
2363 m_placesPanel->setCustomContextMenuActions({lockLayoutAction});
2364 placesDock->setWidget(m_placesPanel);
2365
2366 createPanelAction(QIcon::fromTheme(QStringLiteral("compass")), Qt::Key_F9, placesDock, QStringLiteral("show_places_panel"));
2367
2368 addDockWidget(Qt::LeftDockWidgetArea, placesDock);
2369 connect(m_placesPanel, &PlacesPanel::placeActivated, this, &DolphinMainWindow::slotPlaceActivated);
2370 connect(m_placesPanel, &PlacesPanel::tabRequested, this, &DolphinMainWindow::openNewTab);
2371 connect(m_placesPanel, &PlacesPanel::activeTabRequested, this, &DolphinMainWindow::openNewTabAndActivate);
2372 connect(m_placesPanel, &PlacesPanel::newWindowRequested, this, [this](const QUrl &url) {
2373 Dolphin::openNewWindow({url}, this);
2374 });
2375 connect(m_placesPanel, &PlacesPanel::openInSplitViewRequested, this, &DolphinMainWindow::openInSplitView);
2376 connect(m_placesPanel, &PlacesPanel::errorMessage, this, &DolphinMainWindow::showErrorMessage);
2377 connect(this, &DolphinMainWindow::urlChanged, m_placesPanel, &PlacesPanel::setUrl);
2378 connect(placesDock, &DolphinDockWidget::visibilityChanged, &DolphinUrlNavigatorsController::slotPlacesPanelVisibilityChanged);
2379 connect(placesDock, &DolphinDockWidget::visibilityChanged, this, &DolphinMainWindow::slotPlacesPanelVisibilityChanged);
2380 connect(this, &DolphinMainWindow::settingsChanged, m_placesPanel, &PlacesPanel::readSettings);
2381 connect(m_placesPanel, &PlacesPanel::storageTearDownRequested, this, &DolphinMainWindow::slotStorageTearDownFromPlacesRequested);
2382 connect(m_placesPanel, &PlacesPanel::storageTearDownExternallyRequested, this, &DolphinMainWindow::slotStorageTearDownExternallyRequested);
2383 DolphinUrlNavigatorsController::slotPlacesPanelVisibilityChanged(m_placesPanel->isVisible());
2384
2385 auto actionShowAllPlaces = new QAction(QIcon::fromTheme(QStringLiteral("view-hidden")), i18nc("@item:inmenu", "Show Hidden Places"), this);
2386 actionShowAllPlaces->setCheckable(true);
2387 actionShowAllPlaces->setDisabled(true);
2388 actionShowAllPlaces->setWhatsThis(i18nc("@info:whatsthis",
2389 "This displays "
2390 "all places in the places panel that have been hidden. They will "
2391 "appear semi-transparent and allow you to uncheck their \"Hide\" property."));
2392
2393 connect(actionShowAllPlaces, &QAction::triggered, this, [this](bool checked) {
2394 m_placesPanel->setShowAll(checked);
2395 });
2396 connect(m_placesPanel, &PlacesPanel::allPlacesShownChanged, actionShowAllPlaces, &QAction::setChecked);
2397
2398 actionCollection()
2399 ->action(QStringLiteral("show_places_panel"))
2400 ->setWhatsThis(xi18nc("@info:whatsthis",
2401 "<para>This toggles the "
2402 "<emphasis>places</emphasis> panel at the left side of the window."
2403 "</para><para>It allows you to go to locations you have "
2404 "bookmarked and to access disk or media attached to the computer "
2405 "or to the network. It also contains sections to find recently "
2406 "saved files or files of a certain type.</para>"));
2407 placesDock->setWhatsThis(xi18nc("@info:whatsthis",
2408 "<para>This is the "
2409 "<emphasis>Places</emphasis> panel. It allows you to go to locations "
2410 "you have bookmarked and to access disk or media attached to the "
2411 "computer or to the network. It also contains sections to find "
2412 "recently saved files or files of a certain type.</para><para>"
2413 "Click on an entry to go there. Click with the right mouse button "
2414 "instead to open any entry in a new tab or new window.</para>"
2415 "<para>New entries can be added by dragging folders onto this panel. "
2416 "Right-click any section or entry to hide it. Right-click an empty "
2417 "space on this panel and select <interface>Show Hidden Places"
2418 "</interface> to display it again.</para>")
2419 + panelWhatsThis);
2420
2421 QAction *focusPlacesPanel = actionCollection()->addAction(QStringLiteral("focus_places_panel"));
2422 focusPlacesPanel->setText(i18nc("@action:inmenu View", "Focus Places Panel"));
2423 focusPlacesPanel->setToolTip(i18nc("@info:tooltip", "Move keyboard focus to and from the Places panel."));
2424 focusPlacesPanel->setIcon(QIcon::fromTheme(QStringLiteral("swap-panels")));
2425 actionCollection()->setDefaultShortcut(focusPlacesPanel, Qt::CTRL | Qt::Key_P);
2426 connect(focusPlacesPanel, &QAction::triggered, this, &DolphinMainWindow::togglePlacesPanelFocus);
2427
2428 // Add actions into the "Panels" menu
2429 KActionMenu *panelsMenu = new KActionMenu(i18nc("@action:inmenu View", "Show Panels"), this);
2430 actionCollection()->addAction(QStringLiteral("panels"), panelsMenu);
2431 panelsMenu->setIcon(QIcon::fromTheme(QStringLiteral("view-sidetree")));
2432 panelsMenu->setPopupMode(QToolButton::InstantPopup);
2433 const KActionCollection *ac = actionCollection();
2434 panelsMenu->addAction(ac->action(QStringLiteral("show_places_panel")));
2435 #if HAVE_BALOO
2436 panelsMenu->addAction(ac->action(QStringLiteral("show_information_panel")));
2437 #endif
2438 panelsMenu->addAction(ac->action(QStringLiteral("show_folders_panel")));
2439 panelsMenu->addAction(ac->action(QStringLiteral("show_terminal_panel")));
2440 panelsMenu->addSeparator();
2441 panelsMenu->addAction(lockLayoutAction);
2442 panelsMenu->addSeparator();
2443 panelsMenu->addAction(actionShowAllPlaces);
2444 panelsMenu->addAction(focusPlacesPanel);
2445 panelsMenu->addAction(ac->action(QStringLiteral("focus_terminal_panel")));
2446
2447 connect(panelsMenu->menu(), &QMenu::aboutToShow, this, [actionShowAllPlaces] {
2448 actionShowAllPlaces->setEnabled(DolphinPlacesModelSingleton::instance().placesModel()->hiddenCount());
2449 });
2450 }
2451
2452 void DolphinMainWindow::updateFileAndEditActions()
2453 {
2454 const KFileItemList list = m_activeViewContainer->view()->selectedItems();
2455 const KActionCollection *col = actionCollection();
2456 KFileItemListProperties capabilitiesSource(list);
2457
2458 QAction *renameAction = col->action(KStandardAction::name(KStandardAction::RenameFile));
2459 QAction *moveToTrashAction = col->action(KStandardAction::name(KStandardAction::MoveToTrash));
2460 QAction *deleteAction = col->action(KStandardAction::name(KStandardAction::DeleteFile));
2461 QAction *cutAction = col->action(KStandardAction::name(KStandardAction::Cut));
2462 QAction *duplicateAction = col->action(QStringLiteral("duplicate")); // see DolphinViewActionHandler
2463 QAction *addToPlacesAction = col->action(QStringLiteral("add_to_places"));
2464 QAction *copyToOtherViewAction = col->action(QStringLiteral("copy_to_inactive_split_view"));
2465 QAction *moveToOtherViewAction = col->action(QStringLiteral("move_to_inactive_split_view"));
2466 QAction *copyLocation = col->action(QStringLiteral("copy_location"));
2467
2468 if (list.isEmpty()) {
2469 stateChanged(QStringLiteral("has_no_selection"));
2470
2471 // All actions that need a selection to function can be enabled because they should trigger selection mode.
2472 renameAction->setEnabled(true);
2473 moveToTrashAction->setEnabled(true);
2474 deleteAction->setEnabled(true);
2475 cutAction->setEnabled(true);
2476 duplicateAction->setEnabled(true);
2477 addToPlacesAction->setEnabled(true);
2478 copyLocation->setEnabled(true);
2479 // Them triggering selection mode and not directly acting on selected items is signified by adding "…" to their text.
2480 m_actionTextHelper->textsWhenNothingIsSelectedEnabled(true);
2481
2482 } else {
2483 m_actionTextHelper->textsWhenNothingIsSelectedEnabled(false);
2484 stateChanged(QStringLiteral("has_selection"));
2485
2486 QAction *deleteWithTrashShortcut = col->action(QStringLiteral("delete_shortcut")); // see DolphinViewActionHandler
2487 QAction *showTarget = col->action(QStringLiteral("show_target"));
2488
2489 if (list.length() == 1 && list.first().isDir()) {
2490 addToPlacesAction->setEnabled(true);
2491 } else {
2492 addToPlacesAction->setEnabled(false);
2493 }
2494
2495 const bool enableMoveToTrash = capabilitiesSource.isLocal() && capabilitiesSource.supportsMoving();
2496
2497 renameAction->setEnabled(capabilitiesSource.supportsMoving());
2498 m_disabledActionNotifier->setDisabledReason(renameAction, i18nc("@info", "Cannot rename: You do not have permission to rename items in this folder."));
2499 deleteAction->setEnabled(capabilitiesSource.supportsDeleting());
2500 m_disabledActionNotifier->setDisabledReason(deleteAction,
2501 i18nc("@info", "Cannot delete: You do not have permission to remove items from this folder."));
2502 cutAction->setEnabled(capabilitiesSource.supportsMoving());
2503 m_disabledActionNotifier->setDisabledReason(cutAction, i18nc("@info", "Cannot cut: You do not have permission to move items from this folder."));
2504 copyLocation->setEnabled(list.length() == 1);
2505 showTarget->setEnabled(list.length() == 1 && list.at(0).isLink());
2506 duplicateAction->setEnabled(capabilitiesSource.supportsWriting());
2507 m_disabledActionNotifier->setDisabledReason(duplicateAction,
2508 i18nc("@info", "Cannot duplicate here: You do not have permission to create items in this folder."));
2509
2510 if (enableMoveToTrash) {
2511 moveToTrashAction->setEnabled(true);
2512 deleteWithTrashShortcut->setEnabled(false);
2513 m_disabledActionNotifier->clearDisabledReason(deleteWithTrashShortcut);
2514 } else {
2515 moveToTrashAction->setEnabled(false);
2516 deleteWithTrashShortcut->setEnabled(capabilitiesSource.supportsDeleting());
2517 m_disabledActionNotifier->setDisabledReason(deleteWithTrashShortcut,
2518 i18nc("@info", "Cannot delete: You do not have permission to remove items from this folder."));
2519 }
2520 }
2521
2522 if (!m_tabWidget->currentTabPage()->splitViewEnabled()) {
2523 // No need to set the disabled reason here, as it's obvious to the user that the reason is the split view being disabled.
2524 copyToOtherViewAction->setEnabled(false);
2525 m_disabledActionNotifier->clearDisabledReason(copyToOtherViewAction);
2526 moveToOtherViewAction->setEnabled(false);
2527 m_disabledActionNotifier->clearDisabledReason(moveToOtherViewAction);
2528 } else if (list.isEmpty()) {
2529 copyToOtherViewAction->setEnabled(false);
2530 m_disabledActionNotifier->setDisabledReason(copyToOtherViewAction, i18nc("@info", "Cannot copy to other view: No files selected."));
2531 moveToOtherViewAction->setEnabled(false);
2532 m_disabledActionNotifier->setDisabledReason(moveToOtherViewAction, i18nc("@info", "Cannot move to other view: No files selected."));
2533 } else {
2534 DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
2535 KFileItem capabilitiesDestination;
2536
2537 if (tabPage->primaryViewActive()) {
2538 capabilitiesDestination = tabPage->secondaryViewContainer()->rootItem();
2539 } else {
2540 capabilitiesDestination = tabPage->primaryViewContainer()->rootItem();
2541 }
2542
2543 const auto destUrl = capabilitiesDestination.url();
2544 const bool allNotTargetOrigin = std::all_of(list.cbegin(), list.cend(), [destUrl](const KFileItem &item) {
2545 return item.url().adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash) != destUrl;
2546 });
2547
2548 if (!allNotTargetOrigin) {
2549 copyToOtherViewAction->setEnabled(false);
2550 m_disabledActionNotifier->setDisabledReason(copyToOtherViewAction,
2551 i18nc("@info", "Cannot copy to other view: The other view already contains these items."));
2552 moveToOtherViewAction->setEnabled(false);
2553 m_disabledActionNotifier->setDisabledReason(moveToOtherViewAction,
2554 i18nc("@info", "Cannot move to other view: The other view already contains these items."));
2555 } else if (!capabilitiesDestination.isWritable()) {
2556 copyToOtherViewAction->setEnabled(false);
2557 m_disabledActionNotifier->setDisabledReason(
2558 copyToOtherViewAction,
2559 i18nc("@info", "Cannot copy to other view: You do not have permission to write into the destination folder."));
2560 moveToOtherViewAction->setEnabled(false);
2561 m_disabledActionNotifier->setDisabledReason(
2562 moveToOtherViewAction,
2563 i18nc("@info", "Cannot move to other view: You do not have permission to write into the destination folder."));
2564 } else {
2565 copyToOtherViewAction->setEnabled(true);
2566 moveToOtherViewAction->setEnabled(capabilitiesSource.supportsMoving());
2567 m_disabledActionNotifier->setDisabledReason(
2568 moveToOtherViewAction,
2569 i18nc("@info", "Cannot move to other view: You do not have permission to move items from this folder."));
2570 }
2571 }
2572 }
2573
2574 void DolphinMainWindow::updateViewActions()
2575 {
2576 m_actionHandler->updateViewActions();
2577
2578 QAction *toggleFilterBarAction = actionCollection()->action(QStringLiteral("toggle_filter"));
2579 toggleFilterBarAction->setChecked(m_activeViewContainer->isFilterBarVisible());
2580
2581 updateSplitActions();
2582 }
2583
2584 void DolphinMainWindow::updateGoActions()
2585 {
2586 QAction *goUpAction = actionCollection()->action(KStandardAction::name(KStandardAction::Up));
2587 const QUrl currentUrl = m_activeViewContainer->url();
2588 // I think this is one of the best places to firstly be confronted
2589 // with a file system and its hierarchy. Talking about the root
2590 // directory might seem too much here but it is the question that
2591 // naturally arises in this context.
2592 goUpAction->setWhatsThis(xi18nc("@info:whatsthis",
2593 "<para>Go to "
2594 "the folder that contains the currently viewed one.</para>"
2595 "<para>All files and folders are organized in a hierarchical "
2596 "<emphasis>file system</emphasis>. At the top of this hierarchy is "
2597 "a directory that contains all data connected to this computer"
2598 "—the <emphasis>root directory</emphasis>.</para>"));
2599 goUpAction->setEnabled(KIO::upUrl(currentUrl) != currentUrl);
2600 }
2601
2602 void DolphinMainWindow::refreshViews()
2603 {
2604 m_tabWidget->refreshViews();
2605
2606 if (GeneralSettings::modifiedStartupSettings()) {
2607 updateWindowTitle();
2608 }
2609
2610 updateSplitActions();
2611
2612 Q_EMIT settingsChanged();
2613 }
2614
2615 void DolphinMainWindow::clearStatusBar()
2616 {
2617 m_activeViewContainer->statusBar()->resetToDefaultText();
2618 }
2619
2620 void DolphinMainWindow::connectViewSignals(DolphinViewContainer *container)
2621 {
2622 connect(container, &DolphinViewContainer::showFilterBarChanged, this, &DolphinMainWindow::updateFilterBarAction);
2623 connect(container, &DolphinViewContainer::writeStateChanged, this, &DolphinMainWindow::slotWriteStateChanged);
2624 slotWriteStateChanged(container->view()->isFolderWritable());
2625 connect(container, &DolphinViewContainer::searchModeEnabledChanged, this, &DolphinMainWindow::updateSearchAction);
2626 connect(container, &DolphinViewContainer::captionChanged, this, &DolphinMainWindow::updateWindowTitle);
2627 connect(container, &DolphinViewContainer::tabRequested, this, &DolphinMainWindow::openNewTab);
2628 connect(container, &DolphinViewContainer::activeTabRequested, this, &DolphinMainWindow::openNewTabAndActivate);
2629
2630 const QAction *toggleSearchAction = actionCollection()->action(QStringLiteral("toggle_search"));
2631 connect(toggleSearchAction, &QAction::triggered, container, &DolphinViewContainer::setSearchModeEnabled);
2632
2633 // Make the toggled state of the selection mode actions visually follow the selection mode state of the view.
2634 auto toggleSelectionModeAction = actionCollection()->action(QStringLiteral("toggle_selection_mode"));
2635 toggleSelectionModeAction->setChecked(m_activeViewContainer->isSelectionModeEnabled());
2636 connect(m_activeViewContainer, &DolphinViewContainer::selectionModeChanged, toggleSelectionModeAction, &QAction::setChecked);
2637
2638 const DolphinView *view = container->view();
2639 connect(view, &DolphinView::selectionChanged, this, &DolphinMainWindow::slotSelectionChanged);
2640 connect(view, &DolphinView::requestItemInfo, this, &DolphinMainWindow::requestItemInfo);
2641 connect(view, &DolphinView::fileItemsChanged, this, &DolphinMainWindow::fileItemsChanged);
2642 connect(view, &DolphinView::tabRequested, this, &DolphinMainWindow::openNewTab);
2643 connect(view, &DolphinView::activeTabRequested, this, &DolphinMainWindow::openNewTabAndActivate);
2644 connect(view, &DolphinView::windowRequested, this, &DolphinMainWindow::openNewWindow);
2645 connect(view, &DolphinView::requestContextMenu, this, &DolphinMainWindow::openContextMenu);
2646 connect(view, &DolphinView::directoryLoadingStarted, this, &DolphinMainWindow::enableStopAction);
2647 connect(view, &DolphinView::directoryLoadingCompleted, this, &DolphinMainWindow::disableStopAction);
2648 connect(view, &DolphinView::directoryLoadingCompleted, this, &DolphinMainWindow::slotDirectoryLoadingCompleted);
2649 connect(view, &DolphinView::goBackRequested, this, &DolphinMainWindow::goBack);
2650 connect(view, &DolphinView::goForwardRequested, this, &DolphinMainWindow::goForward);
2651 connect(view, &DolphinView::urlActivated, this, &DolphinMainWindow::handleUrl);
2652 connect(view, &DolphinView::goUpRequested, this, &DolphinMainWindow::goUp);
2653 connect(view, &DolphinView::doubleClickViewBackground, this, &DolphinMainWindow::slotDoubleClickViewBackground);
2654
2655 connect(container->urlNavigatorInternalWithHistory(), &KUrlNavigator::urlChanged, this, &DolphinMainWindow::changeUrl);
2656 connect(container->urlNavigatorInternalWithHistory(), &KUrlNavigator::historyChanged, this, &DolphinMainWindow::updateHistory);
2657
2658 auto navigators = static_cast<DolphinNavigatorsWidgetAction *>(actionCollection()->action(QStringLiteral("url_navigators")));
2659 const KUrlNavigator *navigator =
2660 m_tabWidget->currentTabPage()->primaryViewActive() ? navigators->primaryUrlNavigator() : navigators->secondaryUrlNavigator();
2661
2662 QAction *editableLocactionAction = actionCollection()->action(QStringLiteral("editable_location"));
2663 editableLocactionAction->setChecked(navigator->isUrlEditable());
2664 connect(navigator, &KUrlNavigator::editableStateChanged, this, &DolphinMainWindow::slotEditableStateChanged);
2665 connect(navigator, &KUrlNavigator::tabRequested, this, &DolphinMainWindow::openNewTab);
2666 connect(navigator, &KUrlNavigator::activeTabRequested, this, &DolphinMainWindow::openNewTabAndActivate);
2667 connect(navigator, &KUrlNavigator::newWindowRequested, this, &DolphinMainWindow::openNewWindow);
2668 }
2669
2670 void DolphinMainWindow::updateSplitActions()
2671 {
2672 QAction *popoutSplitAction = actionCollection()->action(QStringLiteral("popout_split_view"));
2673
2674 auto setActionPopupMode = [this](KActionMenu *action, QToolButton::ToolButtonPopupMode popupMode) {
2675 action->setPopupMode(popupMode);
2676 if (auto *buttonForAction = qobject_cast<QToolButton *>(toolBar()->widgetForAction(action))) {
2677 buttonForAction->setPopupMode(popupMode);
2678 }
2679 };
2680
2681 const DolphinTabPage *tabPage = m_tabWidget->currentTabPage();
2682 if (tabPage->splitViewEnabled()) {
2683 if (GeneralSettings::closeActiveSplitView() ? tabPage->primaryViewActive() : !tabPage->primaryViewActive()) {
2684 m_splitViewAction->setText(i18nc("@action:intoolbar Close left view", "Close"));
2685 m_splitViewAction->setToolTip(i18nc("@info", "Close left view"));
2686 m_splitViewAction->setIcon(QIcon::fromTheme(QStringLiteral("view-left-close")));
2687 popoutSplitAction->setText(i18nc("@action:intoolbar Move left view to a new window", "Pop out Left View"));
2688 popoutSplitAction->setToolTip(i18nc("@info", "Move left view to a new window"));
2689 } else {
2690 m_splitViewAction->setText(i18nc("@action:intoolbar Close right view", "Close"));
2691 m_splitViewAction->setToolTip(i18nc("@info", "Close right view"));
2692 m_splitViewAction->setIcon(QIcon::fromTheme(QStringLiteral("view-right-close")));
2693 popoutSplitAction->setText(i18nc("@action:intoolbar Move right view to a new window", "Pop out Right View"));
2694 popoutSplitAction->setToolTip(i18nc("@info", "Move right view to a new window"));
2695 }
2696 popoutSplitAction->setEnabled(true);
2697 if (!m_splitViewAction->menu()) {
2698 setActionPopupMode(m_splitViewAction, QToolButton::MenuButtonPopup);
2699 m_splitViewAction->setMenu(new QMenu);
2700 m_splitViewAction->addAction(popoutSplitAction);
2701 }
2702 } else {
2703 m_splitViewAction->setText(i18nc("@action:intoolbar Split view", "Split"));
2704 m_splitViewAction->setToolTip(i18nc("@info", "Split view"));
2705 m_splitViewAction->setIcon(QIcon::fromTheme(QStringLiteral("view-right-new")));
2706 popoutSplitAction->setText(i18nc("@action:intoolbar Move view in focus to a new window", "Pop out"));
2707 popoutSplitAction->setEnabled(false);
2708 if (m_splitViewAction->menu()) {
2709 m_splitViewAction->removeAction(popoutSplitAction);
2710 m_splitViewAction->menu()->deleteLater();
2711 m_splitViewAction->setMenu(nullptr);
2712 setActionPopupMode(m_splitViewAction, QToolButton::DelayedPopup);
2713 }
2714 }
2715
2716 // Update state from toolbar action
2717 m_splitViewMenuAction->setText(m_splitViewAction->text());
2718 m_splitViewMenuAction->setToolTip(m_splitViewAction->toolTip());
2719 m_splitViewMenuAction->setIcon(m_splitViewAction->icon());
2720 }
2721
2722 void DolphinMainWindow::updateAllowedToolbarAreas()
2723 {
2724 auto navigators = static_cast<DolphinNavigatorsWidgetAction *>(actionCollection()->action(QStringLiteral("url_navigators")));
2725 if (toolBar()->actions().contains(navigators)) {
2726 toolBar()->setAllowedAreas(Qt::TopToolBarArea | Qt::BottomToolBarArea);
2727 if (toolBarArea(toolBar()) == Qt::LeftToolBarArea || toolBarArea(toolBar()) == Qt::RightToolBarArea) {
2728 addToolBar(Qt::TopToolBarArea, toolBar());
2729 }
2730 } else {
2731 toolBar()->setAllowedAreas(Qt::AllToolBarAreas);
2732 }
2733 }
2734
2735 bool DolphinMainWindow::isKompareInstalled() const
2736 {
2737 static bool initialized = false;
2738 static bool installed = false;
2739 if (!initialized) {
2740 // TODO: maybe replace this approach later by using a menu
2741 // plugin like kdiff3plugin.cpp
2742 installed = !QStandardPaths::findExecutable(QStringLiteral("kompare")).isEmpty();
2743 initialized = true;
2744 }
2745 return installed;
2746 }
2747
2748 void DolphinMainWindow::createPanelAction(const QIcon &icon, const QKeySequence &shortcut, QDockWidget *dockWidget, const QString &actionName)
2749 {
2750 auto dockAction = dockWidget->toggleViewAction();
2751 dockAction->setIcon(icon);
2752 dockAction->setEnabled(true);
2753
2754 QAction *panelAction = actionCollection()->addAction(actionName, dockAction);
2755 actionCollection()->setDefaultShortcut(panelAction, shortcut);
2756 }
2757 // clang-format off
2758 void DolphinMainWindow::setupWhatsThis()
2759 {
2760 // main widgets
2761 menuBar()->setWhatsThis(xi18nc("@info:whatsthis", "<para>This is the "
2762 "<emphasis>Menubar</emphasis>. It provides access to commands and "
2763 "configuration options. Left-click on any of the menus on this "
2764 "bar to see its contents.</para><para>The Menubar can be hidden "
2765 "by unchecking <interface>Settings|Show Menubar</interface>. Then "
2766 "most of its contents become available through a <interface>Menu"
2767 "</interface> button on the <emphasis>Toolbar</emphasis>.</para>"));
2768 toolBar()->setWhatsThis(xi18nc("@info:whatsthis", "<para>This is the "
2769 "<emphasis>Toolbar</emphasis>. It allows quick access to "
2770 "frequently used actions.</para><para>It is highly customizable. "
2771 "All items you see in the <interface>Menu</interface> or "
2772 "in the <interface>Menubar</interface> can be placed on the "
2773 "Toolbar. Just right-click on it and select <interface>Configure "
2774 "Toolbars…</interface> or find this action within the <interface>"
2775 "menu</interface>."
2776 "</para><para>The location of the bar and the style of its "
2777 "buttons can also be changed in the right-click menu. Right-click "
2778 "a button if you want to show or hide its text.</para>"));
2779 m_tabWidget->setWhatsThis(xi18nc("@info:whatsthis main view",
2780 "<para>Here you can see the <emphasis>folders</emphasis> and "
2781 "<emphasis>files</emphasis> that are at the location described in "
2782 "the <interface>Location Bar</interface> above. This area is the "
2783 "central part of this application where you navigate to the files "
2784 "you want to use.</para><para>For an elaborate and general "
2785 "introduction to this application <link "
2786 "url='https://userbase.kde.org/Dolphin/File_Management#Introduction_to_Dolphin'>"
2787 "click here</link>. This will open an introductory article from "
2788 "the <emphasis>KDE UserBase Wiki</emphasis>.</para><para>For brief "
2789 "explanations of all the features of this <emphasis>view</emphasis> "
2790 "<link url='help:/dolphin/dolphin-view.html'>click here</link> "
2791 "instead. This will open a page from the <emphasis>Handbook"
2792 "</emphasis> that covers the basics.</para>"));
2793
2794 // Settings menu
2795 actionCollection()->action(KStandardAction::name(KStandardAction::KeyBindings))
2796 ->setWhatsThis(xi18nc("@info:whatsthis","<para>This opens a window "
2797 "that lists the <emphasis>keyboard shortcuts</emphasis>.<nl/>"
2798 "There you can set up key combinations to trigger an action when "
2799 "they are pressed simultaneously. All commands in this application can "
2800 "be triggered this way.</para>"));
2801 actionCollection()->action(KStandardAction::name(KStandardAction::ConfigureToolbars))
2802 ->setWhatsThis(xi18nc("@info:whatsthis","<para>This opens a window in which "
2803 "you can change which buttons appear on the <emphasis>Toolbar</emphasis>.</para>"
2804 "<para>All items you see in the <interface>Menu</interface> can also be placed on the Toolbar.</para>"));
2805 actionCollection()->action(KStandardAction::name(KStandardAction::Preferences))
2806 ->setWhatsThis(xi18nc("@info:whatsthis","This opens a window where you can "
2807 "change a multitude of settings for this application. For an explanation "
2808 "of the various settings go to the chapter <emphasis>Configuring Dolphin"
2809 "</emphasis> in <interface>Help|Dolphin Handbook</interface>."));
2810
2811 // Help menu
2812
2813 auto setStandardActionWhatsThis = [this](KStandardAction::StandardAction actionId,
2814 const QString &whatsThis) {
2815 // Check for the existence of an action since it can be restricted through the Kiosk system
2816 if (auto *action = actionCollection()->action(KStandardAction::name(actionId))) {
2817 action->setWhatsThis(whatsThis);
2818 }
2819 };
2820
2821 // i18n: If the external link isn't available in your language it might make
2822 // sense to state the external link's language in brackets to not
2823 // frustrate the user. If there are multiple languages that the user might
2824 // know with a reasonable chance you might want to have 2 external links.
2825 // The same might be true for any external link you translate.
2826 setStandardActionWhatsThis(KStandardAction::HelpContents, xi18nc("@info:whatsthis handbook", "<para>This opens the Handbook for this application. It provides explanations for every part of <emphasis>Dolphin</emphasis>.</para><para>If you want more elaborate introductions to the different features of <emphasis>Dolphin</emphasis> <link url='https://userbase.kde.org/Dolphin/File_Management'>click here</link>. It will open the dedicated page in the KDE UserBase Wiki.</para>"));
2827 // (The i18n call should be completely in the line following the i18n: comment without any line breaks within the i18n call or the comment might not be correctly extracted. See: https://commits.kde.org/kxmlgui/a31135046e1b3335b5d7bbbe6aa9a883ce3284c1 )
2828
2829 setStandardActionWhatsThis(KStandardAction::WhatsThis,
2830 xi18nc("@info:whatsthis whatsthis button",
2831 "<para>This is the button that invokes the help feature you are "
2832 "using right now! Click it, then click any component of this "
2833 "application to ask \"What's this?\" about it. The mouse cursor "
2834 "will change appearance if no help is available for a spot.</para>"
2835 "<para>There are two other ways to get help: "
2836 "The <link url='help:/dolphin/index.html'>Dolphin Handbook</link> and "
2837 "the <link url='https://userbase.kde.org/Dolphin/File_Management'>KDE "
2838 "UserBase Wiki</link>.</para><para>The \"What's this?\" help is "
2839 "missing in most other windows so don't get too used to this.</para>"));
2840
2841 setStandardActionWhatsThis(KStandardAction::ReportBug,
2842 xi18nc("@info:whatsthis","<para>This opens a "
2843 "window that will guide you through reporting errors or flaws "
2844 "in this application or in other KDE software.</para>"
2845 "<para>High-quality bug reports are much appreciated. To learn "
2846 "how to make your bug report as effective as possible "
2847 "<link url='https://community.kde.org/Get_Involved/Bug_Reporting'>"
2848 "click here</link>.</para>"));
2849
2850 setStandardActionWhatsThis(KStandardAction::Donate,
2851 xi18nc("@info:whatsthis", "<para>This opens a "
2852 "<emphasis>web page</emphasis> where you can donate to "
2853 "support the continued work on this application and many "
2854 "other projects by the <emphasis>KDE</emphasis> community.</para>"
2855 "<para>Donating is the easiest and fastest way to efficiently "
2856 "support KDE and its projects. KDE projects are available for "
2857 "free therefore your donation is needed to cover things that "
2858 "require money like servers, contributor meetings, etc.</para>"
2859 "<para><emphasis>KDE e.V.</emphasis> is the non-profit "
2860 "organization behind the KDE community.</para>"));
2861
2862 setStandardActionWhatsThis(KStandardAction::SwitchApplicationLanguage,
2863 xi18nc("@info:whatsthis",
2864 "With this you can change the language this application uses."
2865 "<nl/>You can even set secondary languages which will be used "
2866 "if texts are not available in your preferred language."));
2867
2868 setStandardActionWhatsThis(KStandardAction::AboutApp,
2869 xi18nc("@info:whatsthis","This opens a "
2870 "window that informs you about the version, license, "
2871 "used libraries and maintainers of this application."));
2872
2873 setStandardActionWhatsThis(KStandardAction::AboutKDE,
2874 xi18nc("@info:whatsthis","This opens a "
2875 "window with information about <emphasis>KDE</emphasis>. "
2876 "The KDE community are the people behind this free software."
2877 "<nl/>If you like using this application but don't know "
2878 "about KDE or want to see a cute dragon have a look!"));
2879 }
2880 // clang-format on
2881
2882 bool DolphinMainWindow::addHamburgerMenuToToolbar()
2883 {
2884 QDomDocument domDocument = KXMLGUIClient::domDocument();
2885 if (domDocument.isNull()) {
2886 return false;
2887 }
2888 QDomNode toolbar = domDocument.elementsByTagName(QStringLiteral("ToolBar")).at(0);
2889 if (toolbar.isNull()) {
2890 return false;
2891 }
2892
2893 QDomElement hamburgerMenuElement = domDocument.createElement(QStringLiteral("Action"));
2894 hamburgerMenuElement.setAttribute(QStringLiteral("name"), QStringLiteral("hamburger_menu"));
2895 toolbar.appendChild(hamburgerMenuElement);
2896
2897 KXMLGUIFactory::saveConfigFile(domDocument, xmlFile());
2898 reloadXML();
2899 createGUI();
2900 return true;
2901 // Make sure to also remove the <KXMLGUIFactory> and <QDomDocument> include
2902 // whenever this method is removed (maybe in the year ~2026).
2903 }
2904
2905 // Set a sane initial window size
2906 QSize DolphinMainWindow::sizeHint() const
2907 {
2908 return KXmlGuiWindow::sizeHint().expandedTo(QSize(760, 550));
2909 }
2910
2911 void DolphinMainWindow::saveNewToolbarConfig()
2912 {
2913 KXmlGuiWindow::saveNewToolbarConfig(); // Applies the new config. This has to be called first
2914 // because the rest of this method decides things
2915 // based on the new config.
2916 auto navigators = static_cast<DolphinNavigatorsWidgetAction *>(actionCollection()->action(QStringLiteral("url_navigators")));
2917 if (!toolBar()->actions().contains(navigators)) {
2918 m_tabWidget->currentTabPage()->insertNavigatorsWidget(navigators);
2919 }
2920 updateAllowedToolbarAreas();
2921 (static_cast<KHamburgerMenu *>(actionCollection()->action(KStandardAction::name(KStandardAction::HamburgerMenu))))->hideActionsOf(toolBar());
2922 }
2923
2924 void DolphinMainWindow::toggleTerminalPanelFocus()
2925 {
2926 if (!m_terminalPanel->isVisible()) {
2927 actionCollection()->action(QStringLiteral("show_terminal_panel"))->trigger(); // Also moves focus to the panel.
2928 actionCollection()->action(QStringLiteral("focus_terminal_panel"))->setText(i18nc("@action:inmenu Tools", "Defocus Terminal Panel"));
2929 return;
2930 }
2931
2932 if (m_terminalPanel->terminalHasFocus()) {
2933 m_activeViewContainer->view()->setFocus(Qt::FocusReason::ShortcutFocusReason);
2934 actionCollection()->action(QStringLiteral("focus_terminal_panel"))->setText(i18nc("@action:inmenu Tools", "Focus Terminal Panel"));
2935 return;
2936 }
2937
2938 m_terminalPanel->setFocus(Qt::FocusReason::ShortcutFocusReason);
2939 actionCollection()->action(QStringLiteral("focus_terminal_panel"))->setText(i18nc("@action:inmenu Tools", "Defocus Terminal Panel"));
2940 }
2941
2942 void DolphinMainWindow::togglePlacesPanelFocus()
2943 {
2944 if (!m_placesPanel->isVisible()) {
2945 actionCollection()->action(QStringLiteral("show_places_panel"))->trigger(); // Also moves focus to the panel.
2946 actionCollection()->action(QStringLiteral("focus_places_panel"))->setText(i18nc("@action:inmenu View", "Defocus Terminal Panel"));
2947 return;
2948 }
2949
2950 if (m_placesPanel->hasFocus()) {
2951 m_activeViewContainer->view()->setFocus(Qt::FocusReason::ShortcutFocusReason);
2952 actionCollection()->action(QStringLiteral("focus_places_panel"))->setText(i18nc("@action:inmenu View", "Focus Places Panel"));
2953 return;
2954 }
2955
2956 m_placesPanel->setFocus(Qt::FocusReason::ShortcutFocusReason);
2957 actionCollection()->action(QStringLiteral("focus_places_panel"))->setText(i18nc("@action:inmenu View", "Defocus Places Panel"));
2958 }
2959
2960 DolphinMainWindow::UndoUiInterface::UndoUiInterface()
2961 : KIO::FileUndoManager::UiInterface()
2962 {
2963 }
2964
2965 DolphinMainWindow::UndoUiInterface::~UndoUiInterface()
2966 {
2967 }
2968
2969 void DolphinMainWindow::UndoUiInterface::jobError(KIO::Job *job)
2970 {
2971 DolphinMainWindow *mainWin = qobject_cast<DolphinMainWindow *>(parentWidget());
2972 if (mainWin) {
2973 DolphinViewContainer *container = mainWin->activeViewContainer();
2974 container->showMessage(job->errorString(), KMessageWidget::Error);
2975 } else {
2976 KIO::FileUndoManager::UiInterface::jobError(job);
2977 }
2978 }
2979
2980 bool DolphinMainWindow::isUrlOpen(const QString &url)
2981 {
2982 return m_tabWidget->isUrlOpen(QUrl::fromUserInput(url));
2983 }
2984
2985 bool DolphinMainWindow::isItemVisibleInAnyView(const QString &urlOfItem)
2986 {
2987 return m_tabWidget->isItemVisibleInAnyView(QUrl::fromUserInput(urlOfItem));
2988 }
2989
2990 void DolphinMainWindow::slotDoubleClickViewBackground(Qt::MouseButton button)
2991 {
2992 if (button != Qt::MouseButton::LeftButton) {
2993 // only handle left mouse button for now
2994 return;
2995 }
2996
2997 GeneralSettings *settings = GeneralSettings::self();
2998 QString clickAction = settings->doubleClickViewAction();
2999
3000 DolphinView *view = activeViewContainer()->view();
3001 if (view == nullptr || clickAction == "none") {
3002 return;
3003 }
3004
3005 if (clickAction == customCommand) {
3006 // run custom command set by the user
3007 QString path = view->url().toLocalFile();
3008 QString clickCustomAction = settings->doubleClickViewCustomAction();
3009 clickCustomAction.replace("{path}", path.prepend('"').append('"'));
3010
3011 m_job = new KIO::CommandLauncherJob(clickCustomAction);
3012 m_job->setUiDelegate(new KDialogJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, this));
3013 m_job->start();
3014
3015 } else {
3016 // get the action set by the user and trigger it
3017 const KActionCollection *actions = actionCollection();
3018 QAction *action = actions->action(clickAction);
3019 if (action == nullptr) {
3020 qCWarning(DolphinDebug) << QStringLiteral("Double-click view: action `%1` was not found").arg(clickAction);
3021 return;
3022 }
3023 action->trigger();
3024 }
3025 }
3026
3027 #include "moc_dolphinmainwindow.cpp"