Settings dialog (fixes #4) and WIP authentication (Buggy and needs testing)

This commit is contained in:
Stéphane Lepin
2016-11-12 03:59:07 +01:00
parent 5f7061c586
commit bf317987c3
10 changed files with 355 additions and 29 deletions

28
forms/settings-dialog.h Normal file
View File

@ -0,0 +1,28 @@
#ifndef SETTINGSDIALOG_H
#define SETTINGSDIALOG_H
#include <QDialog>
namespace Ui {
class SettingsDialog;
}
class SettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit SettingsDialog(QWidget *parent = 0);
~SettingsDialog();
void showEvent(QShowEvent *event);
void ToggleShowHide();
private Q_SLOTS:
void AuthCheckboxChanged();
void FormAccepted();
private:
Ui::SettingsDialog *ui;
};
#endif // SETTINGSDIALOG_H