okular/core/textdocumentsettings_p.h

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

47 lines
828 B
C
Raw Normal View History

2021-05-24 07:25:56 +00:00
/*
SPDX-FileCopyrightText: 2013 Azat Khuzhin <a3at.mail@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef _OKULAR_TEXTDOCUMENTSETTINGS_P_H_
#define _OKULAR_TEXTDOCUMENTSETTINGS_P_H_
class KFontRequester;
class Ui_TextDocumentSettings;
namespace Okular
{
class TextDocumentSettingsWidgetPrivate
{
public:
/**
* @note the private class won't take ownership of the ui, so you
* must delete it yourself
*/
2018-09-01 08:25:57 +00:00
explicit TextDocumentSettingsWidgetPrivate(Ui_TextDocumentSettings *ui)
: mUi(ui)
{
}
KFontRequester *mFont;
Ui_TextDocumentSettings *mUi;
};
class TextDocumentSettingsPrivate : public QObject
{
2018-08-31 09:23:45 +00:00
Q_OBJECT
public:
2018-09-01 08:25:57 +00:00
explicit TextDocumentSettingsPrivate(QObject *parent)
: QObject(parent)
{
}
QFont mFont;
};
}
#endif