From c34930425fadfc4083067b9306159cd8e8ecf6c6 Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 23 Jul 2024 20:37:48 -0400 Subject: Rearrange source file locations --- src/preferencesDialog.cpp | 59 ----------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 src/preferencesDialog.cpp (limited to 'src/preferencesDialog.cpp') diff --git a/src/preferencesDialog.cpp b/src/preferencesDialog.cpp deleted file mode 100644 index d3b3dff..0000000 --- a/src/preferencesDialog.cpp +++ /dev/null @@ -1,59 +0,0 @@ -#include -#include - -#include "preferencesDialog.h" - -PreferencesDialog::PreferencesDialog() { - // load uic - ui.setupUi(this); - - // display widgets - // TODO make this a scollable window - // FIXME could use some work on sizing - this->setupPathsTab(); - - // create button connections - QObject::connect(ui.close_button, &QPushButton::released, this, &PreferencesDialog::close); - QObject::connect(ui.apply_button, &QPushButton::released, this, &PreferencesDialog::apply); - QObject::connect(ui.reload_button, &QPushButton::released, this, &PreferencesDialog::reload); -} - -void PreferencesDialog::setupPathsTab() { - QSettings settings; - settings.beginGroup("paths"); - - ui.db_path_edit->setText(settings.value("db_path").toString()); - QObject::connect(ui.db_path_button, &QPushButton::released, this, &PreferencesDialog::dbPathDialog); -} - -void PreferencesDialog::dbPathDialog() { - QFileDialog file_dialog; - // TODO create filter to only allow selecting .db files - QString new_path = file_dialog.getOpenFileName(this, "Open File"); - - if(!new_path.isEmpty()) - ui.db_path_edit->setText(new_path); -} - -// close the dialog, returning our ret_value -void PreferencesDialog::close() { - this->done(ret_value); -} - -// update the configuration in the config file -void PreferencesDialog::apply() { - QSettings settings; - - // save paths - settings.beginGroup("paths"); - settings.setValue("db_path", ui.db_path_edit->text()); - - // set the return value to accepted - this->ret_value = QDialog::Accepted; -} - -// update, reload, and close the window -void PreferencesDialog::reload() { - this->apply(); - this->accept(); -} -- cgit