SDLKeypressMode Class Reference

Section Contents

Overview

Enumeration listing possible keyboard events. *

* Note: Depending on keypressMode value (from keyboardProperties structure of UI.SetGlobalProperties),
HMI must send the onKeyboardInput notification with the following data:
SINGLE_KEYPRESS,QUEUE_KEYPRESSES,RESEND_CURRENT_ENTRY. * @since SmartDeviceLink 3.0 *

+valueOf:

Undocumented

Objective-C

@interface SDLKeypressMode : SDLEnum

+values

Undocumented

Objective-C

@interface SDLKeypressMode : SDLEnum

+SINGLE_KEYPRESS

SINGLE_KEYPRESS:
Each and every User`s keypress must be reported (new notification for every newly entered single symbol). *

Objective-C

+ (SDLKeypressMode *)SINGLE_KEYPRESS;

Swift

class func single_KEYPRESS() -> SDLKeypressMode!

+QUEUE_KEYPRESSES

QUEUE_KEYPRESSES:
The whole entry is reported only after the User submits it (by ‘Search’ button click displayed on touchscreen keyboard) *

Objective-C

+ (SDLKeypressMode *)QUEUE_KEYPRESSES;

Swift

class func queue_KEYPRESSES() -> SDLKeypressMode!

+RESEND_CURRENT_ENTRY

RESEND_CURRENT_ENTRY:
The whole entry must be reported each and every time the User makes a new keypress
(new notification with all previously entered symbols and a newly entered one appended). *

Objective-C

+ (SDLKeypressMode *)RESEND_CURRENT_ENTRY;

Swift

class func resend_CURRENT_ENTRY() -> SDLKeypressMode!