/// <summary>
        ///     Add a Global Hotkey
        /// </summary>
        /// <param name="hotkey">Hotkey</param>
        /// <returns>True on success</returns>
        public bool Add(Hotkey hotkey)
        {
            var id = 0;

            // Add hotkey to settings
            try
            {
                Settings.Default.HotKeys.Add(hotkey);
                Logger.Instance.WriteGlobal("Register hotkey: {0} - {1}+{2}", hotkey.Name,
                                            hotkey.Modifier.ToString().Replace(", ", "+"), hotkey.Key);
                id            = _keyboardHook.RegisterHotKey(hotkey.Modifier, hotkey.Key);
                hotkey.HookId = id;

                foreach (var action in hotkey.Actions)
                {
                    Debug.WriteLine("Initialize Hotkey: {0} {1}", action.Name, action.Version);
                    ActionContainer.GetAction(action.Name, action.Version).OnInitialize(hotkey);
                }
            }
            catch (Exception ex)
            {
                Logger.Instance.WriteGlobal("Failed to register hotkey with message: " + ex.Message);
                DebugHelper.Exception(ex);
            }
            return(id >= 1);
        }
Пример #2
0
 public SelectAction(Hotkey hotkey)
 {
     InitializeComponent();
     _hotkey = hotkey;
     _actions = hotkey.Actions;
     _actionContainer = new ActionContainer();
 }
Пример #3
0
 public SelectAction(Hotkey hotkey)
 {
     InitializeComponent();
     _hotkey          = hotkey;
     _actions         = hotkey.Actions;
     _actionContainer = new ActionContainer();
 }
        private static void HookKeyPressed(object sender, KeyPressedEventArgs e)
        {
            Debug.WriteLine("Hotkey pressed: " + e.Modifier.ToString() + "+ " + e.Key.ToString());
            var hk = Settings.Default.HotKeys.FirstOrDefault(x => x.Modifier == e.Modifier && x.Key == e.Key);

            if (hk != null)
            {
                foreach (var action in hk.Actions)
                {
                    Debug.WriteLine("Calling Hotkey Onpress Event for: {0} {1}", action.Name, action.Version);
                    ActionContainer.GetAction(action.Name, action.Version).OnPressed();
                }
            }
        }
        /// <summary>
        ///     Remove a Global Hotkey
        /// </summary>
        /// <param name="id">Hotkey id</param>
        /// <returns></returns>
        public bool Remove(int id)
        {
            var hk = Settings.Default.HotKeys.FirstOrDefault(x => x.HookId == id);

            if (hk != null)
            {
                _keyboardHook.UnregisterHotkey(id);
                foreach (var action in hk.Actions)
                {
                    Debug.WriteLine("Dispose Hotkey: {0} {1}", action.Name, action.Version);
                    ActionContainer.GetAction(action.Name, action.Version).OnDispose();
                }
                return(Settings.Default.HotKeys.Remove(hk));
            }
            return(false);
        }
        private void button5_Click(object sender, EventArgs e)
        { // Open config window
            if (dataGridView1.CurrentRow == null || dataGridView1.CurrentRow.Index < 0)
            {
                return;
            }
            var selected = dataGridView1.CurrentRow;
            var action   = ActionContainer.GetAction((string)selected.Cells["Name"].Value, (Version)selected.Cells["Version"].Value);

            if (action != null)
            {
                if (action.ConfigWindow != null)
                {
                    action.ConfigWindow.ShowDialog(this);
                }
            }
        }
        public void Load()
        {
            if (Settings.Default.HotKeys.Count == 0)
            {
                return;
            }
            Logger.Instance.WriteGlobal("## Loading Hotkeys ##");
            foreach (var hk in Settings.Default.HotKeys)
            {
                Logger.Instance.WriteGlobal("Register hotkey: {0} - {1}+{2}", hk.Name, hk.Modifier.ToString().Replace(", ", "+"), hk.Key);
                hk.HookId = _keyboardHook.RegisterHotKey(hk.Modifier, hk.Key);

                foreach (var action in hk.Actions)
                {
                    Debug.WriteLine("Initialize Hotkey: {0} {1}", action.Name, action.Version);
                    ActionContainer.GetAction(action.Name, action.Version).OnInitialize(hk);
                }
            }
        }