[Interest] Modal Dialog with QQuickView in Qt5

2013-09-06 Thread Mitchell Verter
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

Re: [Interest] Modal Dialog with QQuickView in Qt5

2013-09-06 Thread Mitchell Verter
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