Tagged Questions
0
votes
0answers
24 views
Multiple users interacting in QtQuick2
Does anyone knows if it is possible to have two interactive Flickable items simultaneously?
In other words, I want two users interacting each with one ListView in a multi-touch screen.
It seems that ...
0
votes
1answer
390 views
Qt Multi-Touch with qTUIO and mtdev2tuio embedded linux
I have an embedded linux project where I want to use multi-touch with Qt.
I've been looking at qTUIO ( https://github.com/x29a/qTUIO ) and it looks great.
I cross-compiled the qTUIO library and ...
2
votes
1answer
409 views
Qt multiple mouse clicks at the same time
I have an application that has two buttons, and I want to detect when both buttons are pressed at the same time.
I have installed another mouse on my Ubuntu 10.04 computer and enabled the second ...
0
votes
1answer
422 views
QTouchEvent not triggering with Qt 4.7.4 under Windows 8?
I am having an issue with QT touch/multitouch support under Windows 8 running on an Acer W501 x86 tablet with a 4-point touch screen.
I have a QGraphicsView widget on which I've done
...
1
vote
0answers
324 views
Qt, QTouchEvents not send to QGraphicsItem
I manually create QTouchEvents and send them to a QGraphicsView's viewport(). While the QGraphicsScene does get the events, my QGraphicsItems (or ...Objects) don't. setAcceptTouchEvents is set to ...
0
votes
1answer
254 views
Custom QGestureRecognizer and QTouchEvents
I want to use a custom input device for multitouch input in a Qt application. I plan to create QTouchEvents based on my raw input data. I also want to generate custom gestures.
As far as I ...
0
votes
2answers
352 views
Qt multi-touch events not working with magic trackpad in Mac OS X
I just recently started working with Qt 4.7.4 64-bit in order to make some cross-platform multi-touch applications. However, I can’t get Qt's touch events working in Mac OS X.
When I build and run my ...
0
votes
2answers
219 views
Pinch Simulation without Multi touch device
I am working on a c++ project in windows OS where I need to simulate multitouch gesture like Pinch without multitouch device.Similar to Iphone where user can simulate pinch by holding option key.
I ...
2
votes
1answer
527 views
Qt C++ QTouchEvent & TouchPoint Confusion
Just trying to wrap my head around QTouchEvent. Any help/advice is appreciated.
Specifically I'm a bit confused when a touch event is fired (for e.g. TouchBegin); does this represent only one unique ...
1
vote
1answer
463 views
Where should I be catching touch events for painting on a QGraphicsScene?
I want to reimplement the Qt fingerpaint example using my QGraphicsScene rather than a QWidget. However I cannot find an example of this so am unsure if I should capture the events at the view and ...
0
votes
1answer
162 views
Why am I unable to perform a calculation for the position in a sceneEvent for a QGraphicsObject?
I have implemented QGraphicsObject with QTouchEvents and reimplemented the sceneEvent function.
bool LynxItem::sceneEvent(QEvent *event)
{
//qDebug() << "LynxItem::sceneEvent:" << ...
1
vote
1answer
1k views
Is it possible to develop Qt Multi-touch Applications to run on Windows, Linux, Mac?
If so, are there any platform specific code to be modified, or any other apparent issues observed?
1
vote
1answer
189 views
QApplication constructor (Qt) takes up to 10 seconds
I have finished my first Qt application, and noticed that the QApplication constructor in the main.cpp files take up to 10 seconds to execute. This results in an annoying startup delay where I can't ...
6
votes
2answers
705 views
Multitouch in Linux
I have two questions:
How to simulate touch event in linux.
How to work with multitouch on Qt in Linux.