summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed handlers list property in QDeclarativeGestureAreaHEADmasterDenis Dzyubenko2010-10-081-18/+23
| | | | | | | | | | | | It is supposed to be a list, but internally we were storing it in a map, which breaks if declarative engine tries to append an item and then expects to read it by taking the last item from the list. Also removed the setParent call, apparently declarative does that for us. Reviewed-by: Zeno Albisser
* tmpDenis Dzyubenko2010-09-241-1/+4
|
* Simplified compiling and deploying the pluginDenis Dzyubenko2010-09-241-2/+4
| | | | | | | | When compiling the project the plugin will be stored in the imports subdirectory containing the proper directory structure so that you can point qmlviewer to it. Reviewed-by: trustme
* Fixed gestures.pro project fileDenis Dzyubenko2010-09-241-2/+2
| | | | | | | | We don't need to set DESTDIR to the current directory. Doing this shows a make error because it tries to move the file from the current directory to the current directory. Reviewed-by: axis
* Make sure we don't consume events from the tap gesture recognizerThierry Bastian2010-09-231-1/+1
| | | | | | | That allows for the other graphics item to still get mouse press events Reviewed-By: Denis
* Make sure the debug version of the lib has a d suffix on windowsThierry Bastian2010-09-231-1/+1
|
* Removed dependency on private headers.Denis Dzyubenko2010-09-224-35/+41
| | | | Reviewed-by: Frederik Gladhorn
* Added a rule to compile properly on symbianDenis Dzyubenko2010-09-221-0/+1
| | | | Author: Mikko Harju
* use properties insteas of private data for various thingsZeno Albisser2010-09-131-14/+12
|
* avoid using private headers in QSwipeGestureRecognizerZeno Albisser2010-09-082-59/+83
| | | | Reviewed-by: Denis Dzyubenko
* avoid using private headers in QTapGestureRecognizer and ↵Zeno Albisser2010-09-082-36/+33
| | | | | | QTapAndHoldGestureRecognizer Reviewed-by: Denis Dzyubenko
* avoid using private headers in QPinchGestureRecognizerZeno Albisser2010-09-082-54/+58
| | | | Reviewed-by: Denis Dzyubenko
* avoid using private headers in QPanGestureRecognizerZeno Albisser2010-09-082-62/+90
| | | | Reviewed-by: Denis Dzyubenko
* initial import of GestureArea sources including RecognizersZeno Albisser2010-09-0810-0/+1955
These sources have been extracted from a previous repository of the QMLEnablers project. The purpose of these files is to provide GestureRecognizers loadable as a module in QML. Reviewed-by: Denis Dzyubenko