summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Renamed QPannableGesture to QPanningGesture.Denis Dzyubenko2009-05-113-11/+11
|
* More documentation fixes.Denis Dzyubenko2009-05-119-85/+149
|
* Extended the gesture documentation.Denis Dzyubenko2009-05-1115-201/+323
| | | | Also made some small fixes that noticed while was writing a doc.
* Added meta-object properties to QGesture object.Denis Dzyubenko2009-05-111-0/+9
|
* Gesture examples compile now.Denis Dzyubenko2009-05-116-92/+77
|
* De-inlined functions in gesture events.Denis Dzyubenko2009-05-114-40/+110
|
* Modifications after the api review by Brad.Denis Dzyubenko2009-05-1125-619/+501
| | | | | | | | | | | | Gesture types are now separated to internal ones, which are listed as enums (though they might be converted to strings internally), and third party gestures which are referenced by strings. From now on QGesture objects derive from QObject, which means third party gesture recognizer developers can use QObjects property system to store custom data inside QGesture without need to subclass it. Some functions were renamed to show their purpose more clear.
* Moved the code that translated QGestureEvent toDenis Dzyubenko2009-05-111-10/+13
| | | | | QGraphicsSceneGestureEvent to a viewport, so that the user could subscribe to gestures in a viewport as well.
* Added QGraphicsSceneGestureEvent that extends plain QGestureEvent byDenis Dzyubenko2009-05-1112-50/+236
| | | | | providing some additional info (like a widget that received a gesture - for coordinates conversions).
* Added animation to zooming gesture in collidingmice example.Denis Dzyubenko2009-05-112-4/+38
|
* Implemented LinjaZax-like gesture in collidingmice example.Denis Dzyubenko2009-05-116-4/+335
|
* Added colliding mice example with gesture support.Denis Dzyubenko2009-05-115-0/+405
|
* Forgot to export QGestureRecognizer class.Denis Dzyubenko2009-05-111-1/+1
|
* Fixes: Add missing functions for a adding custom gesture recognizers.Denis Dzyubenko2009-05-114-7/+33
|
* Fixes: Compilation fixesDenis Dzyubenko2009-05-112-0/+3
|
* If the event wasn't consumed by the gesture target widget, thenDenis Dzyubenko2009-05-111-3/+4
| | | | gesture manager should consume it as well.
* Fixes: improved gesture manager event filtering.Denis Dzyubenko2009-05-114-26/+42
| | | | | | Details: Several fixes - parsing only spontaneous mouse events and send gesture events to QGraphicsSceneItems according to their z-order
* Fixes: QGraphicsView respects the spontaneous event flag for graphicsscene ↵Denis Dzyubenko2009-05-113-4/+10
| | | | | | | events. Details: Copying the QEvent::spontaneous() flag from the received event to QGraphicsSceneEvent.
* Fixes: reset the internal gesture state when gesture in state 'maybe' is ↵Denis Dzyubenko2009-05-111-1/+1
| | | | finished.
* Added some documentation.Denis Dzyubenko2009-05-116-11/+144
| | | | Fixed missing const specifiers.
* Fixed lastDirection in the Pan gesture.Denis Dzyubenko2009-05-113-18/+33
|
* Merge of the maemo-gestures branch onto qt/4.5.0Denis Dzyubenko2009-05-1138-6/+3174
| | | | | This is a squashed merge of all of the changes in the maemo-gestures branch on-top of the qt/4.5.0 branch.
* Merge branch 'windows-7-multitouch'Bradley T. Hughes2009-05-110-0/+0
|\
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt into ↵Bradley T. Hughes2009-05-1117-65/+160
| |\ | | | | | | | | | windows-7-multitouch
* | \ Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtBradley T. Hughes2009-05-1117-65/+160
|\ \ \ | |/ / |/| / | |/
| * fix build on windowsMaurice Kalinowski2009-05-111-1/+1
| | | | | | | | | | | | - partly revert f0243e70e05a3368582fd0478d840096d6b60c3f as it broke the build due to widgets accessible plugins using QDockWidgetLayout Reviewed-by: Rhys Weatherley
| * removed more exports on private classes (QMouseEventEx and QKeyEventEx)Thierry Bastian2009-05-081-2/+2
| |
| * removing additional unused export to classes only used in QtGuiThierry Bastian2009-05-081-4/+4
| | | | | | | | Reviewed-by: ogoffart
| * Do not export inline private classes in qcssparser_p.hThierry Bastian2009-05-081-7/+7
| | | | | | | | Reviewed-by: ogoffart
| * QToolBarLayout and QDockWidgetLayout, which are private classes, areThierry Bastian2009-05-088-30/+42
| | | | | | | | | | | | | | | | | | | | no more exported designer was using QToolBarLayout members. We fixed that by using styles. Reviewed-by: Friedemann Kleint Reviewed-by: ogoffart
| * Stop a crash in QMenuBar on Designer after my changes.Norwegian Rock Cat2009-05-081-0/+2
| | | | | | | | | | | | In the past, we checked on the existence of the pointer, but now that this is controlled by the property, we need to also check the pointer in the action event.
| * Fixed unwanted merging of undo commands from different edit blocksmae2009-05-083-20/+47
| | | | | | | | | | | | | | | | | | With this patch, commands no longer merge across block bounderies. In order to have merging still work for the normal insertion and deletion case, the unnecessary beginEditBlock()/endEditBlock() calls where cleaned up. Reviewed-by: Simon Hausmann
| * Extend QTextDocument testmae2009-05-081-0/+18
| | | | | | | | This new test tests desired undo merging behaviour after insertions.
| * Fixed leak of plugin instancesJoão Abecasis2009-05-081-1/+18
| | | | | | | | | | | | | | | | | | | | It seems that plugins were never explicitly unloaded, resulting in leaks of the instance object. Added a static deleter to ensure deletion on exit. The QPointer (previously in place) ensures we don't do a double-free nor try to access an invalid pointer. Task-number: 253013 Reviewed-by: mariusSO
| * Fix leak of global dataJoão Abecasis2009-05-081-0/+9
| | | | | | | | | | | | | | Static variable was dynamically allocated but never freed. Task-number: 253013 Reviewed-by: Thiago
| * Improved scrolling performance with invisible blocksmae2009-05-081-2/+12
| | | | | | | | Reviewed-by: Thorbjørn
* | by default, ignore touch events if the widget is disabledBradley T. Hughes2009-05-081-0/+3
| |
* | build the multitouch examples from the top-level buildBradley T. Hughes2009-05-081-1/+2
| | | | | | | | just needed to add multitouch to SUBDIRS in examples/examples.pro
* | set qt_tabletChokeMouse to true whenever ANY touch event was acceptedBradley T. Hughes2009-05-081-3/+2
| | | | | | | | this makes sure we always get touch events, and the don't drop out seemingly randomly.
* | don't require TouchUpdate events for the single touch casesBradley T. Hughes2009-05-081-26/+26
| | | | | | | | | | | | the finger may not move, meaning no update with move event is generated, even if we say "press, hold, release" when testing (the finger may not wobble enough)
* | warn about events that happen out of sequenceBradley T. Hughes2009-05-081-0/+7
| |
* | don't store event state in QWidgetPrivateBradley T. Hughes2009-05-082-17/+20
| | | | | | | | | | the only thing we store in the QWidgetPrivate is the current touch point list, nothing more (the rest is local state in the event translation code)
* | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt into ↵Bradley T. Hughes2009-05-08141-1706/+4350
|\ \ | |/ | | | | windows-7-multitouch
| * Change optimization flags from Os to O2 for OS X applications.Morten Sørvig2009-05-082-6/+1
| | | | | | | | | | | | Qt itself was O2 from 4.2 and up, this changes it for applications as well. Reviewed-by: nrc
| * fix WinCE buildMaurice Kalinowski2009-05-081-0/+2
| | | | | | | | Reviewed-by: thartman
| * Merge branch '4.5'Thiago Macieira2009-05-0732-168/+471
| |\ | | | | | | | | | | | | | | | Conflicts: src/gui/painting/qbackingstore.cpp src/gui/painting/qwindowsurface_raster.cpp
| | * Fixed a problem that caused QPrintDialog to invalidate QPrinter.Trond Kjernåsen2009-05-071-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | When passing a printer that is set up to print to a PDF file into QPrintDialog, the print dialog could invalidate the printer and not update the validity of it in a proper manner. Task-number: 252873 Reviewed-by: Samuel
| | * Whitespace fixAnders Bakken2009-05-071-1/+1
| | | | | | | | | | | | Reviewed-by: TrustMe
| | * Compiler warnings (Mac/Carbon)Bjoern Erik Nilsen2009-05-079-15/+10
| | | | | | | | | | | | Reviewed-by: nrc
| | * Added types to the list.Morten Engvoldsen2009-05-071-0/+10
| | | | | | | | | | | | | | | | | | Added two missing types to the list. Task-number: 252274