diff options
author | sr55 <[email protected]> | 2011-11-20 18:30:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-20 18:30:43 +0000 |
commit | c0c88720f5f59104770be38f0e84d7c2897ef465 (patch) | |
tree | b1a17f7d388203cf99f5eec0665c1806dd1b8221 /win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs | |
parent | 24cfd6cf3e18288052533ea385a6d0b648fac139 (diff) |
WinGui: (WPF) Add global exception handler and new wpf exception view.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4361 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs new file mode 100644 index 000000000..b93671970 --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs @@ -0,0 +1,137 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ErrorViewModel.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Defines the ErrorViewModel type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels
+{
+ using System;
+ using System.ComponentModel.Composition;
+ using System.Windows;
+
+ using HandBrakeWPF.ViewModels.Interfaces;
+
+ /// <summary>
+ /// The Error View Model
+ /// </summary>
+ [Export(typeof(IErrorViewModel))]
+ public class ErrorViewModel : ViewModelBase, IErrorViewModel
+ {
+ #region Constants and Fields
+
+ /// <summary>
+ /// The details.
+ /// </summary>
+ private string details;
+
+ /// <summary>
+ /// The error message.
+ /// </summary>
+ private string errorMessage;
+
+ /// <summary>
+ /// The solution.
+ /// </summary>
+ private string solution;
+
+ #endregion
+
+ #region Constructors and Destructors
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ErrorViewModel"/> class.
+ /// </summary>
+ public ErrorViewModel()
+ : base(null)
+ {
+ this.Title = "Error";
+ this.ErrorMessage = "An Unknown Error has occured.";
+ this.Details = "There is no further information available about this error.";
+ }
+
+ #endregion
+
+ #region Properties
+
+ /// <summary>
+ /// Gets or sets Details.
+ /// </summary>
+ public string Details
+ {
+ get
+ {
+ return string.IsNullOrEmpty(this.details) ? "There is no further information available about this error." : this.details;
+ }
+
+ set
+ {
+ this.details = value;
+ this.NotifyOfPropertyChange("Details");
+ }
+ }
+
+ /// <summary>
+ /// Gets or sets ErrorMessage.
+ /// </summary>
+ public string ErrorMessage
+ {
+ get
+ {
+ return this.errorMessage;
+ }
+
+ set
+ {
+ this.errorMessage = value;
+ this.NotifyOfPropertyChange("ErrorMessage");
+ }
+ }
+
+ /// <summary>
+ /// Gets or sets Solution.
+ /// </summary>
+ public string Solution
+ {
+ get
+ {
+ return string.IsNullOrEmpty(this.solution) ? "If the problem presists, please try restarting HandBrake." : this.solution;
+ }
+
+ set
+ {
+ this.solution = value;
+ this.NotifyOfPropertyChange("Solution");
+ }
+ }
+
+ #endregion
+
+ /// <summary>
+ /// Close this window.
+ /// </summary>
+ public void Close()
+ {
+ try
+ {
+ this.TryClose();
+ }
+ catch (Exception e)
+ {
+ Console.WriteLine(e);
+ }
+
+ }
+
+ /// <summary>
+ /// Copy the Error to the clipboard.
+ /// </summary>
+ public void Copy()
+ {
+ Clipboard.SetDataObject(this.ErrorMessage + Environment.NewLine + this.Details, true);
+ }
+ }
+}
\ No newline at end of file |