-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathClilocWindow.xaml.cs
168 lines (141 loc) · 4.06 KB
/
ClilocWindow.xaml.cs
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
using System;
using System.ComponentModel;
using System.Windows;
using System.Windows.Data;
using Ultima.Package;
using Microsoft.Win32;
namespace Ultima.Spy.Application
{
/// <summary>
/// Interaction logic for ClilocWindow.xaml
/// </summary>
public partial class ClilocWindow : Window
{
#region Properties
/// <summary>
/// Represents Clilocs property.
/// </summary>
public static readonly DependencyProperty ClilocsProperty = DependencyProperty.Register(
"Clilocs", typeof( UltimaStringCollection ), typeof( ClilocWindow ),
new PropertyMetadata( null, new PropertyChangedCallback( Clilocs_Changed ) ) );
/// <summary>
/// Gets or sets clilocs.
/// </summary>
public UltimaStringCollection Clilocs
{
get { return GetValue( ClilocsProperty ) as UltimaStringCollection; }
set { SetValue( ClilocsProperty, value ); }
}
/// <summary>
/// Represents SearchQuery property.
/// </summary>
public static readonly DependencyProperty SearchQueryProperty = DependencyProperty.Register(
"SearchQuery", typeof( string ), typeof( ClilocWindow ),
new PropertyMetadata( null, new PropertyChangedCallback( SearchQuery_Changed ) ) );
/// <summary>
/// Gets or sets search query.
/// </summary>
public string SearchQuery
{
get { return GetValue( SearchQueryProperty ) as string; }
set { SetValue( SearchQueryProperty, value ); }
}
private ICollectionView _View;
private string _SearchQueryLower;
private int _SearchQueryInteger;
#endregion
#region Constructors
/// <summary>
/// Constructs a new instance of ClilocWindow.
/// </summary>
public ClilocWindow()
{
InitializeComponent();
}
#endregion
#region Methods
private void UpdateClilocs()
{
if ( _View != null )
_View.Filter -= new Predicate<object>( Filter_Displayed );
UltimaStringCollection clilocs = Clilocs;
if ( clilocs == null )
{
_View = null;
return;
}
_View = CollectionViewSource.GetDefaultView( clilocs.List );
if ( _View != null )
{
_View.Filter += new Predicate<object>( Filter_Displayed );
_View.Refresh();
}
}
private void UpdateSearchQuery()
{
try
{
_SearchQueryLower = null;
if ( !String.IsNullOrWhiteSpace( SearchQuery ) )
_SearchQueryLower = SearchQuery.ToLowerInvariant();
_SearchQueryInteger = 0;
if ( !Int32.TryParse( SearchQuery, out _SearchQueryInteger ) )
_SearchQueryInteger = 0;
if ( _View != null )
_View.Refresh();
}
catch ( Exception ex )
{
App.Window.ShowNotification( NotificationType.Error, ex );
}
}
private bool Filter_Displayed( object o )
{
if ( _SearchQueryLower == null )
return true;
UltimaStringCollectionItem item = o as UltimaStringCollectionItem;
if ( item != null )
{
if ( item.Text != null && item.Text.ToLowerInvariant().Contains( _SearchQueryLower ) )
return true;
else if ( item.Number == _SearchQueryInteger )
return true;
else if ( item.Number.ToString().Contains( _SearchQueryLower ) )
return true;
return false;
}
return true;
}
private void OpenClilocs_Click( object sender, RoutedEventArgs e )
{
OpenFileDialog dialog = new OpenFileDialog();
dialog.Filter = "All Files|*.*";
dialog.CheckPathExists = true;
dialog.Title = "Open Clilocs";
if ( dialog.ShowDialog() == true )
{
try
{
Clilocs = UltimaStringCollection.FromFile( dialog.FileName );
}
catch ( Exception ex )
{
ErrorWindow.Show( ex );
}
}
}
private static void Clilocs_Changed( DependencyObject d, DependencyPropertyChangedEventArgs e )
{
ClilocWindow entry = d as ClilocWindow;
if ( entry != null )
entry.UpdateClilocs();
}
private static void SearchQuery_Changed( DependencyObject d, DependencyPropertyChangedEventArgs e )
{
ClilocWindow entry = d as ClilocWindow;
if ( entry != null )
entry.UpdateSearchQuery();
}
#endregion
}
}