IInputServiceObserver Interface Reference


Description

This interface contains methods to indicate keys pressed and released.

import "IInputServiceObserver.idl";

List of all members.

Public Member Functions

oneway void OnKeyDown (in IInputService::TInputKey key, in boolean repeated, in long modifiers)
oneway void OnKeyUp (in IInputService::TInputKey key, in long modifiers)

Member Function Documentation

oneway void IInputServiceObserver::OnKeyDown ( in IInputService::TInputKey  key,
in boolean  repeated,
in long  modifiers 
)

A key has been pressed.

Parameters:
key The key that was pressed.
repeated Flag indicating whether this is a repeated event.
modifiers A bitmask with modifiers.
oneway void IInputServiceObserver::OnKeyUp ( in IInputService::TInputKey  key,
in long  modifiers 
)

A key has been released.

Parameters:
key The key that was released.
modifiers A bitmask with modifiers.