java.lang.Object | |
↳ | com.datalogic.device.input.AdvancedKeyboard.Configuration |
Class that stores the configuration related some keyboard parameters.
It can be retrieved by using the getConfiguration
method and modified back using the
setConfiguration
method.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Gets the keyboard backlight brightness.
| |||||||||||
Gets the keyboard backlight timeout in milliseconds.
| |||||||||||
Gets the layout notification type.
| |||||||||||
Gets the keyboard multitap delay used to define after how much time
from the first multitap key press the associated character will be
submitted to the UI.
| |||||||||||
Checks if the keyboard backlight control is enabled.
| |||||||||||
Checks if the backlight notification is enabled.
| |||||||||||
Checks if the multitap notification is enabled.
| |||||||||||
Sets the keyboard backlight brightness.
| |||||||||||
Sets the parameter to enable or disable the keyboard backlight control.
| |||||||||||
Enables or disables the backlight notification.
| |||||||||||
Sets the keyboard backlight inactivity timeout.
| |||||||||||
Sets the layout notification type.
| |||||||||||
Sets the keyboard multitap delay used to define after how much time
from the first multitap key press the associated character will be
submitted to the UI.
| |||||||||||
Enables or disables the multitap notification.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Gets the keyboard backlight brightness. This is effective only when the backlight control is enabled.
Gets the keyboard backlight timeout in milliseconds. In case of inactivity, the keyboard backlight will turn off after this amount of time.
Gets the layout notification type.
Gets the keyboard multitap delay used to define after how much time from the first multitap key press the associated character will be submitted to the UI.
Checks if the keyboard backlight control is enabled.
Checks if the backlight notification is enabled. This notification is visible after the backlight up or down keys are pressed, showing the currently backlight brightness level and allowing the user to edit it directly through the touch scren. The notification automatically disappears after the backlight timeout has been reached.
Checks if the multitap notification is enabled. This notification is visible after a multitap key is pressed, showing the list of all multitap characters related to that key and the currently selected one. The notification automatically disappears after the multitap delay has been reached.
Sets the keyboard backlight brightness. This is effective only when the keyboard baclight control is enabled.
backlightBrightness | The backlight brightness (in the range 0-100). |
---|
Sets the parameter to enable or disable the keyboard backlight control.
backlightControlEnabled | True to enable the backlight control, false to disable it. |
---|
Enables or disables the backlight notification. This notification is visible after the backlight up or down keys are pressed, showing the currently backlight brightness level and allowing the user to edit it directly through the touch scren. The notification automatically disappears after the backlight timeout has been reached.
backlightNotificationEnabled | True to enable the backlight notification, false to disable it. |
---|
Sets the keyboard backlight inactivity timeout. In case of inactivity, the keyboard backlight will turn off after this amount of time.
backlightTimeout | The backlight timeout. |
---|
Sets the layout notification type.
layoutNotificationType | The layout notification type to set. |
---|
Sets the keyboard multitap delay used to define after how much time from the first multitap key press the associated character will be submitted to the UI.
multitapDelay | The keyboard multitap delay to set (in milliseconds). It must be more than 0. |
---|
Enables or disables the multitap notification. This notification is visible after a multitap key is pressed, showing the list of all multitap characters related to that key and the currently selected one. The notification automatically disappears after the multitap delay has been reached.
multitapNotificationEnabled | True to enable the multitap notification, false to disable it. |
---|