mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
36 lines
689 B
C++
36 lines
689 B
C++
#ifndef PREFERENCESFORM_H
|
|
#define PREFERENCESFORM_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class preferencesForm;
|
|
}
|
|
|
|
class preferencesForm : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
preferencesForm(QWidget* parent = 0);
|
|
~preferencesForm();
|
|
|
|
QString defaulttext;
|
|
QString defaultlocation;
|
|
QString defaultnewdata;
|
|
QString defaultencoding;
|
|
|
|
public slots:
|
|
virtual void defaultDataChanged( int which );
|
|
virtual void defaultTextChanged( int which );
|
|
virtual void encodingChanged( int which );
|
|
virtual void chooseLocation();
|
|
virtual void loadSettings();
|
|
virtual void saveSettings();
|
|
|
|
private:
|
|
Ui::preferencesForm *ui;
|
|
};
|
|
|
|
#endif // PREFERENCESFORM_H
|