mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 01:15:33 +00:00
32 lines
No EOL
961 B
TypeScript
32 lines
No EOL
961 B
TypeScript
namespace com.keyman {
|
|
export class AttachmentInfo {
|
|
/**
|
|
* Provides the core interface between the DOM and the actual keyboard.
|
|
*/
|
|
interface: dom.targets.OutputTarget;
|
|
|
|
/**
|
|
* Tracks the control's independent keyboard selection, when applicable.
|
|
*/
|
|
keyboard: string;
|
|
|
|
/**
|
|
* Tracks the language code corresponding to the `keyboard` field.
|
|
*/
|
|
languageCode: string;
|
|
|
|
/**
|
|
* Tracks if the control has an aliased control for touch functionality.
|
|
*
|
|
* Future note - could be changed to track the DOMEventHandler instance used by this control;
|
|
* this may be useful for an eventual hybrid touch/non-touch implementation.
|
|
*/
|
|
touchEnabled: boolean;
|
|
|
|
constructor(eleInterface: dom.targets.OutputTarget, kbd: string, touch?: boolean) {
|
|
this.interface = eleInterface;
|
|
this.keyboard = kbd;
|
|
this.touchEnabled = touch || false;
|
|
}
|
|
}
|
|
} |