okular/conf/dlgpresentation.cpp
Albert Astals Cid 19d98d6a74 Run clang-format
find . \( -name "*.cpp" -or -name "*.h"  -or -name "*.c"  -or -name "*.cc" \) -exec clang-format -i {} \;

If you reached this file doing a git blame, please see README.clang-format (added 2 commits in the future of this one)
2020-07-11 09:17:33 +02:00

68 lines
2.6 KiB
C++

/***************************************************************************
* Copyright (C) 2006,2008 by Pino Toscano <pino@kde.org> *
* *
* 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 "dlgpresentation.h"
#include "ui_dlgpresentationbase.h"
#include "widgetdrawingtools.h"
#include <KConfigDialogManager>
#include <KLocalizedString>
#include <QApplication>
#include <QDesktopWidget>
#include "settings.h"
DlgPresentation::DlgPresentation(QWidget *parent)
: QWidget(parent)
{
m_dlg = new Ui_DlgPresentationBase();
m_dlg->setupUi(this);
WidgetDrawingTools *kcfg_DrawingTools = new WidgetDrawingTools(m_dlg->annotationToolsGroupBox);
m_dlg->verticalLayout_4->addWidget(kcfg_DrawingTools);
kcfg_DrawingTools->setObjectName(QStringLiteral("kcfg_DrawingTools"));
KConfigDialogManager::changedMap()->insert(QStringLiteral("WidgetDrawingTools"), SIGNAL(changed()));
QStringList choices;
choices.append(i18nc("@label:listbox The current screen, for the presentation mode", "Current Screen"));
choices.append(i18nc("@label:listbox The default screen for the presentation mode", "Default Screen"));
const int screenCount = QApplication::desktop()->numScreens();
for (int i = 0; i < screenCount; ++i) {
choices.append(i18nc("@label:listbox %1 is the screen number (0, 1, ...)", "Screen %1", i));
}
m_dlg->screenCombo->addItems(choices);
const int screen = Okular::Settings::slidesScreen();
if (screen >= -2 && screen < screenCount) {
m_dlg->screenCombo->setCurrentIndex(screen + 2);
} else {
m_dlg->screenCombo->setCurrentIndex(0);
Okular::Settings::setSlidesScreen(-2);
}
m_dlg->kcfg_SlidesAdvanceTime->setSuffix(ki18ncp("Advance every %1 seconds", " second", " seconds"));
connect(m_dlg->screenCombo, static_cast<void (QComboBox::*)(int)>(&QComboBox::activated), this, &DlgPresentation::screenComboChanged);
connect(m_dlg->kcfg_SlidesAdvance, &QAbstractButton::toggled, m_dlg->kcfg_SlidesAdvanceTime, &QWidget::setEnabled);
}
DlgPresentation::~DlgPresentation()
{
delete m_dlg;
}
void DlgPresentation::screenComboChanged(int which)
{
Okular::Settings::setSlidesScreen(which - 2);
}
#include "moc_dlgpresentation.cpp"