PowerToys/Plugins/Wox.Plugin.Program/AddProgramSource.xaml.cs

69 lines
1.9 KiB
C#
Raw Normal View History

2016-08-20 06:24:21 +08:00
using System.Windows;
2016-01-07 05:34:42 +08:00
using System.Windows.Forms;
2016-08-20 08:17:28 +08:00
using Wox.Plugin.Program.Programs;
namespace Wox.Plugin.Program
{
/// <summary>
/// Interaction logic for AddProgramSource.xaml
/// </summary>
2015-04-22 21:22:55 +08:00
public partial class AddProgramSource
{
2018-12-22 14:07:42 +08:00
private PluginInitContext _context;
2016-08-20 08:17:28 +08:00
private Settings.ProgramSource _editing;
private Settings _settings;
2018-12-22 14:07:42 +08:00
public AddProgramSource(PluginInitContext context, Settings settings)
{
InitializeComponent();
2018-12-22 14:07:42 +08:00
_context = context;
_settings = settings;
Directory.Focus();
}
2016-08-20 08:17:28 +08:00
public AddProgramSource(Settings.ProgramSource edit, Settings settings)
2015-05-02 22:17:42 +08:00
{
2016-01-07 05:34:42 +08:00
_editing = edit;
2016-04-24 10:49:04 +08:00
_settings = settings;
InitializeComponent();
2016-01-07 05:34:42 +08:00
Directory.Text = _editing.Location;
2015-05-02 22:17:42 +08:00
}
private void BrowseButton_Click(object sender, RoutedEventArgs e)
{
2016-01-07 05:34:42 +08:00
var dialog = new FolderBrowserDialog();
DialogResult result = dialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.OK)
{
2016-01-07 05:34:42 +08:00
Directory.Text = dialog.SelectedPath;
}
}
private void ButtonAdd_OnClick(object sender, RoutedEventArgs e)
{
2018-12-22 14:07:42 +08:00
string s = Directory.Text;
if (!System.IO.Directory.Exists(s))
{
System.Windows.MessageBox.Show(_context.API.GetTranslation("wox_plugin_program_invalid_path"));
return;
}
if (_editing == null)
2015-05-02 22:17:42 +08:00
{
2016-08-20 08:17:28 +08:00
var source = new Settings.ProgramSource
2015-05-02 22:17:42 +08:00
{
2016-01-07 05:34:42 +08:00
Location = Directory.Text,
};
_settings.ProgramSources.Add(source);
2015-05-02 22:17:42 +08:00
}
else
{
2016-01-07 05:34:42 +08:00
_editing.Location = Directory.Text;
2015-05-02 22:17:42 +08:00
}
2016-01-07 05:34:42 +08:00
DialogResult = true;
Close();
}
}
}