Image or animation transition between multiple desktops windows
-
Hi,
I am working on a windows desktop application where I need to show different views in three different monitors connected to same windows machine. I need to run animations or move images between the monitors. Like dragging a object from monitor 1 to monitor 2.
I want to know what are the possible options available in qt to achieve this? Can anyone help?
-
@darthana Sounds like you should start here: https://doc.qt.io/qt-6/dnd.html
-
@jsulm That was quick. Thanks. But not just drag and drop. I am looking to run animations like a object moving from one display to another. So I start moving a object from left end of monitor 1 to right and once it reached the right end of monitor 1 the object starts from left end of monitor 2. Like moving a object between two different qmls, when it moves out of first qml, it enters into second one.
-
@darthana There is also https://doc.qt.io/qt-6/animation-overview.html, but not sure you can use it to animate drag and drop.