diff options
| author | Arno <arno@disconnect.de> | 2017-02-18 12:16:34 +0100 |
|---|---|---|
| committer | Arno <arno@disconnect.de> | 2017-02-18 12:16:34 +0100 |
| commit | 1803f4a72385856920aeeeaeab1e04b7f0a123dc (patch) | |
| tree | 4226507a0c2afeeb4e274c2a271f81f4605f680f /configurationdialog.h | |
| download | BeetPlayer-1803f4a72385856920aeeeaeab1e04b7f0a123dc.tar.gz BeetPlayer-1803f4a72385856920aeeeaeab1e04b7f0a123dc.tar.bz2 BeetPlayer-1803f4a72385856920aeeeaeab1e04b7f0a123dc.zip | |
Initial commit
Create database and connect. Does nothing yet...
Diffstat (limited to 'configurationdialog.h')
| -rw-r--r-- | configurationdialog.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/configurationdialog.h b/configurationdialog.h new file mode 100644 index 0000000..9a8bad8 --- /dev/null +++ b/configurationdialog.h @@ -0,0 +1,25 @@ +#ifndef CONFIGURATIONDIALOG_H +#define CONFIGURATIONDIALOG_H + +#include <QDialog> + +class QLineEdit; +class QPushButton; + +class ConfigurationDialog : public QDialog { + Q_OBJECT + public: + explicit ConfigurationDialog(QWidget *parent = 0, Qt::WindowFlags f = 0); + + public slots: + virtual void accept(); + + private: + void readSettings(); + QLineEdit *mDbHost; + QLineEdit *mDbUser; + QLineEdit *mDbPass; + QLineEdit *mDbName; +}; + +#endif // CONFIGURATIONDIALOG_H |
