subsurface/qt-ui/preferences.h
Tomaz Canabrava 7436178fe0 Added a filter option to the Language Chooser
This patch adds a filter option to the Language Chooser.
if you choose filter, only the filtered options will appear.

Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2013-12-06 11:56:00 -08:00

35 lines
726 B
C++

#ifndef PREFERENCES_DIALOG_H
#define PREFERENCES_DIALOG_H
#include <QDialog>
#include "../dive.h"
#include "../pref.h"
#include "ui_preferences.h"
class QAbstractButton;
class PreferencesDialog :public QDialog{
Q_OBJECT
public:
static PreferencesDialog* instance();
void showEvent(QShowEvent* );
signals:
void settingsChanged();
public slots:
void buttonClicked(QAbstractButton* button);
void on_chooseFile_clicked();
void syncSettings();
void restorePrefs();
void rememberPrefs();
void gflowChanged(int gf);
void gfhighChanged(int gf);
private:
explicit PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
void setUiFromPrefs();
Ui::PreferencesDialog ui;
struct preferences oldPrefs;
};
#endif