aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/qslot.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Fixed signal/slot class name based on PSEP 100."Hugo Parente Lima2010-05-311-1/+1
| | | | | | | | This reverts commit 361ac438c2b9e3c6c10c9ab2207a6464557b8a85. Conflicts: libpyside/qsignal.cpp
* Fixed signal/slot class name based on PSEP 100.Renato Filho2010-05-201-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Append licence header.Renato Filho2010-05-191-0/+34
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Removed init[slot,signal] from public api.Renato Filho2010-05-171-1/+1
| | | | | | | Use PyObject_dir to discovery signals methods. (this is very slow) Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed memory leaks.Renato Filho2010-05-171-42/+52
| | | | | | | Used PyObject on attr functions. Code style update. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* removed TPFLAGS_BASETYPE from signal/slot classes to avoid derivationRenato Filho2010-05-171-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Updated signal/slot class names to follow the same style.Renato Filho2010-05-171-13/+13
| | | | | 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-0/+176
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