aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken/basewrapper.cpp
Commit message (Expand)AuthorAgeFilesLines
* Shiboken::cppObjectIsInvalid(PyObject*) now returns false when the argument i...Marcelo Lira2010-06-151-1/+1
* Automatically register all primitive types on TypeResover.Hugo Parente Lima2010-06-101-3/+1
* API fixes.Renato Filho2010-05-181-121/+130
* Created userdata on Python type object.Renato Filho2010-05-101-1/+32
* Remove warnings about "deprecated conversion from string constant to 'char*'".Hugo Parente Lima2010-04-121-1/+1
* Added enum meta type, this will ease you to known if a PyObject is a Shiboken...Hugo Lima2010-04-051-0/+3
* Added flag is_user_type to identify types created by the user which inherits ...Hugo Lima2010-04-051-0/+1
* SbkBaseWrapper_Dealloc_PrivateDtor renamed to deallocWrapperWithPrivateDtor.Hugo Lima2010-03-301-1/+1
* SbkBaseWrapper_clearReferences not exported anymore.Hugo Lima2010-03-301-4/+4
* SbkBaseWrapper_keepReference renamed to keepReference.Hugo Lima2010-03-301-1/+1
* Add support for multiple inheritance involving more than one C++ object.Hugo Lima2010-03-301-18/+116
* Removed "Shibo" prefix from ShiboParent and ShiboChildrenList.Hugo Lima2010-03-301-5/+5
* Use PyTuple_GET_SIZE instead of PyTuple_GetSize.Hugo Lima2010-03-301-1/+1
* SbkBaseWrapper_New gets a non-const void pointer instead of a const one.Hugo Lima2010-03-301-1/+1
* Use a non-template function for Python object deallocation.Hugo Lima2010-03-301-0/+22
* On setParent, when the child is a sequence, do not always call setParent for ...Hugo Lima2010-03-301-2/+9
* Fix setParent function when the child is a sequence object.Hugo Lima2010-03-301-2/+3
* Move the checks to verify if an object is invalid to Shiboken::cppObjectIsInv...Hugo Lima2010-03-181-2/+5
* Merge branch 'master' into extensibleconversionsMarcelo Lira2010-03-041-18/+21
|\
| * Init tb_base of SbkBaseWrapperType_Type on struct declaration instead ofHugo Lima2010-03-031-3/+1
| * Use polymorphic-id-expression to discover the correct type of a C++ object.Hugo Lima2010-03-021-15/+20
* | Wrapper meta type can now point to converter extensions.Marcelo Lira2010-03-021-1/+5
|/
* Rename init_shiboken to InitShiboken, to follow our naming convention.Hugo Lima2010-02-261-7/+2
* Adds a 'new' function to the SbkBaseWrapperType meta type.Marcelo Lira2010-02-241-1/+21
* Write a verbose error messages when the function arguments don't match.Hugo Lima2010-02-181-0/+38
* Do not export Sbk*Type variables.Hugo Lima2010-02-121-0/+16
* Deallocator for classes with private destructor now calls reference clearing ...Marcelo Lira2010-02-121-0/+1
* Adds support for managing objects referred by a Python wrapper.Marcelo Lira2010-02-121-0/+24
* Removed some member initializations from SbkBaseWrapper_New.Marcelo Lira2010-02-121-4/+0
* Shiboken::setParent also accepts list of children.Renato Filho2010-02-051-1/+7
* Adding support for weakreferenceLauro Neto2010-02-031-1/+7
* Fixed possible error in reparent process;Renato Filho2010-02-031-0/+5
* Adds support for Duck Punching (aka Monkey Patching).Marcelo Lira2010-01-211-6/+28
* libshiboken initialises Python threads if available.Marcelo Lira2010-01-151-0/+4
* Added SbkDbg stream class, used to print debug messages.Hugo Lima2010-01-141-4/+0
* Implemented type discovery feature.Hugo Lima2010-01-141-3/+17
* Removed warninig: missing braces around initializer for 'PyTypeObject' from b...Hugo Lima2010-01-141-1/+5
* Fix object initialization.Hugo Lima2010-01-131-21/+14
* Changed SbkBaseWrapper_New signature to use "bool" instead of "unsigned int" ...Marcelo Lira2009-12-221-2/+2
* All wrapped classes now inherit from the SbkBaseWrapper of the metatype SbkBa...Marcelo Lira2009-12-141-17/+146
* Renamed ShiboTypeObject to SbkBaseWrapperType to clearify its relationship wi...Marcelo Lira2009-12-111-1/+1
* Renamed a lot of Shiboken things with "Py" prefix to use "Sbk" prefix.Marcelo Lira2009-12-081-11/+11
* Modified the BindingManager::getOverride method to use Python __mro__.Marcelo Lira2009-12-021-2/+0
* Shiboken::cppObjectIsInvalid now accepts None values as valid.Marcelo Lira2009-12-011-1/+1
* Wrapper invalidation method recursively updates children objects status.Marcelo Lira2009-11-301-4/+8
* Implemented primitives to solve the parent/children problem.Hugo Lima2009-11-271-24/+90
* Added the "containsCppWrapper" flag to the PyBaseWrapper.Marcelo Lira2009-11-261-1/+6
* Renamed Shiboken's function cppObjectIsValid to cppObjectIsInvalid.Marcelo Lira2009-11-261-0/+10
* Merged with multipleinheritance branchMarcelo Lira2009-11-251-6/+16
|\
| * In multiple inheritance cases the binding manager only assigns aMarcelo Lira2009-11-181-1/+2