Méthode | Description | |
---|---|---|
KeyboardDriver ( ) : System | ||
RegisterCancellableKey ( int keyCode ) : void |
Register a keyCode. Once registered, the key will be swallowed and propagated through the KeyDown event.
|
|
Setup ( CK.Plugin.IPluginSetupInfo info ) : bool | ||
Start ( ) : void | ||
Stop ( ) : void | ||
Teardown ( ) : void | ||
UnregisterCancellableKey ( int keyCode ) : void |
Unregister a keyCode. The keyCode won't be be swallowed and propagated anymore. Note : doesn't handle a counter yet, which means that unregistering this keyCode will unregister it for any plugin using this service.
|
Méthode | Description | |
---|---|---|
FireEvent ( int vkCode, InputSource source ) : void | ||
OnHookInvoqued ( object sender, |
Method which provides an interpretation for all hook events. Depending of the hook's params we'll fire the good event.
|
public RegisterCancellableKey ( int keyCode ) : void | ||
keyCode | int | The keycode to register (ex : "a" is 65) |
Résultat | void |
public Setup ( CK.Plugin.IPluginSetupInfo info ) : bool | ||
info | CK.Plugin.IPluginSetupInfo | |
Résultat | bool |
public UnregisterCancellableKey ( int keyCode ) : void | ||
keyCode | int | The keycode to register (ex : "a" is 65) |
Résultat | void |