mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
0136d76cf4
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>
28 lines
544 B
C++
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
|