blob: 13396a6765c893bca1cea514d53d867ad59eaf66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ViewModelBase.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>
// A Base Class for the View Models which contains reusable code.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.ViewModels
{
using System;
using System.Diagnostics;
using System.IO;
using Caliburn.Micro;
using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// A Base Class for the View Models which contains reusable code.
/// </summary>
public class ViewModelBase : Screen, IViewModelBase
{
private readonly IUserSettingService userSettingService;
private bool hasLoaded;
private string title;
public ViewModelBase()
{
}
public ViewModelBase(IUserSettingService userSettingService)
{
this.userSettingService = userSettingService;
}
#region Properties
/// <summary>
/// Gets or sets Details.
/// </summary>
public string Title
{
get
{
return this.title;
}
set
{
this.title = value;
this.NotifyOfPropertyChange();
}
}
#endregion
#region Public Methods
/// <summary>
/// Perform any Initialisation for this ViewModelBase.
/// </summary>
public void Load()
{
if (!this.hasLoaded)
{
this.hasLoaded = true;
// Initialise the ViewModels OnLoad method if it exists.
this.OnLoad();
}
}
/// <summary>
/// Load Method for the ViewModel
/// </summary>
public virtual void OnLoad()
{
// Implement in the ViewModel to perform viewmodel specific code.
}
public string GetMru(string key)
{
if (this.userSettingService == null)
{
throw new NotImplementedException("You must use the constructor with UserSettingService to use this function.");
}
string filePath = this.userSettingService.GetUserSetting<string>("mru" + key);
if (!string.IsNullOrEmpty(filePath) && Directory.Exists(filePath))
{
return filePath;
}
// Check if the parent directory still exists.
if (!string.IsNullOrEmpty(filePath) )
{
try
{
DirectoryInfo parentDirectory = Directory.GetParent(filePath);
if (parentDirectory != null && filePath.Contains(parentDirectory.FullName))
{
return parentDirectory.FullName;
}
}
catch (Exception exc)
{
Debug.WriteLine(exc);
}
}
return null;
}
public void SetMru(string key, string value)
{
if (this.userSettingService == null)
{
throw new NotImplementedException("You must use the constructor with UserSettingService to use this function.");
}
if (string.IsNullOrEmpty(value) || !Directory.Exists(value))
{
this.userSettingService.SetUserSetting("mru" + key, string.Empty);
return;
}
this.userSettingService.SetUserSetting("mru" + key, value);
}
#endregion
}
}
|