using System; using System.Collections.Generic; using System.Configuration; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using IWshRuntimeLibrary; using Wox.Core.Plugin; using Wox.Plugin; using Wox.Helper; using Wox.Update; using Application = System.Windows.Forms.Application; using File = System.IO.File; using MessageBox = System.Windows.MessageBox; using System.Windows.Data; using Wox.Core.i18n; using Wox.Core.Theme; using Wox.Core.UserSettings; namespace Wox { public partial class SettingWindow : Window { string woxLinkPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Startup), "wox.lnk"); public MainWindow MainWindow; bool settingsLoaded = false; private Dictionary featureControls = new Dictionary(); public SettingWindow(MainWindow mainWindow) { this.MainWindow = mainWindow; InitializeComponent(); Loaded += Setting_Loaded; } private void Setting_Loaded(object sender, RoutedEventArgs ev) { #region General cbHideWhenDeactive.Checked += (o, e) => { UserSettingStorage.Instance.HideWhenDeactive = true; UserSettingStorage.Instance.Save(); }; cbHideWhenDeactive.Unchecked += (o, e) => { UserSettingStorage.Instance.HideWhenDeactive = false; UserSettingStorage.Instance.Save(); }; cbDontPromptUpdateMsg.Checked += (o, e) => { UserSettingStorage.Instance.DontPromptUpdateMsg = true; UserSettingStorage.Instance.Save(); }; cbDontPromptUpdateMsg.Unchecked += (o, e) => { UserSettingStorage.Instance.DontPromptUpdateMsg = false; UserSettingStorage.Instance.Save(); }; cbStartWithWindows.IsChecked = File.Exists(woxLinkPath); cbHideWhenDeactive.IsChecked = UserSettingStorage.Instance.HideWhenDeactive; cbDontPromptUpdateMsg.IsChecked = UserSettingStorage.Instance.DontPromptUpdateMsg; LoadLanguages(); #endregion #region Theme if (!string.IsNullOrEmpty(UserSettingStorage.Instance.QueryBoxFont) && Fonts.SystemFontFamilies.Count(o => o.FamilyNames.Values.Contains(UserSettingStorage.Instance.QueryBoxFont)) > 0) { cbQueryBoxFont.Text = UserSettingStorage.Instance.QueryBoxFont; cbQueryBoxFontFaces.SelectedItem = SyntaxSugars.CallOrRescueDefault(() => ((FontFamily)cbQueryBoxFont.SelectedItem).ConvertFromInvariantStringsOrNormal( UserSettingStorage.Instance.QueryBoxFontStyle, UserSettingStorage.Instance.QueryBoxFontWeight, UserSettingStorage.Instance.QueryBoxFontStretch )); } if (!string.IsNullOrEmpty(UserSettingStorage.Instance.ResultItemFont) && Fonts.SystemFontFamilies.Count(o => o.FamilyNames.Values.Contains(UserSettingStorage.Instance.ResultItemFont)) > 0) { cbResultItemFont.Text = UserSettingStorage.Instance.ResultItemFont; cbResultItemFontFaces.SelectedItem = SyntaxSugars.CallOrRescueDefault(() => ((FontFamily)cbResultItemFont.SelectedItem).ConvertFromInvariantStringsOrNormal( UserSettingStorage.Instance.ResultItemFontStyle, UserSettingStorage.Instance.ResultItemFontWeight, UserSettingStorage.Instance.ResultItemFontStretch )); } resultPanelPreview.AddResults(new List() { new Result() { Title = "Wox is an effective launcher for windows", SubTitle = "Wox provide bundles of features let you access infomations quickly.", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(System.Windows.Forms.Application.ExecutablePath) }, new Result() { Title = "Search applications", SubTitle = "Search applications, files (via everything plugin) and browser bookmarks", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(System.Windows.Forms.Application.ExecutablePath) }, new Result() { Title = "Search web contents with shortcuts", SubTitle = "e.g. search google with g keyword or youtube keyword)", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(Application.ExecutablePath) }, new Result() { Title = "clipboard history ", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(Application.ExecutablePath) }, new Result() { Title = "Themes support", SubTitle = "get more themes from http://www.getwox.com/theme", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(Application.ExecutablePath) }, new Result() { Title = "Plugins support", SubTitle = "get more plugins from http://www.getwox.com/plugin", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(Application.ExecutablePath) }, new Result() { Title = "Wox is an open-source software", SubTitle = "Wox benefits from the open-source community a lot", IcoPath = "Images/work.png", PluginDirectory = Path.GetDirectoryName(Application.ExecutablePath) } }); foreach (string theme in ThemeManager.Theme.LoadAvailableThemes()) { string themeName = System.IO.Path.GetFileNameWithoutExtension(theme); themeComboBox.Items.Add(themeName); } themeComboBox.SelectedItem = UserSettingStorage.Instance.Theme; slOpacity.Value = UserSettingStorage.Instance.Opacity; CbOpacityMode.SelectedItem = UserSettingStorage.Instance.OpacityMode; var wallpaper = WallpaperPathRetrieval.GetWallpaperPath(); if (wallpaper != null && File.Exists(wallpaper)) { var brush = new ImageBrush(new BitmapImage(new Uri(wallpaper))); brush.Stretch = Stretch.UniformToFill; PreviewPanel.Background = brush; } else { var wallpaperColor = WallpaperPathRetrieval.GetWallpaperColor(); PreviewPanel.Background = new SolidColorBrush(wallpaperColor); } //PreviewPanel ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme); #endregion #region Plugin ctlHotkey.OnHotkeyChanged += ctlHotkey_OnHotkeyChanged; ctlHotkey.SetHotkey(UserSettingStorage.Instance.Hotkey, false); lvCustomHotkey.ItemsSource = UserSettingStorage.Instance.CustomPluginHotkeys; var plugins = new CompositeCollection { new CollectionContainer { Collection = PluginManager.AllPlugins } }; lbPlugins.ItemsSource = plugins; lbPlugins.SelectedIndex = 0; #endregion #region Proxy cbEnableProxy.Checked += (o, e) => EnableProxy(); cbEnableProxy.Unchecked += (o, e) => DisableProxy(); cbEnableProxy.IsChecked = UserSettingStorage.Instance.ProxyEnabled; tbProxyServer.Text = UserSettingStorage.Instance.ProxyServer; tbProxyPort.Text = UserSettingStorage.Instance.ProxyPort.ToString(); tbProxyUserName.Text = UserSettingStorage.Instance.ProxyUserName; tbProxyPassword.Password = UserSettingStorage.Instance.ProxyPassword; if (UserSettingStorage.Instance.ProxyEnabled) { EnableProxy(); } else { DisableProxy(); } #endregion #region About tbVersion.Text = ConfigurationManager.AppSettings["version"]; Release newRelease = new UpdateChecker().CheckUpgrade(); if (newRelease == null) { tbNewVersionAvailable.Visibility = Visibility.Collapsed; } else { tbNewVersionAvailable.Text = newRelease.version + " available"; } #endregion settingsLoaded = true; } private void LoadLanguages() { cbLanguages.ItemsSource = InternationalizationManager.Internationalization.LoadAvailableLanguages(); cbLanguages.DisplayMemberPath = "Display"; cbLanguages.SelectedValuePath = "LanguageCode"; cbLanguages.SelectedValue = UserSettingStorage.Instance.Language; cbLanguages.SelectionChanged += cbLanguages_SelectionChanged; } void cbLanguages_SelectionChanged(object sender, SelectionChangedEventArgs e) { InternationalizationManager.Internationalization.ChangeLanguage(cbLanguages.SelectedItem as Language); } private void EnableProxy() { tbProxyPassword.IsEnabled = true; tbProxyServer.IsEnabled = true; tbProxyUserName.IsEnabled = true; tbProxyPort.IsEnabled = true; } private void DisableProxy() { tbProxyPassword.IsEnabled = false; tbProxyServer.IsEnabled = false; tbProxyUserName.IsEnabled = false; tbProxyPort.IsEnabled = false; } private void CbStartWithWindows_OnChecked(object sender, RoutedEventArgs e) { CreateStartupFolderShortcut(); UserSettingStorage.Instance.StartWoxOnSystemStartup = true; UserSettingStorage.Instance.Save(); } private void CbStartWithWindows_OnUnchecked(object sender, RoutedEventArgs e) { if (File.Exists(woxLinkPath)) { File.Delete(woxLinkPath); } UserSettingStorage.Instance.StartWoxOnSystemStartup = false; UserSettingStorage.Instance.Save(); } private void CreateStartupFolderShortcut() { WshShellClass wshShell = new WshShellClass(); IWshShortcut shortcut = (IWshShortcut)wshShell.CreateShortcut(woxLinkPath); shortcut.TargetPath = Application.ExecutablePath; shortcut.Arguments = "hideStart"; shortcut.WorkingDirectory = Path.GetDirectoryName(Application.ExecutablePath); shortcut.Description = "Launch Wox"; shortcut.IconLocation = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "App.ico"); shortcut.Save(); } void ctlHotkey_OnHotkeyChanged(object sender, System.EventArgs e) { if (ctlHotkey.CurrentHotkeyAvailable) { MainWindow.SetHotkey(ctlHotkey.CurrentHotkey.ToString(), delegate { if (!MainWindow.IsVisible) { MainWindow.ShowApp(); } else { MainWindow.HideApp(); } }); MainWindow.RemoveHotkey(UserSettingStorage.Instance.Hotkey); UserSettingStorage.Instance.Hotkey = ctlHotkey.CurrentHotkey.ToString(); UserSettingStorage.Instance.Save(); } } #region Custom Plugin Hotkey private void BtnDeleteCustomHotkey_OnClick(object sender, RoutedEventArgs e) { CustomPluginHotkey item = lvCustomHotkey.SelectedItem as CustomPluginHotkey; if (item == null) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("pleaseSelectAnItem")); return; } string deleteWarning = string.Format(InternationalizationManager.Internationalization.GetTranslation("deleteCustomHotkeyWarning"), item.Hotkey); if (MessageBox.Show(deleteWarning, InternationalizationManager.Internationalization.GetTranslation("delete"), MessageBoxButton.YesNo) == MessageBoxResult.Yes) { UserSettingStorage.Instance.CustomPluginHotkeys.Remove(item); lvCustomHotkey.Items.Refresh(); UserSettingStorage.Instance.Save(); MainWindow.RemoveHotkey(item.Hotkey); } } private void BtnEditCustomHotkey_OnClick(object sender, RoutedEventArgs e) { CustomPluginHotkey item = lvCustomHotkey.SelectedItem as CustomPluginHotkey; if (item != null) { CustomQueryHotkeySetting window = new CustomQueryHotkeySetting(this); window.UpdateItem(item); window.ShowDialog(); } else { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("pleaseSelectAnItem")); } } private void BtnAddCustomeHotkey_OnClick(object sender, RoutedEventArgs e) { new CustomQueryHotkeySetting(this).ShowDialog(); } public void ReloadCustomPluginHotkeyView() { lvCustomHotkey.Items.Refresh(); } #endregion #region Theme private void ThemeComboBox_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { string themeName = themeComboBox.SelectedItem.ToString(); ThemeManager.Theme.ChangeTheme(themeName); UserSettingStorage.Instance.Theme = themeName; UserSettingStorage.Instance.Save(); } private void CbQueryBoxFont_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { if (!settingsLoaded) return; string queryBoxFontName = cbQueryBoxFont.SelectedItem.ToString(); UserSettingStorage.Instance.QueryBoxFont = queryBoxFontName; this.cbQueryBoxFontFaces.SelectedItem = ((FontFamily)cbQueryBoxFont.SelectedItem).ChooseRegularFamilyTypeface(); UserSettingStorage.Instance.Save(); ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme); } private void CbQueryBoxFontFaces_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { if (!settingsLoaded) return; FamilyTypeface typeface = (FamilyTypeface)cbQueryBoxFontFaces.SelectedItem; if (typeface == null) { if (cbQueryBoxFontFaces.Items.Count > 0) cbQueryBoxFontFaces.SelectedIndex = 0; return; } else { UserSettingStorage.Instance.QueryBoxFontStretch = typeface.Stretch.ToString(); UserSettingStorage.Instance.QueryBoxFontWeight = typeface.Weight.ToString(); UserSettingStorage.Instance.QueryBoxFontStyle = typeface.Style.ToString(); UserSettingStorage.Instance.Save(); ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme); } } private void CbResultItemFont_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { if (!settingsLoaded) return; string resultItemFont = cbResultItemFont.SelectedItem.ToString(); UserSettingStorage.Instance.ResultItemFont = resultItemFont; this.cbResultItemFontFaces.SelectedItem = ((FontFamily)cbResultItemFont.SelectedItem).ChooseRegularFamilyTypeface(); UserSettingStorage.Instance.Save(); ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme); } private void CbResultItemFontFaces_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { if (!settingsLoaded) return; FamilyTypeface typeface = (FamilyTypeface)cbResultItemFontFaces.SelectedItem; if (typeface == null) { if (cbResultItemFontFaces.Items.Count > 0) cbResultItemFontFaces.SelectedIndex = 0; } else { UserSettingStorage.Instance.ResultItemFontStretch = typeface.Stretch.ToString(); UserSettingStorage.Instance.ResultItemFontWeight = typeface.Weight.ToString(); UserSettingStorage.Instance.ResultItemFontStyle = typeface.Style.ToString(); UserSettingStorage.Instance.Save(); ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme); } } private void slOpacity_ValueChanged(object sender, RoutedPropertyChangedEventArgs e) { UserSettingStorage.Instance.Opacity = slOpacity.Value; if (UserSettingStorage.Instance.OpacityMode == OpacityMode.LayeredWindow) PreviewMainPanel.Opacity = UserSettingStorage.Instance.Opacity; else PreviewMainPanel.Opacity = 1; ThemeManager.Theme.ChangeTheme(UserSettingStorage.Instance.Theme); Dispatcher.DelayInvoke("delaySaveUserSetting", o => { UserSettingStorage.Instance.Save(); }, TimeSpan.FromMilliseconds(1000)); } #endregion private void CbOpacityMode_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { UserSettingStorage.Instance.OpacityMode = (OpacityMode)CbOpacityMode.SelectedItem; UserSettingStorage.Instance.Save(); spOpacity.Visibility = UserSettingStorage.Instance.OpacityMode == OpacityMode.LayeredWindow ? Visibility.Visible : Visibility.Collapsed; if (UserSettingStorage.Instance.OpacityMode == OpacityMode.LayeredWindow) PreviewMainPanel.Opacity = UserSettingStorage.Instance.Opacity; else PreviewMainPanel.Opacity = 1; } private void lbPlugins_OnSelectionChanged(object sender, SelectionChangedEventArgs e) { ISettingProvider provider = null; var pair = lbPlugins.SelectedItem as PluginPair; string pluginId = string.Empty; if (pair != null) { //third-party plugin provider = pair.Plugin as ISettingProvider; pluginAuthor.Visibility = Visibility.Visible; pluginActionKeyword.Visibility = Visibility.Visible; pluginActionKeywordTitle.Visibility = Visibility.Visible; tbOpenPluginDirecoty.Visibility = Visibility.Visible; pluginTitle.Text = pair.Metadata.Name; pluginTitle.Cursor = Cursors.Hand; pluginActionKeyword.Text = pair.Metadata.ActionKeyword; pluginAuthor.Text = InternationalizationManager.Internationalization.GetTranslation("author") + ": " + pair.Metadata.Author; pluginSubTitle.Text = pair.Metadata.Description; pluginId = pair.Metadata.ID; pluginIcon.Source = ImageLoader.ImageLoader.Load(pair.Metadata.FullIcoPath); } else { //system plugin provider = lbPlugins.SelectedItem as ISettingProvider; } var customizedPluginConfig = UserSettingStorage.Instance.CustomizedPluginConfigs.FirstOrDefault(o => o.ID == pluginId); cbDisablePlugin.IsChecked = customizedPluginConfig != null && customizedPluginConfig.Disabled; PluginContentPanel.Content = null; if (provider != null) { Control control = null; if (!featureControls.TryGetValue(provider, out control)) featureControls.Add(provider, control = provider.CreateSettingPanel()); PluginContentPanel.Content = control; control.HorizontalAlignment = HorizontalAlignment.Stretch; control.VerticalAlignment = VerticalAlignment.Stretch; control.Width = Double.NaN; control.Height = Double.NaN; } } private void CbDisablePlugin_OnClick(object sender, RoutedEventArgs e) { CheckBox cbDisabled = e.Source as CheckBox; if (cbDisabled == null) return; var pair = lbPlugins.SelectedItem as PluginPair; var id = string.Empty; var name = string.Empty; if (pair != null) { //third-party plugin id = pair.Metadata.ID; name = pair.Metadata.Name; } var customizedPluginConfig = UserSettingStorage.Instance.CustomizedPluginConfigs.FirstOrDefault(o => o.ID == id); if (customizedPluginConfig == null) { UserSettingStorage.Instance.CustomizedPluginConfigs.Add(new CustomizedPluginConfig() { Disabled = cbDisabled.IsChecked ?? true, ID = id, Name = name, Actionword = string.Empty }); } else { customizedPluginConfig.Disabled = cbDisabled.IsChecked ?? true; } UserSettingStorage.Instance.Save(); } private void PluginActionKeyword_OnMouseUp(object sender, MouseButtonEventArgs e) { if (e.ChangedButton == MouseButton.Left) { var pair = lbPlugins.SelectedItem as PluginPair; if (pair != null) { //third-party plugin string id = pair.Metadata.ID; ActionKeyword changeKeywordWindow = new ActionKeyword(id); changeKeywordWindow.ShowDialog(); PluginPair plugin = PluginManager.GetPlugin(id); if (plugin != null) pluginActionKeyword.Text = plugin.Metadata.ActionKeyword; } } } private void PluginTitle_OnMouseUp(object sender, MouseButtonEventArgs e) { if (e.ChangedButton == MouseButton.Left) { var pair = lbPlugins.SelectedItem as PluginPair; if (pair != null) { //third-party plugin if (!string.IsNullOrEmpty(pair.Metadata.Website)) { try { Process.Start(pair.Metadata.Website); } catch { } } } } } private void tbOpenPluginDirecoty_MouseUp(object sender, MouseButtonEventArgs e) { if (e.ChangedButton == MouseButton.Left) { var pair = lbPlugins.SelectedItem as PluginPair; if (pair != null) { //third-party plugin if (!string.IsNullOrEmpty(pair.Metadata.Website)) { try { Process.Start(pair.Metadata.PluginDirectory); } catch { } } } } } private void tbMorePlugins_MouseUp(object sender, MouseButtonEventArgs e) { Process.Start("http://www.getwox.com/plugin"); } private void tbMoreThemes_MouseUp(object sender, MouseButtonEventArgs e) { Process.Start("http://www.getwox.com/theme"); } private void btnSaveProxy_Click(object sender, RoutedEventArgs e) { UserSettingStorage.Instance.ProxyEnabled = cbEnableProxy.IsChecked ?? false; int port = 80; if (UserSettingStorage.Instance.ProxyEnabled) { if (string.IsNullOrEmpty(tbProxyServer.Text)) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("serverCantBeEmpty")); return; } if (string.IsNullOrEmpty(tbProxyPort.Text)) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("portCantBeEmpty")); return; } if (!int.TryParse(tbProxyPort.Text, out port)) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("invalidPortFormat")); return; } } UserSettingStorage.Instance.ProxyServer = tbProxyServer.Text; UserSettingStorage.Instance.ProxyPort = port; UserSettingStorage.Instance.ProxyUserName = tbProxyUserName.Text; UserSettingStorage.Instance.ProxyPassword = tbProxyPassword.Password; UserSettingStorage.Instance.Save(); MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("saveProxySuccessfully")); } private void btnTestProxy_Click(object sender, RoutedEventArgs e) { if (string.IsNullOrEmpty(tbProxyServer.Text)) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("serverCantBeEmpty")); return; } if (string.IsNullOrEmpty(tbProxyPort.Text)) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("portCantBeEmpty")); return; } int port; if (!int.TryParse(tbProxyPort.Text, out port)) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("invalidPortFormat")); return; } HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.baidu.com"); request.Timeout = 1000 * 5; request.ReadWriteTimeout = 1000 * 5; if (string.IsNullOrEmpty(tbProxyUserName.Text)) { request.Proxy = new WebProxy(tbProxyServer.Text, port); } else { request.Proxy = new WebProxy(tbProxyServer.Text, port); request.Proxy.Credentials = new NetworkCredential(tbProxyUserName.Text, tbProxyPassword.Password); } try { HttpWebResponse response = (HttpWebResponse)request.GetResponse(); if (response.StatusCode == HttpStatusCode.OK) { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("proxyIsCorrect")); } else { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("proxyConnectFailed")); } } catch { MessageBox.Show(InternationalizationManager.Internationalization.GetTranslation("proxyConnectFailed")); } } private void tbWebsite_MouseUp(object sender, MouseButtonEventArgs e) { Process.Start("http://www.getwox.com"); } private void tbNewVersionAvailable_MouseUp(object sender, MouseButtonEventArgs e) { Release newRelease = new UpdateChecker().CheckUpgrade(); if (newRelease != null) { Process.Start("http://www.getwox.com/release/version/" + newRelease.version); } } } }