File indexing completed on 2024-04-28 11:20:41

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-or-later
0003     SPDX-FileCopyrightText: 2010 Oleksiy Protas <elfy.ua@gmail.com>
0004 */
0005 
0006 #ifndef _RSETTINGSWIDGET_H
0007 #define _RSETTINGSWIDGET_H
0008 
0009 #include "ui_settings.h"
0010 #include "../backendsettingswidget.h"
0011 
0012 class RSettingsWidget : public BackendSettingsWidget, public Ui::RSettingsBase
0013 {
0014   Q_OBJECT
0015 
0016   public:
0017     explicit RSettingsWidget(QWidget* parent = nullptr, const QString& id = QString());
0018     bool eventFilter(QObject*, QEvent*) override;
0019 
0020   public Q_SLOTS:
0021     void displayFileSelectionDialog();
0022 };
0023 
0024 #endif /* _RSETTINGSWIDGET_H */