aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/dynamicqmetaobject.h
Commit message (Collapse)AuthorAgeFilesLines
* Set the object meta object at the declaration time, not instanciation time.Hugo Parente Lima2012-03-081-4/+1
|
* Remove function deleteDynamicQMetaObject, use ↵Hugo Parente Lima2010-11-181-2/+0
| | | | Shiboken::callCppDestructor<DynamicQMetaObject> instead.
* Don't inline function deleteDynamicQMetaObject.Hugo Parente Lima2010-10-071-4/+1
| | | | It's used by address, so inline it is useless.
* Add a d-pointer to DynamicMetaObject.Hugo Parente Lima2010-10-071-50/+4
| | | | This break the ABI.
* 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-1/+1
|
* Implemented support to properties on QMetaObject.Renato Filho2010-07-081-0/+21
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Used shared pointer on MethodData to allow copy.Renato Filho2010-05-171-2/+4
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Register Signal objects on MetaObject.Renato Filho2010-05-171-2/+3
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed memory leaks.Renato Filho2010-05-171-11/+11
| | | | | | | Used PyObject on attr functions. Code style update. 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-5/+20
| | | | | | | | 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/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Created test to static metaobject.Renato Filho2010-05-101-0/+5
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implement disconnect function for Python callback.renato2010-01-041-0/+4
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Implemented support for classname on metaobject.renato2009-12-301-1/+2
| | | | | | Export QMetaobject. Reviewer: Hugo Lima <hugo.lima@openbossa.org>
* Initial implementation of the new architeture for signal/slots.Hugo Lima2009-12-301-11/+3
| | | | Reviewed by Renato Araújo <renato.filho@openbossa.org>
* We have a nice Dynamic MetaObject! Yay!Hugo Lima2009-12-161-0/+72
Python signals and slots are like C++ signals and slots to Qt :-)