aboutsummaryrefslogtreecommitdiffstats
path: root/generator/cppgenerator.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Centralized the generation of global and class enums in one method.Marcelo Lira2012-03-081-20/+15
* Created a method to generate method wrapper variable initialization code.Marcelo Lira2012-03-081-70/+71
* All Python to C++ conversions were moved to CppGenerator::writePythonToCppTyp...Marcelo Lira2012-03-081-42/+48
* More readable code on CppGenerator::writeVirtualMethodNative() method.Marcelo Lira2012-03-081-16/+12
* Improved writeInvalidPyObjectCheck() method and updated generator to make use...Marcelo Lira2012-03-081-31/+34
* Improved readability of CppGenerator::writeCopyFunction() method.Marcelo Lira2012-03-081-32/+18
* Improved CppGenerator::writeCppSelfDefinition() method and its use.Marcelo Lira2012-03-081-51/+48
* Removed unused parameter from writeInvalidCppObjectCheck().Marcelo Lira2012-03-081-7/+7
* Added a function to initialize a new wrapper type and add it to a module or e...Marcelo Lira2012-03-081-72/+77
* Introduces new API to create and import Python modules.Marcelo Lira2012-03-081-12/+23
* Moved writeMinimalConstructorCallArguments() functionality to Generator Runner.Marcelo Lira2012-03-081-72/+3
* Moved the methods isObjectType() and isPointer() from ShibokenGenerator to Ge...Marcelo Lira2012-03-081-11/+11
* std::auto_ptr is safer than relying in an if clause at the end of the code bl...Marcelo Lira2012-03-081-6/+7
* Fix bug 941 - "Signals with QtCore.Qt types as arguments has invalid signatures"Hugo Parente Lima2012-03-081-81/+12
* Used SignalManager function to retrieve MetaObjectRenato Filho2012-03-081-1/+1
* Check if need to use placement new for types that inherits QObject due to QML...Hugo Parente Lima2012-03-081-5/+12
* More convenience functions added. More refactoring. Code more readable.Marcelo Lira2012-03-081-14/+10
* Added convenience functions to improve code readability.Marcelo Lira2012-03-081-10/+8
* Fixed typo in generated code.Marcelo Lira2012-03-081-4/+4
* Improved code readability in CppGenerator::writeVirtualMethodNative.Marcelo Lira2012-03-081-4/+4
* Replaced trailing space by a period in documentation comment.Marcelo Lira2012-03-081-1/+1
* Fix enum qMetaType register.Renato Filho2012-03-081-5/+6
* Make sure register QMetaObject before QObject.Renato Filho2012-03-081-2/+36
* Move meta object creation afeter type register.Renato Filho2012-03-081-5/+5
* Now the generated code stores the enum cpp name on the PyThon type.Renato Filho2012-03-081-6/+5
* Dealloc Python object before calling the C++ destructor.Hugo Parente Lima2012-03-081-6/+2
* Recognize more types on error messages pretty printing them.Hugo Parente Lima2012-03-081-0/+12
* Implemented support to qt_metacast function on qobjects.Renato Filho2012-03-081-0/+17
* Fix overload decisor on rich-compare function.Renato Filho2012-03-081-9/+4
* Fix bug 501 - "Shiboken generator doesn't use full qualified name (with :: pr...Hugo Parente Lima2012-03-081-47/+49
* Fix bug 862 - "Problems when printing objects"Hugo Parente Lima2012-03-081-1/+20
* Make use of Shiboken::warning on virtual function.Renato Filho2012-03-081-3/+3
* Updated generator to use removeReference function.Renato Filho2012-03-081-3/+8
* Fix error arg types in error messages.Hugo Parente Lima2012-03-081-1/+1
* Generate code using the new pyside class DestroyListener.Renato Filho2012-03-081-2/+8
* Removed unused variables/functions.Hugo Parente Lima2012-03-081-2/+0
* Whitespace removalHugo Parente Lima2012-03-081-1/+1
* Use right argument variable name on keep reference when inside constructors.Hugo Parente Lima2012-03-081-0/+1
* Implemented keep-reference action 'add'.Renato Filho2012-03-081-3/+6
* Just use else if's instead of a sequence of if's.Hugo Parente Lima2012-03-081-4/+2
* Improved garbage collector handling of Shiboken types.Marcelo Lira2012-03-081-5/+30
* Replaced "isUserType" test for the correct "hasCppWrapper" before method calls.Marcelo Lira2012-03-081-2/+2
* Don't set the tp_init when there are no public constructors available.Hugo Parente Lima2012-03-081-1/+5
* Small fix to number protocol code generation.Marcelo Lira2012-03-081-1/+1
* Only use qRegisterMetaType for Value types.Renato Filho2012-03-081-5/+8
* Fix bug 813 - "Can not override connect method when subclassing QObject"Hugo Parente Lima2012-03-081-4/+22
* Obey type replacements in rich comparison functions.Hugo Parente Lima2012-03-081-1/+13
* Make use of the available and already allocated space for protocol functionti...Marcelo Lira2012-03-081-133/+143
* Return false when a overload wasn't found on __eq__ and true when an overload...Hugo Parente Lima2012-03-081-3/+12
* Implemented generation code for mapping protocolRenato Filho2012-03-081-2/+82