Exemple #1
0
 public DebugListener(string parentIdent, string ident, ILifetimeObject owner, KeyCombinationList src, DebugListenerType debugtype)
 {
     ParentIdentifier = parentIdent;
     Identifier       = ident;
     keys             = src;
     Type             = debugtype;
     Owner            = owner;
 }
		public DebugListener(string ident, ILifetimeObject owner,  Keys actionkey, KeyboardModifiers mod, DebugListenerType debugtype)
		{
			Identifier = ident;
			key = actionkey;
			modifiers = mod;
			type = debugtype;
			Owner = owner;
		}
Exemple #3
0
 public DebugListener(string parentIdent, string ident, ILifetimeObject owner, SKeys actionkey, KeyModifier mod, DebugListenerType debugtype)
 {
     ParentIdentifier = parentIdent;
     Identifier       = ident;
     keys             = new KeyCombinationList(new KeyCombination(actionkey, mod));
     Type             = debugtype;
     Owner            = owner;
 }