Is it possible to make Qt Quick application to continue input, while TextField
is in the non-modal Dialog
, which parented to some of children of an ApplicationWindow
and InputPanel
is a footer
of the window?
Currently on desktop (Ubuntu 16.04 w/ GNOME) Dialog
is QDialog
widget-based. And when I touch virtual keyboard the Dialog
lost focus and virtual keyboard became inactive because of enabled
property defined as follows:
footer: InputPanel {
enabled: Qt.inputMethod.visible
}
It is a circulus vituosus. Either I need a latest fallback from cite (the cite if for FileDialog
, but it may still be actual for Dialog
):
The implementation of FileDialog will be a platform file dialog if possible. If that isn't possible, then it will try to instantiate a QFileDialog. If that also isn't possible, then it will fall back to a QML implementation, DefaultFileDialog.qml. In that case you can customize the appearance by editing this file. DefaultFileDialog.qml contains a Rectangle to hold the dialog's contents, because certain embedded systems do not support multiple top-level windows. When the dialog becomes visible, it will automatically be wrapped in a Window if possible, or simply reparented on top of the main window if there can only be one window.
Or I need a way to touch virtual keyboard, but not lost focus from a Qt Quick Control.