aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_graph.h
blob: d38275729912dcc825162f55534aa8f58ed28d65 (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();
	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