summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qphysicaldevicecreatedchange.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated classes and functionsPaul Lemire2020-02-111-82/+0
| | | | | | | Mostly old messaging API Change-Id: I17eb2206b2ede56d2f7d36375d5e711d6149019f Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
* Doc: Fix documentation warningsTopi Reinio2019-11-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | - Add (basic) documentation for Qt3DAnimation::QAnimationCallback. - Add missing namespace qualifiers for \class, \fn, \instantiates, \sa, and \property commands. - Remove linking to example file pages, as QDoc no longe treats them as linkable targets. - Fix function/QML method parameter documentation - Fix missing \qmlproperty types - Fix linking to QKeyEvent in QtGui. - Move Qt3DRender::Quick namespace documentation to where QDoc can see it. - Add enum documentation for Qt3DRender::QBlitFramebuffer::InterpolationMethod and Qt3DRender::QMesh::Status. - Other minor fixes This brings the current warning count to zero. Fixes: QTBUG-79822 Change-Id: I1154a7f9c34917a3f240e99da0e7a300be7d65a0 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
* Doc: Add missing dots (qt3d)Paul Wicking2018-06-191-1/+1
| | | | | | Task-number: QTBUG-68933 Change-Id: I4226b8b9d70548b6921948c5ea47520f40f5df98 Reviewed-by: Topi Reiniƶ <topi.reinio@qt.io>
* Doc: add doc to undocumented methods and properties qt3dNico Vertriest2018-02-061-1/+1
| | | | | | Change-Id: Ia498dd96a6d35997a3f493f26b376fb8fa146196 Reviewed-by: Svenn-Arne Dragly <svenn-arne.dragly@qt.io> Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
* Doc: add doc to undocumented methods/propertiesNico Vertriest2017-08-281-0/+3
| | | | | | Change-Id: I8967110b0237421299c2103f847a38e0526f9a6b Reviewed-by: Venugopal Shivashankar <Venugopal.Shivashankar@qt.io> Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
* Doc: add basic doc to undocumented classesNico Vertriest2017-06-091-0/+5
| | | | | Change-Id: Ib67712bd961a3e0b113ddd25feaa819695e792b9 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
* Coding convention fix for Src/inputRobert Brock2017-03-161-0/+2
| | | | | | | | Reordering the header includes to comply with Qt coding conventions Task-number: QTBUG-56185 Change-Id: I1d1b61c2fac42505f85a1c4421e1292259270568 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
* De-inline dtors of public polymorphic classesMarc Mutz2016-05-191-0/+5
| | | | | | | | | | | | | | By making the destructor (usually the first non-inline, non-pure, virtual function, and therefore the trigger for most compilers to emit the vtable and type_info structures for the class in that TU) out-of-line, vtables and, more importantly, type_info structures for the class are pinned to a single TU. This prevents false negative dynamic_cast and catch evaluation. It also allows to add code to them later, if necessary. Change-Id: I0da301cd788162abba6cdbbb21910090a22adb9a Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
* Remove QSceneChange::SenderTypeSean Harmer2016-05-101-2/+2
| | | | | | Task-number: QTBUG-51494 Change-Id: I2414bee3b9eb3bd1146fd356bb0552366e63a976 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
* Ensure that QNodeCreatedChange objects have subjectId set correctlySean Harmer2016-04-111-2/+1
| | | | | | | | | | | | This ensures that subclasses of QNodeCreatedChangeBase always pass in the QNode pointer that allows to correctly set the subjectId to be the id() of the QNode. With this change the materials-cpp example is now able to run using the new node creation mechanism. Change-Id: I0a5ce4f3e93b485adfdb7534c15493946cfa00c6 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
* Create proper pimpl type from QPhysicalDeviceCreatedChangeBaseSean Harmer2016-04-101-1/+2
| | | | | Change-Id: I5d430a3ec2d5e18219d5e16fd9819b0ffac1e650 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
* Add device created change type and templated subclassSean Harmer2016-03-311-0/+67
This is needed to easily allow custom changes for subclasses of QAbstractPhysicalDevice. The idea is that the backend node can get all the data it needs to initialize the base class device from the change event whilst subclassing to add a payload just like for the QNode subclasses. Change-Id: Idb1fd30de8bc1e1cc7aa2b186d3bcbe53afa36f5 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>