mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
57d7b59bdc
commit
cfecd1a9ab
8 changed files with 419 additions and 375 deletions
27
desktop-widgets/preferences/preferences_graph.h
Normal file
27
desktop-widgets/preferences/preferences_graph.h
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue