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.
34 lines
693 B
34 lines
693 B
/* |
|
SPDX-FileCopyrightText: 2019 Bubli <Katarina.Behrens@cib.de> |
|
SPDX-FileCopyrightText: 2020 Albert Astals Cid <albert.astals.cid@kdab.com> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef PDFSETTINGSWIDGET_H |
|
#define PDFSETTINGSWIDGET_H |
|
|
|
#include <QWidget> |
|
|
|
#include "ui_pdfsettingswidget.h" |
|
|
|
class QTreeWidget; |
|
|
|
class PDFSettingsWidget : public QWidget |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit PDFSettingsWidget(QWidget *parent = nullptr); |
|
bool event(QEvent *e) override; |
|
|
|
private: |
|
void warnRestartNeeded(); |
|
|
|
QTreeWidget *m_tree = nullptr; |
|
bool m_certificatesAsked = false; |
|
bool m_warnedAboutRestart = false; |
|
Ui_PDFSettingsWidgetBase m_pdfsw; |
|
}; |
|
|
|
#endif
|
|
|