aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* APIExtractor is a huge amount of legacy code inherited from QtScriptGenerator,Hugo Lima2009-11-1310-27/+49
| | | | | | | | | | | | | | | | | | but QtScriptGenerator itself isn't a library, this explains why libapiextractor does not care about things that every library SHOULD care, symbol visibility and binary compatibility. This commit adds symbol visibility rules to libapiextractor as the first step to make libapiextractor aware of binary compatibility. This is also needed if we want to be able to compile and use libapiextractor under Windows. Note: Not all symbols were made public, just the symbols needed by shiboken, boostpython and doc generators, because IMHO libapiextractor needs some love and a API review. More symbols could be added later if needed. Reviewed by Renato Araujo <renato.filho@openbossa.org>
* Documentation for container-type tag into typesystem.Luciano Wolf2009-11-091-1/+16
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* - All reverse operators are now properly tagged as "reverse operator".Hugo Lima2009-11-094-4/+108
| | | | | | | - Reverse operators aren't tagged as static methods anymore. - Reverse operators now have just one parameter, the one that matters. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Remove the stream argument when modifying <</>>Lauro Neto2009-11-091-3/+7
| | | | | | | | | The global operator function was being added to a class' method list but without modifying the argument list by removing the owner class. It was removed a long time ago when working on boostpythongenerator. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Use isStream instead of hardcoding QDataStreamLauro Neto2009-11-092-4/+13
| | | | Also added documentation
* Adding support to attribute stream in TypeEntryLauro Neto2009-11-092-1/+15
|
* Add m_stream attribute to AbstractMetaClassLauro Neto2009-11-092-1/+16
|
* The AbstractMetaBuilder::traverseFunction method for added functionsMarcelo Lira2009-11-091-0/+1
| | | | | | now decide the usage pattern for the AbstractMetaTypes of the arguments. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Propagate generate flag for child typesystems.renato araujo oliveira2009-11-061-2/+2
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Add "()" to the function signature of functions without parenteses.Hugo Lima2009-11-031-1/+3
| | | | | | | Without this the function without parenteses will be like an alien to all others APIExtractor functions. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Added convenience method AbstractMetaFunction::injectedCodeSnips.Hugo Lima2009-10-304-3/+47
| | | | It returns all code snips in a function.
* Added convenience method AbstractMetaClass::findFunction.Hugo Lima2009-10-302-4/+11
| | | | | This function returns the first AbstractMetaFunction found with a given name or a null pointer if no functions were found.
* Fix a crash when the function signature provided by add-function tag does notHugo Lima2009-10-293-11/+25
| | | | | | have parenteses. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Updated documentation of conversion-rule for argument-modification.Hugo Lima2009-10-292-1/+37
| | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* conversion-rule tag now works inside value-type and object-type tags.Marcelo Lira2009-10-265-15/+130
| | | | | To access the conversion rule, use the new method TypeEntry->conversionRule NOTE: this commit is a modification of code produced by Hugo Parente.
* Added documentation for tag conversion-rule.Hugo Lima2009-10-232-1/+27
|
* Added functions aren't marked as virtual anymore.Hugo Lima2009-10-222-0/+6
| | | | Reviewed by Renato Araujo <renato.filho@openbossa.org>
* Fixed the openbossa logo on the pysidedocs theme.Hugo Lima2009-10-212-0/+5
|
* Added documentation for the new class "AddedFunction"Marcelo Lira2009-10-211-0/+20
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Added support for add-function tag into typesystem.Hugo Lima2009-10-217-53/+166
|
* Implemented a signature parser for the AddedFunction class.Hugo Lima2009-10-215-18/+213
|
* improved AddedFunction struct with more informations;Marcelo Lira2009-10-212-5/+89
| | | | extended ComplexTypeEntry with a list of AddedFunctions
* added AddFunction struct to type system collection of objects;Marcelo Lira2009-10-212-0/+52
| | | | the purpose is to allow the creation of new function/method signatures
* Added an entry for AddFunction tag in the StackElement enumHugo Lima2009-10-211-19/+20
|
* Removed code that always add _d as debug postfix, debug postfix is usefull ↵Hugo Lima2009-10-211-4/+1
| | | | | | | | | | | | for some packagers but awful for other distros or simple raw builds, because debug libs will be generated with a difenrent name and all other projects are expecting the library name without the debug postfix, resulting in a linker error, because the library was not found. For all packagers that still want to set a debug postfix, just use the cmake flag: -DCMAKE_DEBUG_POSTFIX:STRING="my_debug_postfix"
* Avoid warning about an unused variable when not compiling as debug.Hugo Lima2009-10-211-0/+1
|
* Fixed minor CSS issues on pysidedocs sphinx themeHugo Lima2009-10-211-2/+19
|
* Removed latex sphinx config options.Hugo Lima2009-10-211-31/+0
|
* Added a new sphinx theme for APIExtractor documentation.Hugo Lima2009-10-1727-46/+1511
| | | | This theme should be used on all sphinx-based pyside documentation.
* - Typesystem documentation broken in smaller parts, so it's more redable now ↵Hugo Lima2009-10-178-794/+692
| | | | | | | (IMO). - Added cross referencing for nodes cited along the documentation. - Added documentation for the new and not implemented yet, add-function tag.
* Added doc/_build to the git ignore listHugo Lima2009-10-171-1/+1
|
* Add method AbstractMetaFunction::isCastOperator.Hugo Lima2009-10-162-0/+6
|
* Bump version to 0.3.2Lauro Neto2009-10-021-1/+1
|
* Update changelog before bumpLauro Neto2009-10-021-0/+77
|
* Handler::current renamed to Handler::m_currentHugo Lima2009-09-241-44/+44
| | | | With kdevelop4 it's so easy :-D
* Fix bug#38.Hugo Lima2009-09-242-5/+18
|
* Unit test to catch the bug#38.Hugo Lima2009-09-244-0/+116
|
* Created CMake flag LIB_DEBUG_POSTFIX for modify library name when using ↵Renato Araujo Oliveira Filho2009-09-231-4/+5
| | | | CMAKE_BUILD_TYPE=Debug.
* Fixed error when running generator whithout set correct global header.Renato Araujo Oliveira Filho2009-09-221-1/+1
| | | | Rev: Hugo Lima <hugo.lima@openbossa.org>
* Fixed bugs related to the strings returned by defaultValue and ↵Hugo Lima2009-09-182-20/+18
| | | | | | | | | originalDefaultValue. - If there are no typesystem modifications, originalDefaultValue will be equals to defautlvalue, so originalDefaultValue will not be the same string found by the C++ parser, it will be usefull only to check if there are some default values modifications.
* Reset the type database before runing each test.Hugo Lima2009-09-181-1/+1
|
* - Turn ctors of TypeDatabase private (It's a singleton!)Hugo Lima2009-09-182-4/+16
| | | | | - Makes possible to reset the TypeDatabase, this is usefull in unit tests when you need to make all unit tests independent of each other.
* Add tests for defaultValue and originalDefaultValue methods.Hugo Lima2009-09-182-0/+55
|
* Revert "Fix a bug related to function default values."Hugo Lima2009-09-184-56/+95
| | | | | | This fix bring to much regressions. This reverts commit 752c22056f4ba61961a01819992f9af71a3b0416.
* Added more tests for APIExtractor.Hugo Lima2009-09-152-0/+32
|
* Fix a bug related to function default values.Hugo Lima2009-09-154-95/+56
| | | | | | | | ApiExtractor tries to modify the defaultValue every time, so then return value of originalDefaultValue() if diferent from the return value of defaultValue() when they dont need to be. Unit test included.
* Add the option to set the directory where all log files will be created.Hugo Lima2009-09-114-5/+26
|
* Use specific Qt include headers for OS compatibility.Renato Araujo Oliveira Filho2009-09-101-1/+1
| | | | | | Fixes Bug #49. Reviewed by Luciano Miguel Wolf <luciano.wolf@openbossa.org>
* Avoid use of pkg_config for search for libraries.Renato Araujo Oliveira Filho2009-09-101-5/+4
| | | | | | Fixes Bug #39. Reviewed by Luciano Miguel Wolf <luciano.wolf@openbossa.org>
* Created ChangeLog file.Renato Araujo Oliveira Filho2009-09-101-0/+120
|