[Interest] Qt Quick Drag and Drop, internal and external.

2014-03-19 Thread manish sharma
Hi, I have an Item and i would like to do an internal drag for it as long as MouseArea::mouseX is with in window range and as soon as MouseArea::mouseX goes outside window i enable external drag. Till this part it works fine. By setting Drag.dragType:Drag.Internal and on MouseArea::onPositionChan

[Interest] Qt5 binary overlay for the BlackBerry 10.2 Gold NDK is available for download

2014-03-19 Thread Vladimir Minenko
Hi, just to let know those who are interested. The Qt5 (5.2.1) binary overlay for the BlackBerry 10.2 Gold NDK is available for download. See this http://qt-project.org/wiki/Qt5-on-BlackBerry10 wiki page for more details. The overlay makes Qt5 app development for BlackBerry 10 as comfortable a

Re: [Interest] Understanding attached signals

2014-03-19 Thread Sze Howe Koh
On 19 March 2014 19:40, Nicolás Ulrich wrote: > Have you tried something like this? > > Connections { > target: box.Drag > onDragStarted: console.log("Started (Connections)") > } Thanks. I tried your suggestion, but got these error messages: file:///.../main.qml:24:2: QML

Re: [Interest] Understanding attached signals

2014-03-19 Thread Nicolás Ulrich
On Wed, Mar 19, 2014 at 8:19 AM, Sze Howe Koh wrote: > Hi all, > > I was playing around with attached signals to learn how they tick. > Here are two test programs, each with 3 different ways of connecting > to a signal: > > //== > import QtQuick 2.2 > > Rectangle { > width: 360 >

[Interest] Understanding attached signals

2014-03-19 Thread Sze Howe Koh
Hi all, I was playing around with attached signals to learn how they tick. Here are two test programs, each with 3 different ways of connecting to a signal: //== import QtQuick 2.2 Rectangle { width: 360 height: 360 Text { text: "Click Me" anchors.centerIn: p