aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_graph.h
blob: c63a0372ea64522003085d4048f4cecef42c0989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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();
	~PreferencesGraph();
	void refreshSettings();
	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