diff options
author | sr55 <[email protected]> | 2008-08-24 17:57:54 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2008-08-24 17:57:54 +0000 |
commit | 163bce7432c717a0d102568a0d582375f507e3f7 (patch) | |
tree | a62dc6dbd0d64b31a79e2630db4133b37885d668 /win/C#/Properties | |
parent | b4553cd70fde71ac12974aa83dec4508f8f690ab (diff) |
WinGui:
- Adds checkbox to enable decomb.
- Program Options updated with an option to customize decomb values.
- Queue Recovery feature. If you close the GUI without letting a queue complete, the user will be prompted if they'd like to recover the queue on next launch.
- Small bugfix with the queue HandBrakeCLI monitor thread not stopping when the GUI is closed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1653 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Properties')
-rw-r--r-- | win/C#/Properties/Settings.Designer.cs | 24 | ||||
-rw-r--r-- | win/C#/Properties/Settings.settings | 6 |
2 files changed, 30 insertions, 0 deletions
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs index 9b7fc0668..487ee378c 100644 --- a/win/C#/Properties/Settings.Designer.cs +++ b/win/C#/Properties/Settings.Designer.cs @@ -226,5 +226,29 @@ namespace Handbrake.Properties { this["checkSnapshot"] = value;
}
}
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("4:10:15:9:10:35:9")]
+ public string decomb {
+ get {
+ return ((string)(this["decomb"]));
+ }
+ set {
+ this["decomb"] = value;
+ }
+ }
+
+ [global::System.Configuration.UserScopedSettingAttribute()]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Configuration.DefaultSettingValueAttribute("4:10:15:9:10:35:9")]
+ public string default_decomb {
+ get {
+ return ((string)(this["default_decomb"]));
+ }
+ set {
+ this["default_decomb"] = value;
+ }
+ }
}
}
diff --git a/win/C#/Properties/Settings.settings b/win/C#/Properties/Settings.settings index 41a169028..db282ddad 100644 --- a/win/C#/Properties/Settings.settings +++ b/win/C#/Properties/Settings.settings @@ -53,5 +53,11 @@ <Setting Name="checkSnapshot" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
+ <Setting Name="decomb" Type="System.String" Scope="User">
+ <Value Profile="(Default)">4:10:15:9:10:35:9</Value>
+ </Setting>
+ <Setting Name="default_decomb" Type="System.String" Scope="User">
+ <Value Profile="(Default)">4:10:15:9:10:35:9</Value>
+ </Setting>
</Settings>
</SettingsFile>
\ No newline at end of file |