aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/pyside.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Created Singal/Slot/Property namespace for pure C structures.renatofilho2010-11-031-6/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix bugs 430, 426, 429, 394, 433.Hugo Parente Lima2010-10-221-0/+26
| | | | | | | | These bugs are about QApplication instance being destroyed before some QObject. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Implemented support to notify argument on Properties.renatofilho2010-10-211-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Rename some slot internal functions and structures and remove C linkage from ↵Hugo Parente Lima2010-10-071-8/+7
| | | | init_slot function.
* Don't export symbols that don't need to be exported and rename many functions.Hugo Parente Lima2010-10-071-3/+3
|
* Don't export functions not used outsise libpyside and move them to an ↵Hugo Parente Lima2010-10-071-2/+2
| | | | private header.
* Changed name of qproperty functionsHugo Parente Lima2010-10-071-1/+1
|
* Fix bug#385 - "Windows build error (MSVC Express 2008)"Hugo Parente Lima2010-09-241-0/+1
|
* Renamed QProperty object to Property.renatofilho2010-09-201-3/+0
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Created PySide cleanup functions used to register functions to be called ↵renatofilho2010-09-171-1/+20
| | | | | | | before the python die. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#347 - "Setting properties in constructors gives incorrect results"Hugo Parente Lima2010-09-151-0/+41
| | | | | | | Added new function to libpyside: "fillQtProperties". Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* 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.
* Implemented support to properties on QMetaObject.Renato Filho2010-07-081-0/+3
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Removed QVariant from PySide.Hugo Parente Lima2010-06-101-0/+3
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Removed init[slot,signal] from public api.Renato Filho2010-05-171-2/+2
| | | | | | | 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>
* Implemented support to modify slot return type.Renato Filho2010-05-171-0/+51
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