[Interest] QGraphicsItemGroup with QObject features.

2013-11-30 Thread Dmitrii Volosnykh
Hello, everyone, I'd like to have one similar to QGraphicsObject in order to make it animatable by its properties. First I tried to inherit my group from QGraphicsObject and QGraphicsItemGroup, but, as you might have guessed, both of those classes are inherited from QGraphicsItem. So, I've stuck w

[Interest] QtQuick Performance question

2013-11-30 Thread Damian Ivanov
Hi all, If I want to show the current time in QtQuick I would do it like that: text = Qt.formatDateTime(new Date(), "hh:mm:ss") Timer { id: clocklTimer interval: 500; running: true; repeat: true onTriggered: timeChanged() } but now let's say I want in multiple inst

[Interest] popup() method for window instead of menu

2013-11-30 Thread Damian Ivanov
Hi all, I did not find it but I thought I ask on this list if someone knows for it's existence. For a Menu { id: myMenu } I can call it like a contextMenu by calling it via myMenu.popup() and it will popup at current mouse position and if clicked outside of the myMenu it is automatically hidden ag