mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
cfecd1a9ab
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
27 lines
No EOL
471 B
C++
27 lines
No EOL
471 B
C++
#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);
|
|
|
|
private:
|
|
Ui::PreferencesGraph *ui;
|
|
|
|
};
|
|
|
|
#endif |