aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Updated Changelog.sb-0.3.3renato2009-12-171-1/+77
|
* Add constraint to avoid index out-of-range errorsBruno dos Santos de Araujo2009-12-161-2/+2
| | | | Reviewer: Lauro Neto <lauro.neto@openbossa.org>
* Improved Generator::replaceTemplateVariables method to avoid segfaults.Marcelo Lira2009-12-151-1/+2
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Merge commit 'mainline/master'renato araujo oliveira2009-11-246-17/+36
|\
| * Change the getGenerators signature, because on some platforms a function ↵Hugo Lima2009-11-243-6/+8
| | | | | | | | | | | | | | | | | | | | exported as a C function can't return a C++ type by value. All generators plugins *MUST* be recompiled. Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
| * Disable GENRUNNER_DEPRECATED macro when using msvc.Hugo Lima2009-11-231-1/+3
| |
| * FindGeneratorRunner.cmake now respect the find_package REQUIRED attribute.Hugo Lima2009-11-231-6/+12
| |
| * Install FindGenRunner.cmake and libgenrunner in the correct directory.Hugo Lima2009-11-231-2/+4
| |
| * Add proper compiler flags for msvc.Hugo Lima2009-11-211-1/+6
| |
| * Fix macros about dllexport/dllimport.Hugo Lima2009-11-211-2/+2
| |
| * Remove white spaces at end of each line when formating injected code.Hugo Lima2009-11-191-0/+2
| |
* | Bump to version 0.3.3.renato araujo oliveira2009-11-241-1/+1
| |
* | Updated Changelog.renato araujo oliveira2009-11-241-3/+159
|/
* Fix the formatCode function (again).Hugo Lima2009-11-191-2/+3
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fix the formatCode function.Hugo Lima2009-11-191-64/+18
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Delete all generators at exit.Hugo Lima2009-11-181-0/+1
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Creates the output directory if it doesn't exists.Hugo Lima2009-11-181-0/+6
|
* Remove two compilation warnings from qtdoc generator.Hugo Lima2009-11-181-5/+5
| | | | Reviewed by Renato Araujo <renato.filho@openbossa.org>
* - Prepare libgenerator.so for a near future when we will need to worry about ↵Hugo Lima2009-11-173-113/+137
| | | | | | | | | | | | | | | | | | | | | | | | BIC changes, Now it uses a d-pointer and do not export private methods/structures. - Mark some methods as deprecated, as they doesn't belong to Generator, being a huge cohesion failure IMO. - Fixed constness of some methods. Deprecated methods: AbstractMetaFunctionList filterFunctions(const AbstractMetaClass *cppClass); AbstractMetaFunctionList queryFunctions(const AbstractMetaClass *cpp_class, bool all_function = false); AbstractMetaFunctionList queryGlobalOperators(const AbstractMetaClass *cpp_class); AbstractMetaFunctionList sortConstructor(AbstractMetaFunctionList list); Moved method: verifyDirectoryFor is now a ordinary global function like formatCode, because it's a helper function not related with code generation. All these methods would be somewhere/somehow in APIExtractor, because they are basically helper methods to supply some APIExtractor missing functionalities. Note: Shiboken and BoostPython generator needs some minor fixes to adapt to changed caused by this patch.
* Remove duplicated documentation.Hugo Lima2009-11-171-2/+0
|
* Fixes bug91Hugo Lima2009-11-171-1/+1
| | | | Create only one symlink, libgenrunner.so, pointing to libgenrunner.so.x.y.z
* Add symbol visibility rules to generator runner.Hugo Lima2009-11-174-7/+52
|
* added Generator::implicitConversions(type) method that returns the constructorsMarcelo Lira2009-10-302-0/+28
| | | | | | for implicit conversions for the given type, which should be a value-type Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* fixed typo in Generator::sortConstructor method nameMarcelo Lira2009-10-302-3/+3
|
* Fix SOVERSION/VERSIONLauro Neto2009-10-271-1/+1
| | | | | SOVERSION -> MAJOR_VERSION VERSION -> full VERSION
* Add the missing qflags macro to Options qflag.Hugo Lima2009-10-261-0/+1
|
* applied patch from Didier Raboud, to fix mixed hyphens and minuses on manpage.Marcelo Lira2009-10-261-23/+23
|
* renamed generator architecture diagram file to a proper nameMarcelo Lira2009-10-261-0/+0
|
* updated generator architecture diagram for Generator RunnerMarcelo Lira2009-10-263-711/+654
|
* readded tests for qtdoc generator that were left behind when forkingMarcelo Lira2009-10-264-0/+338
| | | | from boostpythongenerator
* forked boostpythongenerator project to separate the generatorrunnerMarcelo Lira2009-10-2651-4225/+47
| | | | | so that it could be used independently; the qtdoc generator module remained part of generatorrunner
* Fixed the openbossa logo on the pysidedocs theme.Hugo Lima2009-10-212-0/+5
|
* Added pysidedocs theme to the generatorrunner documentation.Hugo Lima2009-10-2127-64/+1522
|
* Implemented support to conversion-rule tag.renato araujo2009-10-213-10/+38
| | | | Reviwed by: Marcelo Lira <marcelo.lira@openbossa.org>
* Created execption handle for virtual functions.renato araujo2009-10-201-1/+8
|
* Bump to 0.3.2Lauro Neto2009-10-051-1/+1
|
* Update changelog for 0.3.1Lauro Neto2009-10-021-0/+41
|
* reinterpert_cast replaced by a C-style cast, to avoid compiler errors on ↵Hugo Lima2009-10-021-1/+1
| | | | | | | | | | | some plataforms. Cast an object pointer to a function pointer is an undefinied behaviour in some exotic platforms, so some compiler raise a flag against it. However if we use a C-style cast the compiler ignores it. This problem is related to the QLibrary API returning a void* instead of a generic function pointer.
* Add manpages for generatorrunner, docgenerator and boostpythongenerator. ↵Bruno dos Santos de Araujo2009-09-254-0/+90
| | | | (Fixes: #29)
* Fixed generation of fields for non wrapped class.Renato Araujo Oliveira Filho2009-09-183-21/+40
| | | | Fixed copy constructor generation.
* Implemented support to return policy for Qt::HANDLE.Renato Araujo Oliveira Filho2009-09-141-0/+4
|
* Fixed missing include in docgenerator.Renato Araujo Oliveira Filho2009-09-142-1/+2
| | | | Fixes Bug #5
* Write logs in the outputdirectory instead of the current working directory.Hugo Lima2009-09-111-2/+2
|
* Created ChangeLog file.Renato Araujo Oliveira Filho2009-09-101-0/+253
|
* Fix typo: GENERATORRUNNER_PUGIN_DIR => GENERATORRUNNER_PLUGIN_DIRHugo Lima2009-09-082-2/+2
|
* Fix typoHugo Lima2009-09-081-1/+1
|
* Fix missing parenteses in FindGeneratorRunner.cmakeHugo Lima2009-09-081-1/+1
|
* Fixed bug#26.Hugo Lima2009-09-041-1/+2
| | | | Reviewed by Renato Araújo
* When the user passes an absolute path as the plugin name,Hugo Lima2009-09-041-1/+6
| | | | | | | | | | generator runner will load the desired file instead of doing a mess with the absolute path and the GENERATORRUNNER_PLUGIN_DIR variable. This is usefull to test generators plugins without installing them. Reviewed by Renato Araújo
* - Merged boostpythongeneratorversion.h.in and generator_plugin_dir.h.inHugo Lima2009-09-036-20/+17
| | | | | | | | | into generatorrunnerconfig.h - Added some variables to FindGeneratorRunner.cmake * GENERATORRUNNER_PLUGIN_DIR The dir where the generator plugins should be installed. * GENERATORRUNNER_VERSION The generatorrunner current version.