aboutsummaryrefslogtreecommitdiffstats
path: root/src/settingsdialog.h
diff options
context:
space:
mode:
authorConfuSomu2023-08-15 19:55:52 -0400
committerConfuSomu2023-08-15 20:16:07 -0400
commitdef9f251739e9a0d6d0ff1c98dc4562dade3e9ef (patch)
tree1e36bddaf8d04312cf81f5335f3afedc6aa5c784 /src/settingsdialog.h
parentade98b4cf6630635e2fdbf84ac29fe83a79cc371 (diff)
downloadActorViewer-def9f251739e9a0d6d0ff1c98dc4562dade3e9ef.tar
ActorViewer-def9f251739e9a0d6d0ff1c98dc4562dade3e9ef.tar.gz
ActorViewer-def9f251739e9a0d6d0ff1c98dc4562dade3e9ef.zip
Implement "fill address" in instance settings
Implement the "fill address" action in the instance login settings frame that is in the network tab.
Diffstat (limited to 'src/settingsdialog.h')
-rw-r--r--src/settingsdialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settingsdialog.h b/src/settingsdialog.h
index e320a08..47cfa38 100644
--- a/src/settingsdialog.h
+++ b/src/settingsdialog.h
@@ -17,6 +17,7 @@ public:
static void initialize_default_settings();
public slots:
+ void set_instance_address(const QString &url);
void defaults_button_clicked();
void apply_button_clicked();
void cancel_button_clicked();
@@ -39,5 +40,7 @@ private:
SettingsInterface settings_interface;
bool update_ui_in_progress = false;
+ QString instance_address;
+
void update_ui();
};