-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[solved] Add Remove new key Combos after onCombination is Called. #192
Comments
okay i checked the code. found a way to Push new KeyCombinations. here, how to use; public static CombinationData comboDictionary_Updater;
static Dictionary<Combination, Action> comboDictionary= new Dictionary<Combination, Action>();
form1_load()
{
comboDictionary.Add(Combination.FromString("Ctrl+4") , CookPotatoStew );
Hook.GlobalEvents().OnCombination_v2(keycombo_act_list );
//add Keys
comboDictionary.Add(Combination.FromString("Ctrl+5") , CookChicken );
comboDictionary.Add(Combination.FromString("Ctrl+6") , CookApplePie );
//UpdateKeys - call this after add remove Combo is done.
comboDictionary_Updater?.UpdateCombinations(comboDictionary);
}
void CookPotatoStew() { MessageBox.Show("Here is your PotatoStew .."); }
void CookChicken() { MessageBox.Show("Here is your Chicken .."); }
void CookApplePie() { MessageBox.Show("Here is your ApplePie.."); } Required Classes; public static class CombinationV2_Extensions
{
/// <summary>
/// same As OnCombination , But you can Add,Remove,Update your Key combination.
/// if dictionary is registered you can update keys in the dictionary, it will automatically. respect changes.
/// </summary>
public static CombinationData OnCombination_v2(this IKeyboardEvents source,
IEnumerable<KeyValuePair<Combination, Action>> map, Action reset = null)
{
var watchlists = map.GroupBy(k => k.Key.TriggerKey)
.ToDictionary(g => g.Key, g => g.ToArray());
//get reference to this. so i can update the Key_Combinations , while App is Running.
var OnCombinationData = new CombinationData();
{
watchlists = watchlists;
}
KeyEventHandler ehandler = (sender, e) =>
{
KeyValuePair<Combination, Action>[] element;
//var found = watchlists.TryGetValue(e.KeyCode.Normalize(), out element);
var found = OnCombinationData.watchlists.TryGetValue(e.KeyCode.Normalize(), out element);
if (!found)
{
reset?.Invoke();
return;
}
var state = KeyboardState.GetCurrent();
var action = reset;
var maxLength = 0;
foreach (var current in element)
{
var matches = current.Key.Chord.All(state.IsDown);
if (!matches) continue;
if (maxLength > current.Key.ChordLength) continue;
maxLength = current.Key.ChordLength;
action = current.Value;
}
action?.Invoke();
};
source.KeyDown += ehandler;
return OnCombinationData;
}
}
public class CombinationData
{
// private set - user Shoud not Thouch this property.
private Dictionary<Keys, KeyValuePair<Combination, Action>[]> _watchlists;
public IReadOnlyDictionary<Keys, KeyValuePair<Combination, Action>[]> watchlists => _watchlists;
/// <summary>
/// you keyCombos will be Updated To the new map. (key_action list)
/// </summary>
/// <param name="map"></param>
public void UpdateCombinations(IEnumerable<KeyValuePair<Combination, Action>> map)
{
_watchlists = map.GroupBy(k => k.Key.TriggerKey)
.ToDictionary(g => g.Key, g => g.ToArray());
}
} |
blackholeearth
changed the title
add remove new keys to onCombination.
add remove new keys Combox after onCombination is Called ?
Oct 21, 2024
blackholeearth
changed the title
add remove new keys Combox after onCombination is Called ?
add remove new keys Combox after onCombination is Called.
Oct 21, 2024
blackholeearth
changed the title
add remove new keys Combox after onCombination is Called.
Add Remove new key Combos after onCombination is Called.
Oct 21, 2024
blackholeearth
changed the title
Add Remove new key Combos after onCombination is Called.
Add Remove new key Combos after onCombination is Called. - solved
Oct 21, 2024
blackholeearth
changed the title
Add Remove new key Combos after onCombination is Called. - solved
Add Remove new key Combos after onCombination is Called. [solved]
Oct 21, 2024
blackholeearth
changed the title
Add Remove new key Combos after onCombination is Called. [solved]
[solved] Add Remove new key Combos after onCombination is Called.
Oct 21, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how can i add new combinations after calling OnCombination(mydictionary).
if i call onCombination. then whatever i add on dictionary donest have any effect. its ignored.
The text was updated successfully, but these errors were encountered: