File indexing completed on 2024-05-05 11:56:00

0001 /*
0002     SPDX-FileCopyrightText: 2020-2023 by Alexander Semke (alexander.semke@web.de)
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef SAGESETTINGSWIDGET_H
0008 #define SAGESETTINGSWIDGET_H
0009 
0010 #include "ui_settings.h"
0011 #include "../backendsettingswidget.h"
0012 
0013 class SageSettingsWidget : public BackendSettingsWidget, public Ui::SageSettingsBase
0014 {
0015 Q_OBJECT
0016 
0017 public:
0018     explicit SageSettingsWidget(QWidget* parent = nullptr, const QString& id = QString());
0019 
0020 private Q_SLOTS:
0021     void integratePlotsChanged(bool);
0022 };
0023 
0024 #endif /* SAGESETTINGSWIDGET_H */