In Qt4, I was able to implement a modal Keyboard Dialog by doing
ModalKeyboard::ModalKeyboard(QWidget *parent) :
QDialog(parent)
{
setModal(false);
keyboard = new QDeclarativeView(this);
keyboard->setSource(QUrl::fromLocalFile("qml/main.qml"));
keyboardObject = keyboard->rootOb
got it! use eventloop instead! sorry for clogging up the list!
On Fri, Sep 6, 2013 at 6:18 PM, Mitchell Verter
wrote:
> In Qt4, I was able to implement a modal Keyboard Dialog by doing
>
> ModalKeyboard::ModalKeyboard(QWidget *parent) :
> QDialog(parent)
> {
> setModal(false);
> ke