aboutsummaryrefslogtreecommitdiffstats
path: root/cppgenerator.cpp
Commit message (Expand)AuthorAgeFilesLines
* Retore thread state in the first line before the C++ call to avoid any otherHugo Parente Lima2010-09-081-32/+40
* Avoid call functions when an error occurs on argument conversion.Renato Filho2010-09-031-0/+2
* Fix bug#320 - "OR'ing Qt alignments doesn't work; adding them does"Hugo Parente Lima2010-09-031-50/+29
* Make the ownership transfer to CPP in native virtual functions.Renato Filho2010-09-021-1/+2
* Impleted auto code for classes derived from list container.Renato Filho2010-08-301-0/+64
* Release the python threads inside of injected code.Renato Filho2010-08-301-28/+31
* Fix the type resolver algorithm.Hugo Parente Lima2010-08-301-27/+26
* Generated original_name with "*" for object classes.Renato Filho2010-08-261-1/+4
* Accepts inject conde on virtual functions before call c++ code.Renato Filho2010-08-251-0/+9
* Fix bug#308 - "Confusing error for wrong argument types"Hugo Parente Lima2010-08-241-3/+10
* Included vector header on generated files.Renato Filho2010-08-231-0/+1
* Removed generation of #warning in cpp files move this message to generator re...Renato Filho2010-08-201-2/+1
* Avoid create arguments parser to function without default arguments.Renato Filho2010-08-201-20/+24
* Get ride of PyMODINIT_FUNC, since it doesn't correctly set the visibility rul...Hugo Parente Lima2010-08-191-6/+9
* Fixed module initialization export.Renato Filho2010-08-191-1/+1
* Include python headers befor use Python macros.Renato Filho2010-08-191-3/+4
* Fixed bug on named args parser.Renato Filho2010-08-171-1/+2
* Fix bug 294 - "If the function must return a QFlags<T> and you return T, an e...Hugo Parente Lima2010-08-171-2/+2
* Implement support to signal connection on constructor using named arguments.Renato Filho2010-08-161-9/+26
* Adds support for property setting in QObject derived constructors.Marcelo Lira2010-08-131-15/+51
* Register wrapper class on type resolver.Hugo Parente Lima2010-08-121-0/+4
* Use 0 as default value to Valuepointer.Renato Filho2010-08-101-1/+1
* C++ wrapper code is generated for functions whose visibility was modified to ...Marcelo Lira2010-08-041-2/+3
* 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