Added ability to store last used variables for competition overlay.

This commit is contained in:
2025-05-22 12:06:42 -04:00
parent c341a83d12
commit 08fa488dac
3 changed files with 104 additions and 5 deletions

View File

@@ -1,3 +1,27 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="osrs_toolbox.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<userSettings>
<osrs_toolbox.Properties.Settings>
<setting name="LastUserName" serializeAs="String">
<value />
</setting>
<setting name="LastGroupID" serializeAs="String">
<value>-1</value>
</setting>
<setting name="LastCompetitionID" serializeAs="String">
<value>-1</value>
</setting>
<setting name="LastHideOthers" serializeAs="String">
<value>False</value>
</setting>
<setting name="LastHideZeroGained" serializeAs="String">
<value>False</value>
</setting>
</osrs_toolbox.Properties.Settings>
</userSettings>
</configuration>

View File

@@ -22,5 +22,65 @@ namespace osrs_toolbox.Properties {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("")]
public string LastUserName {
get {
return ((string)(this["LastUserName"]));
}
set {
this["LastUserName"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("-1")]
public int LastGroupID {
get {
return ((int)(this["LastGroupID"]));
}
set {
this["LastGroupID"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("-1")]
public int LastCompetitionID {
get {
return ((int)(this["LastCompetitionID"]));
}
set {
this["LastCompetitionID"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool LastHideOthers {
get {
return ((bool)(this["LastHideOthers"]));
}
set {
this["LastHideOthers"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool LastHideZeroGained {
get {
return ((bool)(this["LastHideZeroGained"]));
}
set {
this["LastHideZeroGained"] = value;
}
}
}
}

View File

@@ -1,6 +1,21 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
</SettingsFile>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="osrs_toolbox.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="LastUserName" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="LastGroupID" Type="System.Int32" Scope="User">
<Value Profile="(Default)">-1</Value>
</Setting>
<Setting Name="LastCompetitionID" Type="System.Int32" Scope="User">
<Value Profile="(Default)">-1</Value>
</Setting>
<Setting Name="LastHideOthers" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="LastHideZeroGained" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>