aboutsummaryrefslogtreecommitdiffstats
path: root/cppgenerator.cpp
Commit message (Expand)AuthorAgeFilesLines
* Create a new copy from object when convert from PyObject to const ref.Renato Filho2010-07-271-1/+1
* Fix char* converterRenato Filho2010-07-271-5/+20
* Fix elasticnodes segfault.Luciano Wolf2010-07-231-1/+1
* Fix error message, avoiding segfaults when dealing with primitive types.Luciano Wolf2010-07-211-1/+4
* Enable support for NativePointer type (eg.: void *, QChar *, etc)Luciano Wolf2010-07-131-0/+1
* Fixed wrong overload decisor generated code.Marcelo Lira2010-07-131-11/+16
* Create referenceMap on demand.Renato Filho2010-07-091-5/+11
* Adapt to recent changed in ApiExtractor API.Hugo Parente Lima2010-07-091-11/+11
* Implemented support to properties.Renato Filho2010-07-081-18/+57
* Fixes bug#253 - "Segmentation Fault when clicked on ListWidget with TableModel"Hugo Parente Lima2010-07-061-1/+7
* Store class orignal name to future use.Renato Filho2010-07-051-1/+3
* Add support for static fields.Hugo Parente Lima2010-07-021-1/+21
* Do not write setters for const fields.Hugo Parente Lima2010-07-011-5/+7
* Fix bug#256 - "PySide does not support signals with containers."Hugo Parente Lima2010-06-291-0/+18
* Fix overload decisor written on constructors.Hugo Parente Lima2010-06-251-4/+4
* Generate cpp file with "using namespace ..." if class inside ofRenato Filho2010-06-251-1/+13
* Do not export init_CLASSNAME functions.Hugo Parente Lima2010-06-251-8/+5
* Don't use PyAPI_FUNC in cpp files.Catalin Iacob2010-06-231-1/+1
* Implementad generation of objects without namespace if namespace wasRenato Filho2010-06-231-2/+2
* Adds support for named arguments in function calls.Marcelo Lira2010-06-171-33/+177
* Fixes minor error in ternary expression.Marcelo Lira2010-06-171-2/+2
* Adds a method to tell if multiple Python arguments must be used in the code.Marcelo Lira2010-06-171-0/+8
* Added method fullPythonFunctionName(func) to ShibokenGenerator.Marcelo Lira2010-06-171-13/+2
* Fix bug#237 - "core dump when call wrong constructor inside of a class"Hugo Parente Lima2010-06-161-0/+7
* Overload decisor code modified to separate the decision and caller parts.Marcelo Lira2010-06-151-67/+193
* Automatically register all primitive types on TypeResover.Hugo Parente Lima2010-06-101-5/+13
* Added Converter<T>::checkType.Hugo Parente Lima2010-06-091-11/+17
* CppGenerator now considers user defined default constructors for primitive ty...Marcelo Lira2010-06-081-1/+5
* Avoid crashing CppGenerator if the module entry couldn't be retrieved.Marcelo Lira2010-06-031-1/+3
* Added support for protected fields when not using the "protected hack".Marcelo Lira2010-06-031-9/+27
* Fixes code generation for classes with private destructors.Marcelo Lira2010-06-021-1/+13
* Generator improved to handle protected enums without the protected hack.Marcelo Lira2010-06-021-17/+76
* Fixes generation of classes with protected virtual destructors.Marcelo Lira2010-05-311-1/+7
* Fixed use of constructor for code snip.Renato Filho2010-05-261-2/+2
* Fix segfault in function return modification.Renato Filho2010-05-241-2/+6
* Cosmetic changes.Hugo Parente Lima2010-05-211-38/+44
* Add a call to PySide::initQtMetaType for every type when the pyside extension...Hugo Parente Lima2010-05-201-1/+9
* Moved creation of MetaObject before injection code on constructor.Renato Filho2010-05-191-7/+9
* API fixes.Renato Filho2010-05-181-1/+2
* Export signals to the generated cpp files.Luciano Wolf2010-05-171-2/+44
* generate code necessary to register signal and slot.Renato Filho2010-05-171-1/+11
* Replaced current generated code to DynamicQMetaObject to new way, toRenato Filho2010-05-131-3/+1
* Created userdata on Python type object.Renato Filho2010-05-101-7/+19
* Register values types as object types too.Renato Filho2010-05-071-4/+6
* Known what flag to use on PyBuildValue when a container is used.Hugo Parente Lima2010-04-291-0/+1
* Use qualified C++ names on multiple inheritance helper functions.Hugo Parente Lima2010-04-291-7/+8
* Merge remote branch 'luck/fixprivctor'Luciano Wolf2010-04-231-4/+8
|\
| * Support to "only private constructor available" case.Luciano Wolf2010-04-211-4/+8
* | Fix problem when 2 globals functions with the same name were declared in diff...Hugo Parente Lima2010-04-231-4/+4
* | Do not delegate inner class initialization to the enclosed classes.Hugo Parente Lima2010-04-221-31/+10