summaryrefslogtreecommitdiffstats
path: root/win/C#/Properties
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-09-24 20:19:13 +0000
committersr55 <[email protected]>2007-09-24 20:19:13 +0000
commitc6dde7079e2e1dbd7b567054f06742f998a92ff4 (patch)
tree6cca197db5fd09430827a7166ca62fc0f2778c6a /win/C#/Properties
parent75e20b1d703e59b9a74738bf5301e6352b428a33 (diff)
WinGUI:
- Stage 1 implementation of new Preset's System (Mimic's the MacGUI - Tab Index's fixed. Faster form generation in Visual Studio. May improve performance slightly. - Queue window size fix Note: One of the previous rev's shaved 2 Seconds off the startup time. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@987 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r--win/C#/Properties/Settings.Designer.cs23
-rw-r--r--win/C#/Properties/Settings.settings6
2 files changed, 29 insertions, 0 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs
index 6bfea184a..adf46c1d6 100644
--- a/win/C#/Properties/Settings.Designer.cs
+++ b/win/C#/Properties/Settings.Designer.cs
@@ -586,5 +586,28 @@ namespace Handbrake.Properties {
this["CompletionOption"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ public global::System.Collections.Specialized.StringCollection BuiltInPresets {
+ get {
+ return ((global::System.Collections.Specialized.StringCollection)(this["BuiltInPresets"]));
+ }
+ set {
+ this["BuiltInPresets"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("")]
+ public string SelectedPreset {
+ get {
+ return ((string)(this["SelectedPreset"]));
+ }
+ set {
+ this["SelectedPreset"] = value;
+ }
+ }
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings
index 338ca669f..5758795a6 100644
--- a/win/C#/Properties/Settings.settings
+++ b/win/C#/Properties/Settings.settings
@@ -143,5 +143,11 @@
<Setting Name="CompletionOption" Type="System.String" Scope="User">
<Value Profile="(Default)">Do Nothing</Value>
</Setting>
+ <Setting Name="BuiltInPresets" Type="System.Collections.Specialized.StringCollection" Scope="User">
+ <Value Profile="(Default)" />
+ </Setting>
+ <Setting Name="SelectedPreset" Type="System.String" Scope="User">
+ <Value Profile="(Default)" />
+ </Setting>
</Settings>
</SettingsFile> \ No newline at end of file