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.
27 lines
614 B
27 lines
614 B
/* |
|
SPDX-FileCopyrightText: 2019-2020 Laurent Montel <montel@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef REFRESHSETTRINGSFINISHPAGE_H |
|
#define REFRESHSETTRINGSFINISHPAGE_H |
|
|
|
#include <QWidget> |
|
class QPlainTextEdit; |
|
class RefreshSettringsFinishPage : public QWidget |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit RefreshSettringsFinishPage(QWidget *parent = nullptr); |
|
~RefreshSettringsFinishPage(); |
|
|
|
Q_SIGNALS: |
|
void cleanDoneInfo(const QString &info); |
|
|
|
private: |
|
void slotCleanDoneInfo(const QString &info); |
|
QPlainTextEdit *mTextEdit = nullptr; |
|
}; |
|
|
|
#endif // REFRESHSETTRINGSFINISHPAGE_H
|
|
|