okular/shell/shell.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

874 lines
30 KiB
C++
Raw Normal View History

/***************************************************************************
* Copyright (C) 2002 by Wilco Greven <greven@kde.org> *
* Copyright (C) 2002 by Chris Cheney <ccheney@cheney.cx> *
* Copyright (C) 2003 by Benjamin Meyer <benjamin@csh.rit.edu> *
* Copyright (C) 2003-2004 by Christophe Devriese *
* <Christophe.Devriese@student.kuleuven.ac.be> *
* Copyright (C) 2003 by Laurent Montel <montel@kde.org> *
2013-03-14 22:09:07 +00:00
* Copyright (C) 2003-2004 by Albert Astals Cid <aacid@kde.org> *
* Copyright (C) 2003 by Luboš Luňák <l.lunak@kde.org> *
* Copyright (C) 2003 by Malcolm Hunter <malcolm.hunter@gmx.co.uk> *
* Copyright (C) 2004 by Dominique Devriese <devriese@kde.org> *
* Copyright (C) 2004 by Dirk Mueller <mueller@kde.org> *
* Copyright (C) 2017 Klarälvdalens Datakonsult AB, a KDAB Group *
* company, info@kdab.com. Work sponsored by the *
* LiMux project of the city of Munich *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "shell.h"
// qt/kde includes
2014-08-13 20:57:48 +00:00
#include <KActionCollection>
#include <KConfigGroup>
#include <KIO/Global>
#include <KLocalizedString>
2014-08-13 20:57:48 +00:00
#include <KMessageBox>
#include <KPluginLoader>
#include <KRecentFilesAction>
#include <KServiceTypeTrader>
2014-10-19 13:17:37 +00:00
#include <KSharedConfig>
2014-08-13 20:57:48 +00:00
#include <KStandardAction>
#include <KToggleFullScreenAction>
#include <KToolBar>
#include <KUrlMimeData>
#include <KWindowSystem>
#include <KXMLGUIFactory>
#include <QApplication>
#include <QDBusConnection>
#include <QDragMoveEvent>
2014-10-19 13:17:37 +00:00
#include <QFileDialog>
2014-08-13 20:57:48 +00:00
#include <QMenuBar>
#include <QObject>
#include <QScreen>
#include <QTabBar>
2014-08-13 20:57:48 +00:00
#include <QTabWidget>
2014-08-13 11:07:44 +00:00
#include <QTimer>
2018-04-13 15:35:17 +00:00
#ifdef WITH_KACTIVITIES
#include <KActivities/ResourceInstance>
#endif
#include <kio_version.h>
#include <kxmlgui_version.h>
// local includes
#include "../interfaces/viewerinterface.h"
#include "kdocumentviewer.h"
#include "shellutils.h"
static const char *shouldShowMenuBarComingFromFullScreen = "shouldShowMenuBarComingFromFullScreen";
static const char *shouldShowToolBarComingFromFullScreen = "shouldShowToolBarComingFromFullScreen";
static const char *const SESSION_URL_KEY = "Urls";
static const char *const SESSION_TAB_KEY = "ActiveTab";
Shell::Shell(const QString &serializedOptions)
: KParts::MainWindow()
, m_menuBarWasShown(true)
, m_toolBarWasShown(true)
#ifndef Q_OS_WIN
, m_activityResource(nullptr)
#endif
, m_isValid(true)
{
2015-10-29 12:37:11 +00:00
setObjectName(QStringLiteral("okular::Shell#"));
setContextMenuPolicy(Qt::NoContextMenu);
// otherwise .rc file won't be found by unit test
setComponentName(QStringLiteral("okular"), QString());
// set the shell's ui resource file
2015-10-29 12:37:11 +00:00
setXMLFile(QStringLiteral("shell.rc"));
m_fileformatsscanned = false;
2014-08-10 20:01:13 +00:00
m_showMenuBarAction = nullptr;
// this routine will find and load our Part. it finds the Part by
2015-10-29 12:37:11 +00:00
// name which is a bad idea usually.. but it's alright in this
// case since our Part is made for this Shell
2015-10-29 12:37:11 +00:00
KPluginLoader loader(QStringLiteral("okularpart"));
m_partFactory = loader.factory();
if (!m_partFactory) {
// if we couldn't find our Part, we exit since the Shell by
// itself can't do anything useful
m_isValid = false;
KMessageBox::error(this, i18n("Unable to find the Okular component: %1", loader.errorString()));
return;
}
2020-02-20 14:48:08 +00:00
// now that the Part plugin is loaded, create the part
KParts::ReadWritePart *const firstPart = m_partFactory->create<KParts::ReadWritePart>(this);
if (firstPart) {
// Setup tab bar
2014-10-17 21:30:54 +00:00
m_tabWidget = new QTabWidget(this);
m_tabWidget->setTabsClosable(true);
m_tabWidget->setElideMode(Qt::ElideRight);
m_tabWidget->tabBar()->hide();
m_tabWidget->setDocumentMode(true);
m_tabWidget->setMovable(true);
m_tabWidget->setAcceptDrops(true);
m_tabWidget->tabBar()->installEventFilter(this);
2015-10-29 12:37:11 +00:00
connect(m_tabWidget, &QTabWidget::currentChanged, this, &Shell::setActiveTab);
connect(m_tabWidget, &QTabWidget::tabCloseRequested, this, &Shell::closeTab);
connect(m_tabWidget->tabBar(), &QTabBar::tabMoved, this, &Shell::moveTabData);
setCentralWidget(m_tabWidget);
// then, setup our actions
setupActions();
2015-10-29 12:37:11 +00:00
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit, this, &QObject::deleteLater);
// and integrate the part's GUI with the shell's
setupGUI(Keys | ToolBar | Save);
m_tabs.append(firstPart);
Overhaul annotations UX Create a new new annotation toolbar to replace the current one as discussed in the task T8076. Fixes: BUG: 386578 BUG: 374728 BUG: 352310 BUG: 330518 BUG: 341914 BUG: 157289 BUG: 358057 BUG: 412767 BUG: 413595 BUG: 420462 FIXED-IN: 1.11.0 Test Plan Before testing this revision Delete or Temporary move aside the following files: ~/.config/okularpartrc ~/.config/okularrc ~/.local/share/kxmlgui5/okular/part.rc ~/.local/share/kxmlgui5/okular/shell.rc Nomenclature Actions in the main toolbar: Quick annotations Actions in the annotation toolbar: Annotation actions Highlighter, Underline, Squiggle, Strike out, Typewriter, Inline note, Popup note, Freehand line, Arrow, Straight line, Rectangle, Ellipse, Polygon, Stamp Annotation config actions Line width, Color, Inner color, Opacity, Font, Annotation settings Other actions Add to Quick Annotations, Pin Autotests First run: annotation toolbar is not visible Selecting Tools > Annotations shows the annotation toolbar (below the main toolbar by default) Select an annotation > toolbar is shown Select a quick annotation > toolbar is shown Hide action (red cross) on the toolbar hides the toolbar Keys 1-9,0 select the (builtin) Annotation actions (one case tested) Keys Alt+1-9,0 select the quick annotation actions (one case tested) No annotation action selected: Quick Annotations is enabled, Add to quick annotations is disabled, Annotation config actions are disabled, Pin is enabled The current document is an image: Highlighter, Underline, Squiggle, Strike out are disabled (also in Quick annotations) The current document is protected: All actions are disabled Select annotation: the Annotation config actions are enabled and their values set to the ones for the current annotation (taken from okularpartrc) Click an annotation action when none selected: browse mode is selected Click the currently selected annotation action: the action is unchecked and the tool disabled (back to browse mode) Click ESC: the currently selected annotation action is unchecked If Pin unchecked the selected annotation is unchecked after it has be used once and we are back to Browse mode The annotation systems works when multiple Okular tabs are open (the selected annotation is per-tab) Manual tests (TODO) Check that kconf_update updates the key AnnotationTools to QuickAnnotationTools in ~/.config/okularpartrc Color icon is a format-text-color (if inline note or typewriter) or format-stroke-color for all other annotations All actions have tooltips (some change based on the fact that the icon is enabled or not) If a custom Line Width or Opacity is set through the Annotation Settings dialog, its value appears as a new checked action in the Line width or Opacity menu If a custom stamp is selected through the Annotation Settings dialog, its name or filename (without path) appears as a new checked action in the Stamp menu In Configure Okular > Annotations it is only possible to configure the quick annotations. Modifying them here updates the Quick annotations list after clicking Apply The current document is an image: Highlighter, Underline, Squiggle, Strike out are disabled in Quick annotations The state of Pin action is remembered across Okular launches Selecting a quick action selects the corresponding action and loads its config values (color, line width, ...) Setting the color and fill color works for all annotations (to be tested carefully, can be problematic for typewriter and inline note given the different internal mechanism to store the color in the settings) Test stamp annotation (handled differently from the rest of the annotations) Merge Request: https://invent.kde.org/graphics/okular/-/merge_requests/105
2020-06-04 13:01:31 +00:00
m_tabWidget->addTab(firstPart->widget(), QString()); // triggers setActiveTab that calls createGUI( part )
Overhaul annotations UX Create a new new annotation toolbar to replace the current one as discussed in the task T8076. Fixes: BUG: 386578 BUG: 374728 BUG: 352310 BUG: 330518 BUG: 341914 BUG: 157289 BUG: 358057 BUG: 412767 BUG: 413595 BUG: 420462 FIXED-IN: 1.11.0 Test Plan Before testing this revision Delete or Temporary move aside the following files: ~/.config/okularpartrc ~/.config/okularrc ~/.local/share/kxmlgui5/okular/part.rc ~/.local/share/kxmlgui5/okular/shell.rc Nomenclature Actions in the main toolbar: Quick annotations Actions in the annotation toolbar: Annotation actions Highlighter, Underline, Squiggle, Strike out, Typewriter, Inline note, Popup note, Freehand line, Arrow, Straight line, Rectangle, Ellipse, Polygon, Stamp Annotation config actions Line width, Color, Inner color, Opacity, Font, Annotation settings Other actions Add to Quick Annotations, Pin Autotests First run: annotation toolbar is not visible Selecting Tools > Annotations shows the annotation toolbar (below the main toolbar by default) Select an annotation > toolbar is shown Select a quick annotation > toolbar is shown Hide action (red cross) on the toolbar hides the toolbar Keys 1-9,0 select the (builtin) Annotation actions (one case tested) Keys Alt+1-9,0 select the quick annotation actions (one case tested) No annotation action selected: Quick Annotations is enabled, Add to quick annotations is disabled, Annotation config actions are disabled, Pin is enabled The current document is an image: Highlighter, Underline, Squiggle, Strike out are disabled (also in Quick annotations) The current document is protected: All actions are disabled Select annotation: the Annotation config actions are enabled and their values set to the ones for the current annotation (taken from okularpartrc) Click an annotation action when none selected: browse mode is selected Click the currently selected annotation action: the action is unchecked and the tool disabled (back to browse mode) Click ESC: the currently selected annotation action is unchecked If Pin unchecked the selected annotation is unchecked after it has be used once and we are back to Browse mode The annotation systems works when multiple Okular tabs are open (the selected annotation is per-tab) Manual tests (TODO) Check that kconf_update updates the key AnnotationTools to QuickAnnotationTools in ~/.config/okularpartrc Color icon is a format-text-color (if inline note or typewriter) or format-stroke-color for all other annotations All actions have tooltips (some change based on the fact that the icon is enabled or not) If a custom Line Width or Opacity is set through the Annotation Settings dialog, its value appears as a new checked action in the Line width or Opacity menu If a custom stamp is selected through the Annotation Settings dialog, its name or filename (without path) appears as a new checked action in the Stamp menu In Configure Okular > Annotations it is only possible to configure the quick annotations. Modifying them here updates the Quick annotations list after clicking Apply The current document is an image: Highlighter, Underline, Squiggle, Strike out are disabled in Quick annotations The state of Pin action is remembered across Okular launches Selecting a quick action selects the corresponding action and loads its config values (color, line width, ...) Setting the color and fill color works for all annotations (to be tested carefully, can be problematic for typewriter and inline note given the different internal mechanism to store the color in the settings) Test stamp annotation (handled differently from the rest of the annotations) Merge Request: https://invent.kde.org/graphics/okular/-/merge_requests/105
2020-06-04 13:01:31 +00:00
connectPart(firstPart);
readSettings();
m_unique = ShellUtils::unique(serializedOptions);
if (m_unique) {
2015-10-29 12:37:11 +00:00
m_unique = QDBusConnection::sessionBus().registerService(QStringLiteral("org.kde.okular"));
if (!m_unique)
KMessageBox::information(this, i18n("There is already a unique Okular instance running. This instance won't be the unique one."));
} else {
QString serviceName = QStringLiteral("org.kde.okular-") + QString::number(qApp->applicationPid());
QDBusConnection::sessionBus().registerService(serviceName);
}
if (ShellUtils::noRaise(serializedOptions)) {
setAttribute(Qt::WA_ShowWithoutActivating);
}
2015-10-29 12:37:11 +00:00
QDBusConnection::sessionBus().registerObject(QStringLiteral("/okularshell"), this, QDBusConnection::ExportScriptableSlots);
} else {
m_isValid = false;
KMessageBox::error(this, i18n("Unable to find the Okular component."));
}
#if KXMLGUI_VERSION > QT_VERSION_CHECK(5, 78, 0)
connect(guiFactory(), &KXMLGUIFactory::shortcutsSaved, this, &Shell::reloadAllXML);
#endif
}
void Shell::reloadAllXML()
{
for (const TabState &tab : qAsConst(m_tabs)) {
tab.part->reloadXML();
}
}
void Shell::keyPressEvent(QKeyEvent *e)
{
if (e->key() == Qt::Key_Escape && window()->isFullScreen()) {
setFullScreen(false);
}
}
bool Shell::eventFilter(QObject *obj, QEvent *event)
{
QDragMoveEvent *dmEvent = dynamic_cast<QDragMoveEvent *>(event);
if (dmEvent) {
bool accept = dmEvent->mimeData()->hasUrls();
event->setAccepted(accept);
return accept;
}
QDropEvent *dEvent = dynamic_cast<QDropEvent *>(event);
if (dEvent) {
const QList<QUrl> list = KUrlMimeData::urlsFromMimeData(dEvent->mimeData());
handleDroppedUrls(list);
dEvent->setAccepted(true);
return true;
}
// Handle middle button click events on the tab bar
if (obj == m_tabWidget->tabBar() && event->type() == QEvent::MouseButtonRelease) {
QMouseEvent *mEvent = static_cast<QMouseEvent *>(event);
if (mEvent->button() == Qt::MiddleButton) {
int tabIndex = m_tabWidget->tabBar()->tabAt(mEvent->pos());
if (tabIndex != -1) {
closeTab(tabIndex);
return true;
}
}
}
2020-02-20 17:45:46 +00:00
return KParts::MainWindow::eventFilter(obj, event);
}
bool Shell::isValid() const
{
return m_isValid;
}
void Shell::showOpenRecentMenu()
{
m_recent->menu()->popup(QCursor::pos());
}
Shell::~Shell()
{
if (!m_tabs.empty()) {
writeSettings();
for (const TabState &tab : qAsConst(m_tabs)) {
tab.part->closeUrl(false);
}
m_tabs.clear();
}
if (m_unique)
2015-10-29 12:37:11 +00:00
QDBusConnection::sessionBus().unregisterService(QStringLiteral("org.kde.okular"));
delete m_tabWidget;
}
// Open a new document if we have space for it
// This can hang if called on a unique instance and openUrl pops a messageBox
bool Shell::openDocument(const QUrl &url, const QString &serializedOptions)
{
if (m_tabs.size() <= 0)
return false;
KParts::ReadWritePart *const part = m_tabs[0].part;
// Return false if we can't open new tabs and the only part is occupied
if (!qobject_cast<Okular::ViewerInterface *>(part)->openNewFilesInTabs() && !part->url().isEmpty() && !ShellUtils::unique(serializedOptions)) {
return false;
}
openUrl(url, serializedOptions);
return true;
}
bool Shell::openDocument(const QString &urlString, const QString &serializedOptions)
{
return openDocument(QUrl(urlString), serializedOptions);
}
bool Shell::canOpenDocs(int numDocs, int desktop)
{
if (m_tabs.size() <= 0 || numDocs <= 0 || m_unique)
return false;
KParts::ReadWritePart *const part = m_tabs[0].part;
const bool allowTabs = qobject_cast<Okular::ViewerInterface *>(part)->openNewFilesInTabs();
if (!allowTabs && (numDocs > 1 || !part->url().isEmpty()))
return false;
const KWindowInfo winfo(window()->effectiveWinId(), KWindowSystem::WMDesktop);
if (winfo.desktop() != desktop)
return false;
return true;
}
void Shell::openUrl(const QUrl &url, const QString &serializedOptions)
{
const int activeTab = m_tabWidget->currentIndex();
if (activeTab < m_tabs.size()) {
KParts::ReadWritePart *const activePart = m_tabs[activeTab].part;
if (!activePart->url().isEmpty()) {
if (m_unique) {
applyOptionsToPart(activePart, serializedOptions);
activePart->openUrl(url);
2012-09-19 20:44:18 +00:00
} else {
if (qobject_cast<Okular::ViewerInterface *>(activePart)->openNewFilesInTabs()) {
openNewTab(url, serializedOptions);
} else {
Shell *newShell = new Shell(serializedOptions);
newShell->show();
newShell->openUrl(url, serializedOptions);
}
2012-09-19 20:44:18 +00:00
}
} else {
m_tabWidget->setTabText(activeTab, url.fileName());
applyOptionsToPart(activePart, serializedOptions);
bool openOk = activePart->openUrl(url);
const bool isstdin = url.fileName() == QLatin1String("-") || url.scheme() == QLatin1String("fd");
2012-09-19 20:44:18 +00:00
if (!isstdin) {
if (openOk) {
2018-04-13 15:35:17 +00:00
#ifdef WITH_KACTIVITIES
if (!m_activityResource)
m_activityResource = new KActivities::ResourceInstance(window()->winId(), this);
m_activityResource->setUri(url);
#endif
2012-09-19 20:44:18 +00:00
m_recent->addUrl(url);
} else {
m_recent->removeUrl(url);
closeTab(activeTab);
}
2012-09-19 20:44:18 +00:00
}
}
}
}
void Shell::closeUrl()
{
closeTab(m_tabWidget->currentIndex());
// When closing the current tab two things can happen:
// * the focus was on the tab
// * the focus was somewhere in the toolbar
// we don't have other places that accept focus
// * If it was on the tab, logic says it should go back to the next current tab
// * If it was on the toolbar, we could leave it there, but since we redo the menus/toobars for the new tab, it gets kind of lost
// so it's easier to set it to the next current tab which also makes sense as consistency
if (m_tabWidget->count() >= 0) {
KParts::ReadWritePart *const newPart = m_tabs[m_tabWidget->currentIndex()].part;
newPart->widget()->setFocus();
}
}
void Shell::readSettings()
{
m_recent->loadEntries(KSharedConfig::openConfig()->group("Recent Files"));
m_recent->setEnabled(true); // force enabling
const KConfigGroup group = KSharedConfig::openConfig()->group("Desktop Entry");
bool fullScreen = group.readEntry("FullScreen", false);
setFullScreen(fullScreen);
if (fullScreen) {
m_menuBarWasShown = group.readEntry(shouldShowMenuBarComingFromFullScreen, true);
m_toolBarWasShown = group.readEntry(shouldShowToolBarComingFromFullScreen, true);
}
}
void Shell::writeSettings()
{
m_recent->saveEntries(KSharedConfig::openConfig()->group("Recent Files"));
KConfigGroup group = KSharedConfig::openConfig()->group("Desktop Entry");
group.writeEntry("FullScreen", m_fullScreenAction->isChecked());
if (m_fullScreenAction->isChecked()) {
group.writeEntry(shouldShowMenuBarComingFromFullScreen, m_menuBarWasShown);
group.writeEntry(shouldShowToolBarComingFromFullScreen, m_toolBarWasShown);
}
KSharedConfig::openConfig()->sync();
}
void Shell::setupActions()
{
KStandardAction::open(this, SLOT(fileOpen()), actionCollection());
m_recent = KStandardAction::openRecent(this, SLOT(openUrl(QUrl)), actionCollection());
m_recent->setToolBarMode(KRecentFilesAction::MenuMode);
2016-10-29 14:32:24 +00:00
connect(m_recent, &QAction::triggered, this, &Shell::showOpenRecentMenu);
m_recent->setToolTip(i18n("Click to open a file\nClick and hold to open a recent file"));
m_recent->setWhatsThis(i18n("<b>Click</b> to open a file or <b>Click and hold</b> to select a recent file"));
m_printAction = KStandardAction::print(this, SLOT(print()), actionCollection());
m_printAction->setEnabled(false);
m_closeAction = KStandardAction::close(this, SLOT(closeUrl()), actionCollection());
m_closeAction->setEnabled(false);
KStandardAction::quit(this, SLOT(close()), actionCollection());
setStandardToolBarMenuEnabled(true);
2011-07-31 19:22:04 +00:00
m_showMenuBarAction = KStandardAction::showMenubar(this, SLOT(slotShowMenubar()), actionCollection());
m_fullScreenAction = KStandardAction::fullScreen(this, SLOT(slotUpdateFullScreen()), this, actionCollection());
2015-10-29 12:37:11 +00:00
m_nextTabAction = actionCollection()->addAction(QStringLiteral("tab-next"));
m_nextTabAction->setText(i18n("Next Tab"));
actionCollection()->setDefaultShortcuts(m_nextTabAction, KStandardShortcut::tabNext());
m_nextTabAction->setEnabled(false);
2015-10-29 12:37:11 +00:00
connect(m_nextTabAction, &QAction::triggered, this, &Shell::activateNextTab);
2015-10-29 12:37:11 +00:00
m_prevTabAction = actionCollection()->addAction(QStringLiteral("tab-previous"));
m_prevTabAction->setText(i18n("Previous Tab"));
actionCollection()->setDefaultShortcuts(m_prevTabAction, KStandardShortcut::tabPrev());
m_prevTabAction->setEnabled(false);
2015-10-29 12:37:11 +00:00
connect(m_prevTabAction, &QAction::triggered, this, &Shell::activatePrevTab);
m_undoCloseTab = actionCollection()->addAction(QStringLiteral("undo-close-tab"));
m_undoCloseTab->setText(i18n("Undo close tab"));
actionCollection()->setDefaultShortcut(m_undoCloseTab, QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_T));
m_undoCloseTab->setIcon(QIcon::fromTheme(QStringLiteral("edit-undo")));
m_undoCloseTab->setEnabled(false);
connect(m_undoCloseTab, &QAction::triggered, this, &Shell::undoCloseTab);
}
void Shell::saveProperties(KConfigGroup &group)
{
if (!m_isValid) // part couldn't be loaded, nothing to save
return;
// Gather lists of settings to preserve
QStringList urls;
for (const TabState &tab : qAsConst(m_tabs)) {
urls.append(tab.part->url().url());
}
group.writePathEntry(SESSION_URL_KEY, urls);
group.writeEntry(SESSION_TAB_KEY, m_tabWidget->currentIndex());
}
void Shell::readProperties(const KConfigGroup &group)
{
// Reopen documents based on saved settings
QStringList urls = group.readPathEntry(SESSION_URL_KEY, QStringList());
int desiredTab = group.readEntry<int>(SESSION_TAB_KEY, 0);
while (!urls.isEmpty()) {
openUrl(QUrl(urls.takeFirst()));
}
if (desiredTab < m_tabs.size()) {
setActiveTab(desiredTab);
}
}
QStringList Shell::fileFormats() const
{
QStringList supportedPatterns;
2015-10-29 12:37:11 +00:00
QString constraint(QStringLiteral("(Library == 'okularpart')"));
QLatin1String basePartService("KParts/ReadOnlyPart");
KService::List offers = KServiceTypeTrader::self()->query(basePartService, constraint);
KService::List::ConstIterator it = offers.constBegin(), itEnd = offers.constEnd();
for (; it != itEnd; ++it) {
KService::Ptr service = *it;
QStringList mimeTypes = service->mimeTypes();
supportedPatterns += mimeTypes;
}
return supportedPatterns;
}
void Shell::fileOpen()
{
// this slot is called whenever the File->Open menu is selected,
// the Open shortcut is pressed (usually CTRL+O) or the Open toolbar
// button is clicked
const int activeTab = m_tabWidget->currentIndex();
if (!m_fileformatsscanned) {
const KDocumentViewer *const doc = qobject_cast<KDocumentViewer *>(m_tabs[activeTab].part);
if (doc)
m_fileformats = doc->supportedMimeTypes();
if (m_fileformats.isEmpty())
m_fileformats = fileFormats();
m_fileformatsscanned = true;
}
QUrl startDir;
const KParts::ReadWritePart *const curPart = m_tabs[activeTab].part;
if (curPart->url().isLocalFile())
startDir = KIO::upUrl(curPart->url());
QPointer<QFileDialog> dlg(new QFileDialog(this));
dlg->setDirectoryUrl(startDir);
dlg->setAcceptMode(QFileDialog::AcceptOpen);
dlg->setOption(QFileDialog::HideNameFilterDetails, true);
dlg->setFileMode(QFileDialog::ExistingFiles); // Allow selection of more than one file
QMimeDatabase mimeDatabase;
// Unfortunately non Plasma file dialogs don't support the "All supported files" when using
// setMimeTypeFilters instead of setNameFilters, so for those use setNameFilters which is a bit
// worse because doesn't show you pdf files named bla.blo when you say "show me the pdf files", but
// that's solvable by choosing "All Files" and it's not that common while it's more convenient to
// only get shown the files that the application can open by default instead of all of them
#if KIO_VERSION >= QT_VERSION_CHECK(5, 73, 0)
const bool useMimeTypeFilters = qgetenv("XDG_CURRENT_DESKTOP").toLower() == QStringLiteral("kde");
#else
const bool useMimeTypeFilters = false;
#endif
if (useMimeTypeFilters) {
QStringList mimetypes;
for (const QString &mimeName : qAsConst(m_fileformats)) {
QMimeType mimeType = mimeDatabase.mimeTypeForName(mimeName);
mimetypes << mimeType.name();
}
mimetypes.prepend(QStringLiteral("application/octet-stream"));
dlg->setMimeTypeFilters(mimetypes);
} else {
QSet<QString> globPatterns;
QMap<QString, QStringList> namedGlobs;
for (const QString &mimeName : qAsConst(m_fileformats)) {
QMimeType mimeType = mimeDatabase.mimeTypeForName(mimeName);
const QStringList globs(mimeType.globPatterns());
if (globs.isEmpty()) {
continue;
}
#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
globPatterns.unite(QSet<QString>(globs.begin(), globs.end()));
#else
globPatterns.unite(globs.toSet());
#endif
namedGlobs[mimeType.comment()].append(globs);
}
QStringList namePatterns;
for (auto it = namedGlobs.cbegin(); it != namedGlobs.cend(); ++it) {
namePatterns.append(it.key() + QLatin1String(" (") + it.value().join(QLatin1Char(' ')) + QLatin1Char(')'));
}
const QStringList allGlobPatterns = globPatterns.values();
namePatterns.prepend(i18n("All files (*)"));
namePatterns.prepend(i18n("All supported files (%1)", allGlobPatterns.join(QLatin1Char(' '))));
dlg->setNameFilters(namePatterns);
}
dlg->setWindowTitle(i18n("Open Document"));
2016-08-13 20:20:43 +00:00
if (dlg->exec() && dlg) {
const QList<QUrl> urlList = dlg->selectedUrls();
for (const QUrl &url : urlList) {
2016-08-13 20:20:43 +00:00
openUrl(url);
}
}
2016-08-13 20:20:43 +00:00
if (dlg) {
delete dlg.data();
}
}
void Shell::tryRaise()
{
KWindowSystem::forceActiveWindow(window()->effectiveWinId());
}
// only called when starting the program
void Shell::setFullScreen(bool useFullScreen)
{
if (useFullScreen)
setWindowState(windowState() | Qt::WindowFullScreen); // set
else
setWindowState(windowState() & ~Qt::WindowFullScreen); // reset
}
void Shell::setCaption(const QString &caption)
{
bool modified = false;
const int activeTab = m_tabWidget->currentIndex();
if (activeTab >= 0 && activeTab < m_tabs.size()) {
KParts::ReadWritePart *const activePart = m_tabs[activeTab].part;
QString tabCaption = activePart->url().fileName();
if (activePart->isModified()) {
modified = true;
if (!tabCaption.isEmpty()) {
tabCaption.append(QStringLiteral(" *"));
}
}
m_tabWidget->setTabText(activeTab, tabCaption);
}
setCaption(caption, modified);
}
void Shell::showEvent(QShowEvent *e)
{
if (!menuBar()->isNativeMenuBar() && m_showMenuBarAction)
m_showMenuBarAction->setChecked(menuBar()->isVisible());
KParts::MainWindow::showEvent(e);
}
void Shell::slotUpdateFullScreen()
{
if (m_fullScreenAction->isChecked()) {
m_menuBarWasShown = !menuBar()->isHidden();
menuBar()->hide();
m_toolBarWasShown = !toolBar()->isHidden();
toolBar()->hide();
KToggleFullScreenAction::setFullScreen(this, true);
} else {
if (m_menuBarWasShown) {
menuBar()->show();
}
if (m_toolBarWasShown) {
toolBar()->show();
}
KToggleFullScreenAction::setFullScreen(this, false);
}
}
void Shell::slotShowMenubar()
{
if (menuBar()->isHidden())
menuBar()->show();
else
menuBar()->hide();
}
QSize Shell::sizeHint() const
{
const QSize baseSize = QApplication::primaryScreen()->availableSize() * 0.6;
// Set an arbitrary yet sensible sane minimum size for very small screens;
// for example we don't want people using 1366x768 screens to get a tiny
// default window size of 820 x 460 which will elide most of the toolbar buttons.
return baseSize.expandedTo(QSize(1000, 700));
}
bool Shell::queryClose()
{
if (m_tabs.count() > 1) {
const QString dontAskAgainName = QStringLiteral("ShowTabWarning");
KMessageBox::ButtonCode dummy = KMessageBox::Yes;
if (shouldBeShownYesNo(dontAskAgainName, dummy)) {
QDialog *dialog = new QDialog(this);
dialog->setWindowTitle(i18n("Confirm Close"));
QDialogButtonBox *buttonBox = new QDialogButtonBox(dialog);
buttonBox->setStandardButtons(QDialogButtonBox::Yes | QDialogButtonBox::No);
KGuiItem::assign(buttonBox->button(QDialogButtonBox::Yes), KGuiItem(i18n("Close Tabs"), QStringLiteral("tab-close")));
KGuiItem::assign(buttonBox->button(QDialogButtonBox::No), KStandardGuiItem::cancel());
bool checkboxResult = true;
const int result = KMessageBox::createKMessageBox(dialog,
buttonBox,
QMessageBox::Question,
2017-09-18 20:20:42 +00:00
i18n("You are about to close %1 tabs. Are you sure you want to continue?", m_tabs.count()),
QStringList(),
i18n("Warn me when I attempt to close multiple tabs"),
&checkboxResult,
KMessageBox::Notify);
if (!checkboxResult) {
saveDontShowAgainYesNo(dontAskAgainName, dummy);
}
if (result != QDialogButtonBox::Yes) {
return false;
}
}
}
for (int i = 0; i < m_tabs.size(); ++i) {
KParts::ReadWritePart *const part = m_tabs[i].part;
// To resolve confusion about multiple modified docs, switch to relevant tab
if (part->isModified())
setActiveTab(i);
if (!part->queryClose())
return false;
}
return true;
}
void Shell::setActiveTab(int tab)
{
m_tabWidget->setCurrentIndex(tab);
#if KXMLGUI_VERSION <= QT_VERSION_CHECK(5, 78, 0)
m_tabs[tab].part->reloadXML();
#endif
createGUI(m_tabs[tab].part);
m_printAction->setEnabled(m_tabs[tab].printEnabled);
m_closeAction->setEnabled(m_tabs[tab].closeEnabled);
}
void Shell::closeTab(int tab)
{
KParts::ReadWritePart *const part = m_tabs[tab].part;
QUrl url = part->url();
if (part->closeUrl() && m_tabs.count() > 1) {
if (part->factory())
part->factory()->removeClient(part);
part->disconnect();
part->deleteLater();
m_tabs.removeAt(tab);
m_tabWidget->removeTab(tab);
m_undoCloseTab->setEnabled(true);
m_closedTabUrls.append(url);
if (m_tabWidget->count() == 1) {
m_tabWidget->tabBar()->hide();
m_nextTabAction->setEnabled(false);
m_prevTabAction->setEnabled(false);
}
}
}
void Shell::openNewTab(const QUrl &url, const QString &serializedOptions)
{
const int previousActiveTab = m_tabWidget->currentIndex();
KParts::ReadWritePart *const activePart = m_tabs[previousActiveTab].part;
bool activateTabIfAlreadyOpen;
QMetaObject::invokeMethod(activePart, "activateTabIfAlreadyOpenFile", Q_RETURN_ARG(bool, activateTabIfAlreadyOpen));
if (activateTabIfAlreadyOpen) {
const int tabIndex = findTabIndex(url);
if (tabIndex >= 0) {
setActiveTab(tabIndex);
m_recent->addUrl(url);
return;
}
}
// Tabs are hidden when there's only one, so show it
if (m_tabs.size() == 1) {
m_tabWidget->tabBar()->show();
m_nextTabAction->setEnabled(true);
m_prevTabAction->setEnabled(true);
}
const int newIndex = m_tabs.size();
// Make new part
m_tabs.append(m_partFactory->create<KParts::ReadWritePart>(this));
connectPart(m_tabs[newIndex].part);
// Update GUI
KParts::ReadWritePart *const part = m_tabs[newIndex].part;
m_tabWidget->addTab(part->widget(), url.fileName());
applyOptionsToPart(part, serializedOptions);
setActiveTab(m_tabs.size() - 1);
if (part->openUrl(url)) {
m_recent->addUrl(url);
} else {
setActiveTab(previousActiveTab);
closeTab(m_tabs.size() - 1);
m_recent->removeUrl(url);
}
}
void Shell::applyOptionsToPart(QObject *part, const QString &serializedOptions)
{
KDocumentViewer *const doc = qobject_cast<KDocumentViewer *>(part);
const QString find = ShellUtils::find(serializedOptions);
if (ShellUtils::startInPresentation(serializedOptions))
doc->startPresentation();
if (ShellUtils::showPrintDialog(serializedOptions))
QMetaObject::invokeMethod(part, "enableStartWithPrint");
if (ShellUtils::showPrintDialogAndExit(serializedOptions))
QMetaObject::invokeMethod(part, "enableExitAfterPrint");
if (!find.isEmpty())
QMetaObject::invokeMethod(part, "enableStartWithFind", Q_ARG(QString, find));
}
void Shell::connectPart(QObject *part)
{
2020-02-20 14:48:08 +00:00
// We're abusing the fact we know the part is our part here
connect(this, SIGNAL(moveSplitter(int)), part, SLOT(moveSplitter(int))); // clazy:exclude=old-style-connect
connect(part, SIGNAL(enablePrintAction(bool)), this, SLOT(setPrintEnabled(bool))); // clazy:exclude=old-style-connect
connect(part, SIGNAL(enableCloseAction(bool)), this, SLOT(setCloseEnabled(bool))); // clazy:exclude=old-style-connect
connect(part, SIGNAL(mimeTypeChanged(QMimeType)), this, SLOT(setTabIcon(QMimeType))); // clazy:exclude=old-style-connect
connect(part, SIGNAL(urlsDropped(QList<QUrl>)), this, SLOT(handleDroppedUrls(QList<QUrl>))); // clazy:exclude=old-style-connect
// clang-format off
// Otherwise the QSize,QSize gets turned into QSize, QSize that is not normalized signals and is slightly slower
connect(part, SIGNAL(fitWindowToPage(QSize,QSize)), this, SLOT(slotFitWindowToPage(QSize,QSize))); // clazy:exclude=old-style-connect
// clang-format on
}
void Shell::print()
{
QMetaObject::invokeMethod(m_tabs[m_tabWidget->currentIndex()].part, "slotPrint");
}
void Shell::setPrintEnabled(bool enabled)
{
int i = findTabIndex(sender());
if (i != -1) {
m_tabs[i].printEnabled = enabled;
if (i == m_tabWidget->currentIndex())
m_printAction->setEnabled(enabled);
}
}
void Shell::setCloseEnabled(bool enabled)
{
int i = findTabIndex(sender());
if (i != -1) {
m_tabs[i].closeEnabled = enabled;
if (i == m_tabWidget->currentIndex())
m_closeAction->setEnabled(enabled);
}
}
void Shell::activateNextTab()
{
if (m_tabs.size() < 2)
return;
const int activeTab = m_tabWidget->currentIndex();
const int nextTab = (activeTab == m_tabs.size() - 1) ? 0 : activeTab + 1;
setActiveTab(nextTab);
}
void Shell::activatePrevTab()
{
if (m_tabs.size() < 2)
return;
const int activeTab = m_tabWidget->currentIndex();
const int prevTab = (activeTab == 0) ? m_tabs.size() - 1 : activeTab - 1;
setActiveTab(prevTab);
}
void Shell::undoCloseTab()
{
if (m_closedTabUrls.isEmpty()) {
return;
}
const QUrl lastTabUrl = m_closedTabUrls.takeLast();
if (m_closedTabUrls.isEmpty()) {
m_undoCloseTab->setEnabled(false);
}
openUrl(lastTabUrl);
}
void Shell::setTabIcon(const QMimeType &mimeType)
{
int i = findTabIndex(sender());
if (i != -1) {
m_tabWidget->setTabIcon(i, QIcon::fromTheme(mimeType.iconName()));
}
}
int Shell::findTabIndex(QObject *sender) const
{
for (int i = 0; i < m_tabs.size(); ++i) {
if (m_tabs[i].part == sender) {
return i;
}
}
return -1;
}
int Shell::findTabIndex(const QUrl &url) const
{
auto it = std::find_if(m_tabs.begin(), m_tabs.end(), [&url](const TabState state) { return state.part->url() == url; });
return (it != m_tabs.end()) ? std::distance(m_tabs.begin(), it) : -1;
}
2014-08-13 11:07:44 +00:00
void Shell::handleDroppedUrls(const QList<QUrl> &urls)
{
for (const QUrl &url : urls) {
openUrl(url);
}
}
void Shell::moveTabData(int from, int to)
{
m_tabs.move(from, to);
}
2020-02-20 17:45:46 +00:00
void Shell::slotFitWindowToPage(const QSize pageViewSize, const QSize pageSize)
{
const int xOffset = pageViewSize.width() - pageSize.width();
const int yOffset = pageViewSize.height() - pageSize.height();
showNormal();
resize(width() - xOffset, height() - yOffset);
2020-02-19 15:54:54 +00:00
emit moveSplitter(pageSize.width());
}
/* kate: replace-tabs on; indent-width 4; */