mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
9021a44ccc
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
29 lines
551 B
C++
29 lines
551 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef PREFERENCES_GRAPH_H
|
|
#define PREFERENCES_GRAPH_H
|
|
|
|
#include "abstractpreferenceswidget.h"
|
|
|
|
namespace Ui {
|
|
class PreferencesGraph;
|
|
}
|
|
|
|
class PreferencesGraph : public AbstractPreferencesWidget {
|
|
Q_OBJECT
|
|
public:
|
|
PreferencesGraph();
|
|
virtual ~PreferencesGraph();
|
|
virtual void refreshSettings();
|
|
virtual void syncSettings();
|
|
|
|
private slots:
|
|
void on_gflow_valueChanged(int gf);
|
|
void on_gfhigh_valueChanged(int gf);
|
|
void on_buehlmann_toggled(bool buelmann);
|
|
|
|
private:
|
|
Ui::PreferencesGraph *ui;
|
|
|
|
};
|
|
|
|
#endif
|