summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-04-01 17:09:11 +0000
committersr55 <[email protected]>2012-04-01 17:09:11 +0000
commit649939589305d92e9d6edf3c28955dfa37774722 (patch)
treea34796100b099cd6e7ff70667bd470bfd9439675 /win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
parentb07bb66a24127135b5b921db6486f1cad45f42cc (diff)
WinGui: (WPF) Cleanup and fixes to the main window and preferences screen.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4579 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
index 673579915..71d2476f1 100644
--- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs
@@ -299,6 +299,11 @@ namespace HandBrakeWPF.ViewModels
/// </summary>
private bool showAdvancedPassthruOpts;
+ /// <summary>
+ /// Backing field for clear queue on encode completed.
+ /// </summary>
+ private bool clearQueueOnEncodeCompleted;
+
#endregion
#region Constructors and Destructors
@@ -1215,6 +1220,23 @@ namespace HandBrakeWPF.ViewModels
this.NotifyOfPropertyChange("ShowCliWindow");
}
}
+
+ /// <summary>
+ /// Gets or sets a value indicating whether ClearQueueOnEncodeCompleted.
+ /// </summary>
+ public bool ClearQueueOnEncodeCompleted
+ {
+ get
+ {
+ return this.clearQueueOnEncodeCompleted;
+ }
+ set
+ {
+ this.clearQueueOnEncodeCompleted = value;
+ this.NotifyOfPropertyChange(() => this.ClearQueueOnEncodeCompleted);
+ }
+ }
+
#endregion
#endregion
@@ -1393,6 +1415,7 @@ namespace HandBrakeWPF.ViewModels
this.minimiseToTray = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.MainWindowMinimize);
this.disablePresetUpdateCheckNotification = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.PresetNotification);
this.showCliWindow = userSettingService.GetUserSetting<bool>(ASUserSettingConstants.ShowCLI);
+ this.clearQueueOnEncodeCompleted = userSettingService.GetUserSetting<bool>(ASUserSettingConstants.ClearCompletedFromQueue);
// Set the preview count
this.PreviewPicturesToScan.Add(10);
@@ -1632,6 +1655,7 @@ namespace HandBrakeWPF.ViewModels
userSettingService.SetUserSetting(UserSettingConstants.TrayIconAlerts, this.DisplayStatusMessagesTrayIcon);
userSettingService.SetUserSetting(UserSettingConstants.PresetNotification, this.DisablePresetUpdateCheckNotification);
userSettingService.SetUserSetting(ASUserSettingConstants.ShowCLI, this.ShowCliWindow);
+ userSettingService.SetUserSetting(ASUserSettingConstants.ClearCompletedFromQueue, this.ClearQueueOnEncodeCompleted);
userSettingService.SetUserSetting(ASUserSettingConstants.PreviewScanCount, this.SelectedPreviewCount);
userSettingService.SetUserSetting(ASUserSettingConstants.X264Step, double.Parse(this.SelectedGranulairty));