PowerToys/Wox/MainWindow.xaml.cs

378 lines
13 KiB
C#
Raw Normal View History

2014-01-29 18:33:24 +08:00
using System;
using System.ComponentModel;
2014-01-29 18:33:24 +08:00
using System.Windows;
2016-01-07 05:34:42 +08:00
using System.Windows.Forms;
2014-01-29 18:33:24 +08:00
using System.Windows.Input;
using System.Windows.Media.Animation;
using System.Windows.Controls;
2014-12-26 19:36:43 +08:00
using Wox.Core.Plugin;
using Wox.Core.Resource;
using Wox.Core.UserSettings;
2014-03-02 11:04:30 +08:00
using Wox.Helper;
2014-12-21 22:03:03 +08:00
using Wox.Infrastructure.Hotkey;
2016-02-23 05:43:37 +08:00
using Wox.ViewModel;
using ContextMenu = System.Windows.Forms.ContextMenu;
2016-01-07 05:34:42 +08:00
using DataFormats = System.Windows.DataFormats;
using DragEventArgs = System.Windows.DragEventArgs;
using KeyEventArgs = System.Windows.Input.KeyEventArgs;
using MenuItem = System.Windows.Forms.MenuItem;
2016-01-07 05:34:42 +08:00
using MessageBox = System.Windows.MessageBox;
2014-01-29 18:33:24 +08:00
2014-07-24 04:46:19 +08:00
namespace Wox
{
public partial class MainWindow
2014-07-24 04:46:19 +08:00
{
2016-02-27 07:43:57 +08:00
#region Private Fields
2014-07-24 04:46:19 +08:00
2016-02-27 07:43:57 +08:00
private readonly Storyboard _progressBarStoryboard = new Storyboard();
private Settings _settings;
private NotifyIcon _notifyIcon;
2015-02-04 23:16:41 +08:00
2014-07-24 04:46:19 +08:00
#endregion
2016-02-27 07:43:57 +08:00
public MainWindow(Settings settings, MainViewModel mainVM)
{
DataContext = mainVM;
InitializeComponent();
_settings = settings;
}
2014-07-24 04:46:19 +08:00
public MainWindow()
{
InitializeComponent();
}
2016-02-27 07:43:57 +08:00
private void OnClosing(object sender, CancelEventArgs e)
2014-07-24 04:46:19 +08:00
{
_notifyIcon.Visible = false;
_settings.WindowLeft = Left;
_settings.WindowTop = Top;
var vm = (MainViewModel)DataContext;
2016-05-10 05:45:20 +08:00
vm.Save();
2014-07-24 04:46:19 +08:00
}
2016-05-10 05:45:20 +08:00
2016-02-27 07:43:57 +08:00
private void OnLoaded(object sender, RoutedEventArgs _)
2014-07-24 04:46:19 +08:00
{
2015-02-20 21:45:42 +08:00
InitProgressbarAnimation();
WindowIntelopHelper.DisableControlBox(this);
2016-05-10 05:56:05 +08:00
ThemeManager.Instance.ChangeTheme(_settings.Theme);
InitializeNotifyIcon();
2016-02-12 17:20:46 +08:00
2016-02-27 07:43:57 +08:00
var vm = (MainViewModel)DataContext;
RegisterEvents(vm);
// happlebao todo delete
vm.Left = GetWindowsLeft();
vm.Top = GetWindowsTop();
vm.MainWindowVisibility = _settings.HideOnStartup ? Visibility.Hidden : Visibility.Visible;
}
private void RegisterEvents(MainViewModel vm)
{
2016-02-27 07:43:57 +08:00
vm.TextBoxSelected += (o, e) => QueryTextBox.SelectAll();
vm.CursorMovedToEnd += (o, e) =>
2016-02-12 17:20:46 +08:00
{
2016-02-27 07:43:57 +08:00
QueryTextBox.Focus();
QueryTextBox.CaretIndex = QueryTextBox.Text.Length;
};
vm.MainWindowVisibilityChanged += (o, e) =>
{
if (vm.MainWindowVisibility.IsVisible())
2016-02-12 17:20:46 +08:00
{
2016-02-27 07:43:57 +08:00
Activate();
QueryTextBox.Focus();
Left = GetWindowsLeft();
Top = GetWindowsTop();
_settings.ActivateTimes++;
}
else
{
_settings.WindowLeft = Left;
_settings.WindowTop = Top;
2016-02-12 17:20:46 +08:00
}
};
}
2016-02-12 17:20:46 +08:00
private void InitializeNotifyIcon()
{
2016-05-19 02:38:43 +08:00
_notifyIcon = new NotifyIcon { Text = Infrastructure.Constant.Wox, Icon = Properties.Resources.app, Visible = true };
_notifyIcon.Click += (o, e) => App.API.ShowApp();
var open = new MenuItem(InternationalizationManager.Instance.GetTranslation("iconTrayOpen"));
open.Click += (o, e) => App.API.ShowApp();
var setting = new MenuItem(InternationalizationManager.Instance.GetTranslation("iconTraySettings"));
setting.Click += (o, e) => App.API.OpenSettingDialog();
var about = new MenuItem(InternationalizationManager.Instance.GetTranslation("iconTrayAbout"));
2016-05-22 06:42:23 +08:00
about.Click += (o, e) => App.API.OpenSettingDialog((int) SettingWindowViewModel.Tab.About);
var exit = new MenuItem(InternationalizationManager.Instance.GetTranslation("iconTrayExit"));
exit.Click += (o, e) => Close();
MenuItem[] childen = { open, setting, about, exit };
_notifyIcon.ContextMenu = new ContextMenu(childen);
2015-02-20 21:45:42 +08:00
}
private double GetWindowsLeft()
{
if (_settings.RememberLastLaunchLocation)
{
return _settings.WindowLeft;
}
2014-07-24 04:46:19 +08:00
var screen = Screen.FromPoint(System.Windows.Forms.Cursor.Position);
var dip1 = WindowIntelopHelper.TransformPixelsToDIP(this, screen.WorkingArea.X, 0);
var dip2 = WindowIntelopHelper.TransformPixelsToDIP(this, screen.WorkingArea.Width, 0);
var left = (dip2.X - ActualWidth) / 2 + dip1.X;
return left;
2015-02-20 21:45:42 +08:00
}
private double GetWindowsTop()
{
if (_settings.RememberLastLaunchLocation)
{
return _settings.WindowTop;
}
2015-02-20 21:45:42 +08:00
var screen = Screen.FromPoint(System.Windows.Forms.Cursor.Position);
var dip1 = WindowIntelopHelper.TransformPixelsToDIP(this, 0, screen.WorkingArea.Y);
var dip2 = WindowIntelopHelper.TransformPixelsToDIP(this, 0, screen.WorkingArea.Height);
var top = (dip2.Y - ActualHeight) / 4 + dip1.Y;
return top;
2015-02-01 22:46:56 +08:00
}
2014-07-24 04:46:19 +08:00
private void InitProgressbarAnimation()
{
var da = new DoubleAnimation(ProgressBar.X2, ActualWidth + 100, new Duration(new TimeSpan(0, 0, 0, 0, 1600)));
var da1 = new DoubleAnimation(ProgressBar.X1, ActualWidth, new Duration(new TimeSpan(0, 0, 0, 0, 1600)));
2014-07-24 04:46:19 +08:00
Storyboard.SetTargetProperty(da, new PropertyPath("(Line.X2)"));
Storyboard.SetTargetProperty(da1, new PropertyPath("(Line.X1)"));
2016-02-27 07:43:57 +08:00
_progressBarStoryboard.Children.Add(da);
_progressBarStoryboard.Children.Add(da1);
_progressBarStoryboard.RepeatBehavior = RepeatBehavior.Forever;
ProgressBar.Visibility = Visibility.Hidden;
ProgressBar.BeginStoryboard(_progressBarStoryboard);
2014-07-24 04:46:19 +08:00
}
2016-02-27 07:43:57 +08:00
private void OnMouseDown(object sender, MouseButtonEventArgs e)
2014-07-24 04:46:19 +08:00
{
if (e.ChangedButton == MouseButton.Left) DragMove();
}
2016-02-27 07:43:57 +08:00
private void OnDeactivated(object sender, EventArgs e)
2014-07-24 04:46:19 +08:00
{
if (_settings.HideWhenDeactive)
2014-07-24 04:46:19 +08:00
{
2016-02-12 17:20:46 +08:00
App.API.HideApp();
2014-07-24 04:46:19 +08:00
}
}
2016-02-27 07:43:57 +08:00
private void OnPreviewKeyDown(object sender, KeyEventArgs e)
2016-02-12 14:21:12 +08:00
{
var vm = DataContext as MainViewModel;
if (null == vm) return;
2016-02-12 14:21:12 +08:00
//when alt is pressed, the real key should be e.SystemKey
var key = (e.Key == Key.System ? e.SystemKey : e.Key);
2016-02-12 14:21:12 +08:00
switch (key)
{
case Key.Escape:
vm.EscCommand.Execute(null);
e.Handled = true;
break;
case Key.Tab:
if (GlobalHotkey.Instance.CheckModifiers().ShiftPressed)
{
vm.SelectPrevItemCommand.Execute(null);
}
else
{
vm.SelectNextItemCommand.Execute(null);
}
e.Handled = true;
break;
case Key.N:
case Key.J:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.SelectNextItemCommand.Execute(null);
}
break;
case Key.P:
case Key.K:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.SelectPrevItemCommand.Execute(null);
}
break;
case Key.O:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.LoadContextMenuCommand.Execute(null);
}
break;
case Key.Enter:
if (GlobalHotkey.Instance.CheckModifiers().ShiftPressed)
{
vm.LoadContextMenuCommand.Execute(null);
}
else
{
vm.OpenResultCommand.Execute(null);
}
e.Handled = true;
break;
2016-02-12 14:21:12 +08:00
case Key.Down:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.DisplayNextQueryCommand.Execute(null);
}
else
{
vm.SelectNextItemCommand.Execute(null);
}
e.Handled = true;
break;
case Key.Up:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.DisplayPrevQueryCommand.Execute(null);
}
else
{
vm.SelectPrevItemCommand.Execute(null);
}
e.Handled = true;
break;
case Key.D:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.SelectNextPageCommand.Execute(null);
}
break;
2016-02-12 14:21:12 +08:00
case Key.PageDown:
vm.SelectNextPageCommand.Execute(null);
e.Handled = true;
break;
case Key.U:
if (GlobalHotkey.Instance.CheckModifiers().CtrlPressed)
{
vm.SelectPrevPageCommand.Execute(null);
}
break;
2016-02-12 14:21:12 +08:00
case Key.PageUp:
vm.SelectPrevPageCommand.Execute(null);
e.Handled = true;
break;
case Key.F1:
vm.StartHelpCommand.Execute(null);
break;
case Key.D1:
if (GlobalHotkey.Instance.CheckModifiers().AltPressed)
{
vm.OpenResultCommand.Execute(0);
}
break;
case Key.D2:
if (GlobalHotkey.Instance.CheckModifiers().AltPressed)
{
vm.OpenResultCommand.Execute(1);
}
break;
case Key.D3:
if (GlobalHotkey.Instance.CheckModifiers().AltPressed)
{
vm.OpenResultCommand.Execute(2);
}
break;
case Key.D4:
if (GlobalHotkey.Instance.CheckModifiers().AltPressed)
{
vm.OpenResultCommand.Execute(3);
}
break;
case Key.D5:
if (GlobalHotkey.Instance.CheckModifiers().AltPressed)
{
vm.OpenResultCommand.Execute(4);
}
break;
case Key.D6:
if (GlobalHotkey.Instance.CheckModifiers().AltPressed)
{
vm.OpenResultCommand.Execute(5);
}
break;
}
}
private void OnPreviewMouseButtonDown(object sender, MouseButtonEventArgs e)
{
if (sender != null && e.OriginalSource != null)
{
var r = (ResultListBox)sender;
var d = (DependencyObject)e.OriginalSource;
var item = ItemsControl.ContainerFromElement(r, d) as ListBoxItem;
var result = (ResultViewModel)item?.DataContext;
if (result != null)
{
var vm = DataContext as MainViewModel;
if (vm != null)
{
if (e.ChangedButton == MouseButton.Left)
{
vm.OpenResultCommand.Execute(null);
}
else if (e.ChangedButton == MouseButton.Right)
{
vm.LoadContextMenuCommand.Execute(null);
}
}
}
2016-02-12 14:21:12 +08:00
}
}
2016-02-27 07:43:57 +08:00
private void OnDrop(object sender, DragEventArgs e)
2014-07-24 04:46:19 +08:00
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
2014-07-24 04:46:19 +08:00
{
// Note that you can have more than one file.
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
2014-07-24 04:46:19 +08:00
if (files[0].ToLower().EndsWith(".wox"))
{
2014-12-27 12:34:51 +08:00
PluginManager.InstallPlugin(files[0]);
2014-07-24 04:46:19 +08:00
}
else
{
2015-01-21 23:00:56 +08:00
MessageBox.Show(InternationalizationManager.Instance.GetTranslation("invalidWoxPluginFileFormat"));
2014-07-24 04:46:19 +08:00
}
}
2016-02-12 14:21:12 +08:00
e.Handled = false;
2014-07-24 04:46:19 +08:00
}
2016-02-27 07:43:57 +08:00
private void OnPreviewDragOver(object sender, DragEventArgs e)
2014-07-24 04:46:19 +08:00
{
e.Handled = true;
}
private void OnContextMenusForSettingsClick(object sender, RoutedEventArgs e)
{
App.API.OpenSettingDialog();
}
2014-07-24 04:46:19 +08:00
}
2013-12-22 19:35:21 +08:00
}