ShareX/ShareX/HotkeyManager.cs

179 lines
6.1 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2014-05-13 21:06:40 +12:00
Copyright (C) 2007-2014 ShareX Developers
2013-11-03 23:53:49 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using HelpersLib;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace ShareX
{
public class HotkeyManager
{
public List<HotkeySettings> Hotkeys { get; private set; }
2013-11-03 23:53:49 +13:00
public bool IgnoreHotkeys { get; set; }
public delegate void HotkeyTriggerEventHandler(HotkeySettings hotkeySetting);
public HotkeyTriggerEventHandler HotkeyTrigger;
private HotkeyForm hotkeyForm;
public HotkeyManager(HotkeyForm form, List<HotkeySettings> hotkeys)
{
hotkeyForm = form;
hotkeyForm.HotkeyPress += hotkeyForm_HotkeyPress;
2013-11-14 22:31:38 +13:00
hotkeyForm.FormClosed += (sender, e) => hotkeyForm.InvokeSafe(() => UnregisterAllHotkeys(false));
2013-11-03 23:53:49 +13:00
Hotkeys = hotkeys;
if (Hotkeys.Count == 0)
{
ResetHotkeys();
}
else
{
RegisterAllHotkeys();
}
ShowFailedHotkeys();
}
private void hotkeyForm_HotkeyPress(ushort id, Keys key, Modifiers modifier)
{
if (!IgnoreHotkeys)
{
HotkeySettings hotkeySetting = Hotkeys.Find(x => x.HotkeyInfo.ID == id);
if (hotkeySetting != null)
{
OnHotkeyTrigger(hotkeySetting);
}
}
}
protected void OnHotkeyTrigger(HotkeySettings hotkeySetting)
{
if (HotkeyTrigger != null)
{
HotkeyTrigger(hotkeySetting);
}
}
public void RegisterHotkey(HotkeySettings hotkeySetting)
{
UnregisterHotkey(hotkeySetting, false);
if (hotkeySetting.HotkeyInfo.Status != HotkeyStatus.Registered && hotkeySetting.HotkeyInfo.IsValidHotkey)
{
hotkeyForm.RegisterHotkey(hotkeySetting.HotkeyInfo);
if (hotkeySetting.HotkeyInfo.Status == HotkeyStatus.Registered)
{
DebugHelper.WriteLine("Hotkey registered: " + hotkeySetting);
}
else if (hotkeySetting.HotkeyInfo.Status == HotkeyStatus.Failed)
{
DebugHelper.WriteLine("Hotkey register failed: " + hotkeySetting);
}
}
if (!Hotkeys.Contains(hotkeySetting))
{
Hotkeys.Add(hotkeySetting);
}
}
public void RegisterAllHotkeys()
{
foreach (HotkeySettings hotkeySetting in Hotkeys.ToArray())
{
RegisterHotkey(hotkeySetting);
}
}
public void UnregisterHotkey(HotkeySettings hotkeySetting, bool removeFromList = true)
{
if (hotkeySetting.HotkeyInfo.Status == HotkeyStatus.Registered)
{
hotkeyForm.UnregisterHotkey(hotkeySetting.HotkeyInfo);
if (hotkeySetting.HotkeyInfo.Status == HotkeyStatus.NotConfigured)
{
DebugHelper.WriteLine("Hotkey unregistered: " + hotkeySetting);
}
else if (hotkeySetting.HotkeyInfo.Status == HotkeyStatus.Failed)
{
DebugHelper.WriteLine("Hotkey unregister failed: " + hotkeySetting);
}
}
if (removeFromList)
{
Hotkeys.Remove(hotkeySetting);
}
}
public void UnregisterAllHotkeys(bool removeFromList = true)
{
foreach (HotkeySettings hotkeySetting in Hotkeys.ToArray())
{
UnregisterHotkey(hotkeySetting, removeFromList);
}
}
public void ShowFailedHotkeys()
{
IEnumerable<HotkeySettings> failedHotkeysList = Hotkeys.Where(x => x.HotkeyInfo.Status == HotkeyStatus.Failed);
if (failedHotkeysList.Count() > 0)
{
string failedHotkeys = string.Join("\r\n", failedHotkeysList.Select(x => x.TaskSettings.ToString() + ": " + x.HotkeyInfo.ToString()).ToArray());
string text = string.Format("Unable to register hotkey{0}:\r\n\r\n{1}\r\n\r\nPlease select a different hotkey or quit the conflicting application and reopen ShareX.",
failedHotkeysList.Count() > 1 ? "s" : "", failedHotkeys);
MessageBox.Show(text, "ShareX - Hotkey registration failed", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
public void ResetHotkeys()
{
UnregisterAllHotkeys();
Hotkeys.AddRange(GetDefaultHotkeyList());
RegisterAllHotkeys();
}
private HotkeySettings[] GetDefaultHotkeyList()
{
return new HotkeySettings[]
{
new HotkeySettings(HotkeyType.PrintScreen, Keys.PrintScreen),
new HotkeySettings(HotkeyType.ActiveWindow, Keys.Alt | Keys.PrintScreen),
new HotkeySettings(HotkeyType.RectangleRegion, Keys.Control | Keys.PrintScreen),
new HotkeySettings(HotkeyType.ScreenRecorder, Keys.None)
2013-11-03 23:53:49 +13:00
};
}
}
}