You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.4 KiB
68 lines
2.4 KiB
/* |
|
SPDX-FileCopyrightText: 2004 Enrico Ros <eros.kde@email.it> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
// reimplementing this |
|
#include "preferencesdialog.h" |
|
|
|
#include <KLocalizedString> |
|
|
|
// single config pages |
|
#include "dlgaccessibility.h" |
|
#include "dlgannotations.h" |
|
#include "dlgdebug.h" |
|
#include "dlgeditor.h" |
|
#include "dlggeneral.h" |
|
#include "dlgperformance.h" |
|
#include "dlgpresentation.h" |
|
|
|
PreferencesDialog::PreferencesDialog(QWidget *parent, KConfigSkeleton *skeleton, Okular::EmbedMode embedMode) |
|
: KConfigDialog(parent, QStringLiteral("preferences"), skeleton) |
|
{ |
|
setWindowModality(Qt::ApplicationModal); |
|
|
|
m_general = new DlgGeneral(this, embedMode); |
|
m_performance = new DlgPerformance(this); |
|
m_accessibility = new DlgAccessibility(this); |
|
m_accessibilityPage = nullptr; |
|
m_presentation = nullptr; |
|
m_annotations = nullptr; |
|
m_annotationsPage = nullptr; |
|
m_editor = nullptr; |
|
m_signatures = nullptr; |
|
#ifdef OKULAR_DEBUG_CONFIGPAGE |
|
m_debug = new DlgDebug(this); |
|
#endif |
|
|
|
addPage(m_general, i18n("General"), QStringLiteral("okular"), i18n("General Options")); |
|
m_accessibilityPage = addPage(m_accessibility, i18n("Accessibility"), QStringLiteral("preferences-desktop-accessibility"), i18n("Accessibility Reading Aids")); |
|
addPage(m_performance, i18n("Performance"), QStringLiteral("preferences-system-performance"), i18n("Performance Tuning")); |
|
if (embedMode == Okular::ViewerWidgetMode) { |
|
setWindowTitle(i18n("Configure Viewer")); |
|
} else { |
|
m_presentation = new DlgPresentation(this); |
|
m_annotations = new DlgAnnotations(this); |
|
m_editor = new DlgEditor(this); |
|
addPage(m_presentation, i18n("Presentation"), QStringLiteral("view-presentation"), i18n("Options for Presentation Mode")); |
|
m_annotationsPage = addPage(m_annotations, i18n("Annotations"), QStringLiteral("draw-freehand"), i18n("Annotation Options")); |
|
addPage(m_editor, i18n("Editor"), QStringLiteral("accessories-text-editor"), i18n("Editor Options")); |
|
} |
|
#ifdef OKULAR_DEBUG_CONFIGPAGE |
|
addPage(m_debug, "Debug", "system-run", "Debug options"); |
|
#endif |
|
setHelp(QStringLiteral("configure"), QStringLiteral("okular")); |
|
} |
|
|
|
void PreferencesDialog::switchToAccessibilityPage() |
|
{ |
|
if (m_accessibilityPage) |
|
setCurrentPage(m_accessibilityPage); |
|
} |
|
|
|
void PreferencesDialog::switchToAnnotationsPage() |
|
{ |
|
if (m_annotationsPage) |
|
setCurrentPage(m_annotationsPage); |
|
}
|
|
|