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
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
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