mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
37 lines
661 B
C++
37 lines
661 B
C++
/*
|
|
SPDX-FileCopyrightText: 2006 Pino Toscano <toscano.pino@tiscali.it>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef _DLGACCESSIBILITY_H
|
|
#define _DLGACCESSIBILITY_H
|
|
|
|
#include "config-okular.h"
|
|
#include <QWidget>
|
|
|
|
class QComboBox;
|
|
class QStackedWidget;
|
|
|
|
class DlgAccessibility : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DlgAccessibility(QWidget *parent = nullptr);
|
|
|
|
protected Q_SLOTS:
|
|
void slotColorModeSelected(int mode);
|
|
#if HAVE_SPEECH
|
|
void slotTTSEngineChanged();
|
|
#endif
|
|
|
|
protected:
|
|
QStackedWidget *m_colorModeConfigStack;
|
|
#if HAVE_SPEECH
|
|
QComboBox *m_ttsEngineBox;
|
|
QComboBox *m_ttsVoiceBox;
|
|
#endif
|
|
};
|
|
|
|
#endif
|