aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/dynamicqmetaobject.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix project name on license boilerplates.Hugo Parente Lima2010-09-091-1/+1
|
* Change the license boiler plates of all LGPL files removing the special ↵Hugo Parente Lima2010-09-091-21/+9
| | | | exception.
* Fixed uninitialized value.Renato Filho2010-07-231-0/+4
|
* Implemented support to properties on QMetaObject.Renato Filho2010-07-081-27/+215
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed bug on dynamic metaobject creation.Renato Filho2010-05-261-2/+7
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Used shared pointer on MethodData to allow copy.Renato Filho2010-05-171-12/+29
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Register Signal objects on MetaObject.Renato Filho2010-05-171-13/+23
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed memory leaks.Renato Filho2010-05-171-7/+8
| | | | | | | Used PyObject on attr functions. Code style update. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented signal name discovery if not setted on constructor.Renato Filho2010-05-171-0/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented support to modify slot return type.Renato Filho2010-05-171-30/+78
| | | | | | | | Included method type in DynamicQMetaObject metadata. Moved Signal/Slot objet to libpyside. Create unittest to signal class. Implemented disconnection function. Fixed emit method on signal object
* Implemented support to slot decoration.Renato Filho2010-05-171-0/+24
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed memory leak on callbacks used on signal connection.Renato Filho2010-02-231-5/+30
| | | | | Now using the 'destroyed()' signal the reference is cleaned after source object destroyed.
* Fixed the number of dynamic signal to 50, to avoid index error onRenato Filho2010-02-181-6/+23
| | | | | | QMetaObject functions. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Implement disconnect function for Python callback.renato2010-01-041-0/+15
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Implemented support for classname on metaobject.renato2009-12-301-9/+13
| | | | | | Export QMetaobject. Reviewer: Hugo Lima <hugo.lima@openbossa.org>
* Initial implementation of the new architeture for signal/slots.Hugo Lima2009-12-301-32/+30
| | | | Reviewed by Renato Araújo <renato.filho@openbossa.org>
* We have a nice Dynamic MetaObject! Yay!Hugo Lima2009-12-161-0/+155
Python signals and slots are like C++ signals and slots to Qt :-)