diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-10-01 18:59:53 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-30 10:36:50 -0700 |
commit | cfecd1a9ab6f1ac870622427af56fa43a87bf14b (patch) | |
tree | 05407229f52fa91d4ed5a187901a4b7ad7aecc7b /desktop-widgets/preferences/preferences_graph.h | |
parent | 57d7b59bdc62a5b01fa420bc420dbdcf1414a23a (diff) | |
download | subsurface-cfecd1a9ab6f1ac870622427af56fa43a87bf14b.tar.gz |
Preferences: move graph preferences to the new dialog
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/preferences/preferences_graph.h')
-rw-r--r-- | desktop-widgets/preferences/preferences_graph.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_graph.h b/desktop-widgets/preferences/preferences_graph.h new file mode 100644 index 000000000..ca40c0a92 --- /dev/null +++ b/desktop-widgets/preferences/preferences_graph.h @@ -0,0 +1,27 @@ +#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
\ No newline at end of file |