mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
moved AutoCompleteBox extension to separate source file.
This commit is contained in:
parent
0f30dfeb18
commit
4738025ec6
94
AutoComplete.cs
Normal file
94
AutoComplete.cs
Normal file
@ -0,0 +1,94 @@
|
||||
//! \file AutoComplete.cs
|
||||
//! \date Tue Aug 04 20:41:22 2015
|
||||
//! \brief TextBox that uses filesystem as source for autocomplete.
|
||||
//
|
||||
// Copyright (C) 2014-2015 by morkt
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace GARbro.GUI
|
||||
{
|
||||
/// <summary>
|
||||
/// TextBox that uses filesystem as source for autocomplete.
|
||||
/// </summary>
|
||||
public class ExtAutoCompleteBox : AutoCompleteBox
|
||||
{
|
||||
public delegate void EnterKeyDownEvent (object sender, KeyEventArgs e);
|
||||
public event EnterKeyDownEvent EnterKeyDown;
|
||||
|
||||
public ExtAutoCompleteBox ()
|
||||
{
|
||||
this.GotFocus += (s, e) => { IsTextBoxFocused = true; };
|
||||
this.LostFocus += (s, e) => { IsTextBoxFocused = false; };
|
||||
}
|
||||
|
||||
public bool IsTextBoxFocused
|
||||
{
|
||||
get { return (bool)GetValue (HasFocusProperty); }
|
||||
private set { SetValue (HasFocusProperty, value); }
|
||||
}
|
||||
|
||||
public static readonly DependencyProperty HasFocusProperty =
|
||||
DependencyProperty.RegisterAttached ("IsTextBoxFocused", typeof(bool), typeof(ExtAutoCompleteBox), new UIPropertyMetadata());
|
||||
|
||||
protected override void OnKeyDown (KeyEventArgs e)
|
||||
{
|
||||
base.OnKeyDown (e);
|
||||
if (e.Key == Key.Enter)
|
||||
RaiseEnterKeyDownEvent (e);
|
||||
}
|
||||
|
||||
private void RaiseEnterKeyDownEvent (KeyEventArgs e)
|
||||
{
|
||||
if (EnterKeyDown != null)
|
||||
EnterKeyDown (this, e);
|
||||
}
|
||||
|
||||
protected override void OnPopulating (PopulatingEventArgs e)
|
||||
{
|
||||
try
|
||||
{
|
||||
var candidates = new List<string>();
|
||||
string dirname = Path.GetDirectoryName (this.Text);
|
||||
if (!string.IsNullOrEmpty (dirname) && Directory.Exists (dirname))
|
||||
{
|
||||
foreach (var dir in Directory.GetDirectories (dirname))
|
||||
{
|
||||
if (dir.StartsWith (dirname, StringComparison.CurrentCultureIgnoreCase))
|
||||
candidates.Add (dir);
|
||||
}
|
||||
}
|
||||
this.ItemsSource = candidates;
|
||||
}
|
||||
catch
|
||||
{
|
||||
// ignore filesystem errors
|
||||
}
|
||||
base.OnPopulating (e);
|
||||
}
|
||||
}
|
||||
}
|
@ -126,6 +126,7 @@
|
||||
<Compile Include="ArcParameters.xaml.cs">
|
||||
<DependentUpon>ArcParameters.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="AutoComplete.cs" />
|
||||
<Compile Include="ConvertMedia.xaml.cs">
|
||||
<DependentUpon>ConvertMedia.xaml</DependentUpon>
|
||||
</Compile>
|
||||
|
@ -24,28 +24,25 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Diagnostics;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Threading;
|
||||
using System.Threading;
|
||||
using Microsoft.VisualBasic.FileIO;
|
||||
using GARbro.GUI.Properties;
|
||||
using GARbro.GUI.Strings;
|
||||
using GameRes;
|
||||
using Rnd.Windows;
|
||||
using System.Collections.Specialized;
|
||||
using System.Collections.ObjectModel;
|
||||
using Microsoft.Win32;
|
||||
using NAudio.Wave;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace GARbro.GUI
|
||||
{
|
||||
@ -1250,66 +1247,6 @@ namespace GARbro.GUI
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// TextBox that uses filesystem as source for autocomplete.
|
||||
/// </summary>
|
||||
public class ExtAutoCompleteBox : AutoCompleteBox
|
||||
{
|
||||
public delegate void EnterKeyDownEvent (object sender, KeyEventArgs e);
|
||||
public event EnterKeyDownEvent EnterKeyDown;
|
||||
|
||||
public ExtAutoCompleteBox ()
|
||||
{
|
||||
this.GotFocus += (s, e) => { IsTextBoxFocused = true; };
|
||||
this.LostFocus += (s, e) => { IsTextBoxFocused = false; };
|
||||
}
|
||||
|
||||
public bool IsTextBoxFocused
|
||||
{
|
||||
get { return (bool)GetValue (HasFocusProperty); }
|
||||
private set { SetValue (HasFocusProperty, value); }
|
||||
}
|
||||
|
||||
public static readonly DependencyProperty HasFocusProperty =
|
||||
DependencyProperty.RegisterAttached ("IsTextBoxFocused", typeof(bool), typeof(ExtAutoCompleteBox), new UIPropertyMetadata());
|
||||
|
||||
protected override void OnKeyDown (KeyEventArgs e)
|
||||
{
|
||||
base.OnKeyDown (e);
|
||||
if (e.Key == Key.Enter)
|
||||
RaiseEnterKeyDownEvent (e);
|
||||
}
|
||||
|
||||
private void RaiseEnterKeyDownEvent (KeyEventArgs e)
|
||||
{
|
||||
if (EnterKeyDown != null)
|
||||
EnterKeyDown (this, e);
|
||||
}
|
||||
|
||||
protected override void OnPopulating (PopulatingEventArgs e)
|
||||
{
|
||||
var candidates = new List<string>();
|
||||
try
|
||||
{
|
||||
string dirname = Path.GetDirectoryName (this.Text);
|
||||
if (!string.IsNullOrEmpty (dirname) && Directory.Exists (dirname))
|
||||
{
|
||||
foreach (var dir in Directory.GetDirectories (dirname))
|
||||
{
|
||||
if (dir.StartsWith (dirname, StringComparison.CurrentCultureIgnoreCase))
|
||||
candidates.Add (dir);
|
||||
}
|
||||
}
|
||||
this.ItemsSource = candidates;
|
||||
}
|
||||
catch
|
||||
{
|
||||
// ignore filesystem errors
|
||||
}
|
||||
base.OnPopulating (e);
|
||||
}
|
||||
}
|
||||
|
||||
public class SortModeToBooleanConverter : IValueConverter
|
||||
{
|
||||
public object Convert (object value, Type targetType, object parameter, CultureInfo culture)
|
||||
|
@ -51,5 +51,5 @@ using System.Windows;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion ("1.1.4.22")]
|
||||
[assembly: AssemblyFileVersion ("1.1.4.22")]
|
||||
[assembly: AssemblyVersion ("1.1.4.23")]
|
||||
[assembly: AssemblyFileVersion ("1.1.4.23")]
|
||||
|
Loading…
Reference in New Issue
Block a user