KeyboardStyle QML Type
Provides a styling interface for the Virtual Keyboard. More...
Import Statement: | import QtQuick.VirtualKeyboard.Styles 2.15 |
Properties
- alternateKeysListBackground : Component
- alternateKeysListBottomMargin : real
- alternateKeysListDelegate : Component
- alternateKeysListHighlight : Component
- alternateKeysListItemHeight : real
- alternateKeysListItemWidth : real
- alternateKeysListLeftMargin : real
- alternateKeysListRightMargin : real
- alternateKeysListTopMargin : real
- backspaceKeyPanel : Component
- characterPreviewDelegate : Component
- characterPreviewMargin : real
- enterKeyPanel : Component
- fullScreenInputBackground : Component
- fullScreenInputColor : color
- fullScreenInputContainerBackground : Component
- fullScreenInputCursor : Component
- fullScreenInputFont : font
- fullScreenInputMargins : real
- fullScreenInputPadding : real
- fullScreenInputPasswordCharacter : string
- fullScreenInputSelectedTextColor : color
- fullScreenInputSelectionColor : color
- handwritingKeyPanel : Component
- hideKeyPanel : Component
- keyPanel : Component
- keyboardBackground : Component
- keyboardDesignHeight : real
- keyboardDesignWidth : real
- keyboardHeight : real
- keyboardRelativeBottomMargin : real
- keyboardRelativeLeftMargin : real
- keyboardRelativeRightMargin : real
- keyboardRelativeTopMargin : real
- languageKeyPanel : Component
- languageListAdd : Transition
- languageListBackground : Component
- languageListDelegate : Component
- languageListHighlight : Component
- languageListRemove : Transition
- languagePopupListEnabled : bool
- modeKeyPanel : Component
- navigationHighlight : Component
- popupListAdd : Transition
- popupListBackground : Component
- popupListDelegate : Component
- popupListHighlight : Component
- popupListRemove : Transition
- scaleHint : real
- selectionHandle : Component
- selectionListAdd : Transition
- selectionListBackground : Component
- selectionListDelegate : Component
- selectionListHeight : real
- selectionListHighlight : Component
- selectionListRemove : Transition
- shiftKeyPanel : Component
- spaceKeyPanel : Component
- symbolKeyPanel : Component
- traceCanvasDelegate : Component
- traceInputKeyPanelDelegate : Component
Detailed Description
The style type provides the style definitions that are used by the InputPanel to decorate the virtual keyboard.
The design size specifies the aspect ratio of the virtual keyboard. Styles are scalable according to scaleHint, which is calculated from the keyboard's actual height and design height.
Property Documentation
Template for the alternative keys list item.
Note: The delegate is used in a ListView.
Template for the alternative keys list highlight.
Note: The delegate is used as ListView.highlight
.
Template for the backspace key.
Note: The delegate must be based on the KeyPanel type.
Template for the character preview popup.
If the delegate contains the text
property, the property is updated with the display text when the component becomes active.
property string text
Example:
characterPreviewDelegate: Item { property string text id: characterPreview Rectangle { id: characterPreviewBackground anchors.fill: parent ... Text { text: characterPreview.text anchors.fill: parent ... } } }
Number of pixels between the top of each key and the bottom of the characterPreviewDelegate.
Template for the enter key.
Note: The delegate must be based on the KeyPanel type.
This property holds the delegate for the background of the full screen input.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the text color for the full screen input field.
The default color is black.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the delegate for the background of the full screen input container.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the delegate for the cursor in the full screen input field.
The delegate should toggle the visibility of the cursor according to the parent.blinkStatus
property defined for the full screen input field. For example:
fullScreenInputCursor: Rectangle { width: 1 color: "#000" visible: parent.blinkStatus }
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the font
for the full screen input field.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the margins around the full screen input field.
The default value is 0
.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the padding around the full screen input content.
The default value is 0
.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the password mask character for the full screen input field.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the selected text color for the full screen input field.
The default color is set to fullScreenInputColor
.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
This property holds the selection color for the full screen input field.
The default color is semi-transparent black.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.2.
Template for the handwriting mode key.
Note: The delegate must be based on the KeyPanel type.
Template for the hide key.
Note: The delegate must be based on the KeyPanel type.
Template for the regular keys.
Note: The delegate must be based on the KeyPanel type.
Example:
keyPanel: KeyPanel { Rectangle { anchors.fill: parent ... Text { anchors.fill: parent text: control.displayText ... } } }
Template for the keyboard background.
Example:
keyboardBackground: Rectangle {
color: "black"
}
The distance between the bottom-most keys and the bottom edge of the keyboard container, expressed as a percentage (0.0
- 1.0
) of the keyboard's height.
The distance between the left-most keys and the left edge of the keyboard, expressed as a percentage (0.0
- 1.0
) of the keyboard's width.
The distance between the right-most keys and the right edge of the keyboard, expressed as a percentage (0.0
- 1.0
) of the keyboard's width.
This value is proportional to the keyboard's width.
The distance between the top-most keys and the top edge of the keyboard, expressed as a percentage (0.0
- 1.0
) of the keyboard's height.
Template for the language key.
Note: The delegate must be based on the KeyPanel type.
This property holds the transition to apply to items that are added to the language list view.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the language list background.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the language list item.
Note: The delegate is used in a ListView.
Note: The delegate must be based on the SelectionListItem type.
The following properties are available to the item:
displayName
Display name of the language.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the language list highlight.
Note: The delegate is used as ListView.highlight
.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
This property holds the transition to apply to items that are removed from the language list view.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
This property determines whether a popup list will be shown when the language key is clicked. If this property is false
, clicking the language key cycles through the available languages one at a time.
The default value is false
.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the generic mode key.
This template provides a visualization of the key in which the state can be on or off. This template is used in situations where the key label will remain the same regardless of status.
The current state is available in the control.mode
property.
Note: The delegate must be based on the KeyPanel type.
Template for the navigation highlight item.
This item is used in arrow-key-navigation mode to highlight the navigation focus on the keyboard.
The item is typically a transparent rectangle with a high contrast border.
This property was introduced in QtQuick.VirtualKeyboard.Styles 1.1.
This property holds the transition to apply to items that are added to the popup list view.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the popup list background.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the popup list item.
Note: The delegate is used in a ListView.
Note: The delegate must be based on the SelectionListItem type.
The following properties are available to the item:
display
Display text for the current item.wordCompletionLength
Word completion length measured from the end of the display text.dictionary
Dictionary type of the word, see QVirtualKeyboardSelectionListModel::DictionaryType.canRemoveSuggestion
A boolean indicating if the word can be removed from dictionary.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the popup list highlight.
Note: The delegate is used as ListView.highlight
.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
This property holds the transition to apply to items that are removed from the popup list view.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
The keyboard style scale hint. This value is determined by dividing keyboardHeight by keyboardDesignHeight. All pixel dimensions must be proportional to this value.
This item is used to indicate where the bounds of the text selection is and to be able to interactively move the start or end of the selection. The same item is used for both start and end selection.
Selection handles are currently only supported for the application-based integration method.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
This property holds the transition to apply to items that are added to the selection list view.
This property was introduced in QtQuick.VirtualKeyboard.Styles 1.3.
Template for the selection list item.
Note: The delegate is used in a ListView.
Note: The delegate must be based on the SelectionListItem type.
The following properties are available to the item:
display
Display text for the current item.wordCompletionLength
Word completion length measured from the end of the display text.dictionary
Dictionary type of the word, see QVirtualKeyboardSelectionListModel::DictionaryType.canRemoveSuggestion
A boolean indicating if the word can be removed from dictionary.
Template for the selection list highlight.
Note: The delegate is used as ListView.highlight
.
This property holds the transition to apply to items that are removed from the selection list view.
This property was introduced in QtQuick.VirtualKeyboard.Styles 1.3.
Template for the shift key.
Note: The delegate must be based on the KeyPanel type.
Template for the space key.
Note: The delegate must be based on the KeyPanel type.
Template for the symbol mode key.
Note: The delegate must be based on the KeyPanel type.
Template for rendering a Trace object.
Note: The delegate must be based on the TraceCanvas type.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.
Template for the trace input key.
Note: The delegate must be based on the TraceInputKeyPanel type.
This property was introduced in QtQuick.VirtualKeyboard.Styles 2.1.