From 7a4c88bfc137f57293919473c9230d9a9eeebb45 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sun, 10 Mar 2024 14:55:13 -0400 Subject: Implemented preferencesDialog --- src/preferencesDialog.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/preferencesDialog.h (limited to 'src/preferencesDialog.h') diff --git a/src/preferencesDialog.h b/src/preferencesDialog.h new file mode 100644 index 0000000..ac9b88e --- /dev/null +++ b/src/preferencesDialog.h @@ -0,0 +1,28 @@ +#ifndef PREFERENCESDIALOG_H +#define PREFERENCESDIALOG_H + +#include + +#include "ui_preferencesDialog.h" + +// set configuration options in the program +class PreferencesDialog : public QDialog { + Q_OBJECT + + public: + PreferencesDialog(); + + private: + Ui::preferencesDialog ui; + QDialog::DialogCode ret_value = QDialog::Rejected; + + void setupPathsTab(); + + private slots: + void dbPathDialog(); + void close(); + void apply(); + void reload(); +}; + +#endif -- cgit