~thomas-moenicke/phablet-extras/maliit-plugins-url-layout

« back to all changes in this revision

Viewing changes to maliit-keyboard/qml/maliit-ui-constants.qml

when typing, word suggestions now show up on top of keyboard:
- making WordRibbon a ListModel that can be accessed from QML
- adding ListView and delegate to QML to show WordRibbon candidates
- connecting delegates to event handler
- enable presage and preedit in build system.

Approved by PS Jenkins bot, Bill Filler, Thomas Moenicke.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
     property real tablet_keyboard_height_portrait:  0.28;
59
59
     property real tablet_keyboard_height_landscape: 0.38;
 
60
 
 
61
     property int landscape_wordribbon_height:              units.gu( 4.0 );
 
62
     property int portrait_wordribbon_height:               units.gu( 4.0 );
60
63
}
 
64