aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/designercore/instances/changebindingscommand.h
Commit message (Collapse)AuthorAgeFilesLines
* QmlDesigner.NodeInstances: Support for Qt five scene graphMarco Bubke2011-06-091-64/+0
| | | | | | | | | | QmlPuppet only supported GraphicsView. There is now Qml2Puppet which is supporting the new Qt Scene Graph. Change-Id: Ia0a06639cf6852192e84f7bfc2bea60532890b08 Reviewed-on: http://codereview.qt.nokia.com/433 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com>
* Fix/add copyright headersTobias Hunger2011-05-061-1/+1
| | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
* Update license.hjk2011-04-131-14/+13
|
* QmlDesigner: Add Copyright notice to all source filesKai Koehne2011-02-221-0/+33
|
* Compile fix for pedantic C++ compilers.Roberto Raggi2010-12-161-1/+1
| | | | Get rid of all those ugly stray semicolons. They are not valid C++.
* QmlDesigner.Instances: Move instances out of processMarco Bubke2010-11-241-0/+32
The complete qml emulation layer (instances) is moved into another external process (qmlpuppet). Summary of architectural changes: - Asynchronous messaging Handling commands and data transfer asynchronously reduces the amount of context switches between processes. - Proxy classes for client process This classes abstract the inter process communication - QVariant based command parsing and serialization Using LocalSocket in bidirectional manner for communications of commands and data transfer. - Integer based identifier instead of ModelNode in client process The qml emulation layer (instances) has no more depencies to our internal data model. - Timer based rendering Rendering in instances is controlled by a timer. Only dirty items are updated.