subsurface/desktop-widgets/preferences/preferences_graph.h
Berthold Stoeger 0136d76cf4 Cleanup: move deco function declarations to deco.h
Another tiny step in making dive.h smaller: move function
declarations to deco.h if these functions are defined in deco.c
and don't directly concern dives.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2019-07-18 05:42:55 -07:00

28 lines
544 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();
~PreferencesGraph();
void refreshSettings() override;
void syncSettings() override;
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