summaryrefslogtreecommitdiff
path: root/src/preferencesDialog.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-03-10 14:55:13 -0400
committerLouie S <louie@example.com>2024-03-10 14:55:13 -0400
commit7a4c88bfc137f57293919473c9230d9a9eeebb45 (patch)
tree5b84a03eae581e6464ed527c4fc1e7701be06b13 /src/preferencesDialog.h
parentddee95158867554825092b9c29d8278320b93c61 (diff)
Implemented preferencesDialog
Diffstat (limited to 'src/preferencesDialog.h')
-rw-r--r--src/preferencesDialog.h28
1 files changed, 28 insertions, 0 deletions
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 <QDialog>
+
+#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