1 /*
2   This file is part of Lokalize
3 
4   SPDX-FileCopyrightText: 2012 Nick Shaforostoff <shafff@ukr.net>
5   SPDX-FileCopyrightText: 2018-2019 Simon Depiets <sdepiets@gmail.com>
6 
7   SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
8 */
9 
10 #ifndef WIDGETTEXTCAPTURECONFIG_H
11 #define WIDGETTEXTCAPTURECONFIG_H
12 
13 #include <QDialog>
14 
15 class Ui_WidgetTextCapture;
16 
17 class WidgetTextCaptureConfig: public QDialog
18 {
19     Q_OBJECT
20 public:
21     explicit WidgetTextCaptureConfig(QWidget* parent = nullptr);
22     ~WidgetTextCaptureConfig();
23 public Q_SLOTS:
24     void writeConfig();
25 private:
26     Ui_WidgetTextCapture* ui;
27 };
28 
29 #endif // WIDGETTEXTCAPTURECONFIG_H
30