summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
Commit message (Collapse)AuthorAgeFilesLines
* bug_674442 CREATE_FOLDERS should not create unused foldersalbert-github2021-06-121-0/+3
| | | | | | Also known as issue #4672 The folders are still created but in case the folders are empty after the doxygen run the directories are removed.
* Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-221-66/+66
| | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()'
* issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)Dimitri van Heesch2021-04-081-0/+4
|
* Issue #8206: Incorrect XHTML resultsDimitri van Heesch2020-11-271-2/+8
| | | | | | | | | | | | Changes: - Change TooltipManager back into a singleton - Give the OutputList object a unique output id - Increment the id at each startFile() atomically - Pass the id to the HTML code generator - Store tooltips per output id. - Keep track of tooltips that are already written for a given id - for output formats other than HTML the output id is 0 and tooltips are not collected and written
* Fix for broken LaTeX output.Dimitri van Heesch2020-09-271-2/+2
| | | | | | Fixes error: "\begin{DoxyCodeInclude} on input line 93 ended by \end{DoxyCode}" while generating the LaTeX version of the manual
* Refactoring: prepare output generators for multi-threaded useDimitri van Heesch2020-09-271-2/+2
|
* Refactoring: OutputList & OutputGenDimitri van Heesch2020-08-241-4/+11
| | | | | | | | | | | | | | - Initialized member variables inside the class - Added copy & assign operators for OutputGenerator and Derived classes. - throw a runtime exception when OutputGenerator is copied while is file is still in progress. - Added clone method to make a copy of OutputList. - Moved the implementation of enable() & disable() and friend into OutputGen instead of having the same implementation in each derived class. - Made m_dir and m_fileName readonly (members dir() and fileName()) - Removed call to new while adding generators to OutputList - Replaced QStack by std::stack for the "enabled" state.
* Refactor: modernize markdown and make it thread-safeDimitri van Heesch2020-06-161-2/+3
|
* Modernize OutputList internalsDimitri van Heesch2020-04-081-101/+82
|
* Compilation warningsalbert-github2020-02-221-1/+0
| | | | | | | | | | | | | | | Due to ``` Commit: 1a56a39b4a97452a5c7c2d8e9d39ab28ca33dff0 [1a56a39] Commit Date: Friday, February 21, 2020 9:07:13 PM Restructure section handling ``` a number of compilation warnings (Windows) appeared: ``` c:\projects\doxygen\src\section.h(51): warning C4099: 'SectionInfo': type name first seen using 'struct' now seen using 'class' [C:\projects\doxygen\build\src\_doxygen.vcxproj] c:\projects\doxygen\src\section.h(50): note: see declaration of 'SectionInfo' ```
* Restructure section handlingDimitri van Heesch2020-02-211-2/+2
|
* Reduce boilerplate code by using C++11 variadic templates and perfect forwardingDimitri van Heesch2019-08-111-62/+17
|
* Merge branch 'feature/bug_685714' of ↵Dimitri van Heesch2019-07-301-3/+2
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_685714
| * Bug 685714 - false positives reporting parameters or return value not being ↵albert-github2019-03-301-2/+2
| | | | | | | | | | | | | | documented - removed memory leak on variable root - return values of generateDoc and parseText are nowhere used, replaced bool function with void function.
* | refactoring dot.cppThomas Haller2019-06-131-12/+12
| |
* | Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-4/+4
|/
* Renamed (start/end)SimpleSect to (start/end)Examples.Dimitri van Heesch2018-08-261-5/+4
|
* Bug 693515 - The 'Examples:' section; bad/missing style and incorrect spellingalbert-github2018-06-291-2/+2
| | | | Made implementation analogous to the implementation for parameters in respect to padding and the use of colon (:).
* Better HTML output for VHDL Portsalbert-github2018-03-291-4/+6
| | | | Small alignment improvement of HTML output for VHDL Ports so that the mode will be in a separate column
* Added support for RTL(right to left) languages like Arabic and Persian in ↵ahoogol2017-06-251-0/+4
| | | | HTML output
* Cleanup: removed redundant =NULL from interfaces, or replaced by =0 where it ↵Dimitri van Heesch2016-11-281-1/+1
| | | | was needed.
* Bug 774138 - Please add HTML classes to "Definition at..." & "Referenced ↵albert-github2016-11-131-2/+2
| | | | | | | by..." for CSS Added class= to html output for "Definition at..." resulting in p.definition in the css file and for "Referenced by .. " and "References ..." resulting in p.definition in css file. (also corrected some error messages).
* Unified display of enum values across output formats and languagesDimitri van Heesch2016-08-311-4/+8
|
* Style fixes and added numbering to overloaded membersDimitri van Heesch2016-07-301-2/+4
|
* Bump copyright yearDimitri van Heesch2015-02-261-1/+1
|
* Updated copyrightDimitri van Heesch2014-02-111-1/+1
|
* Reduced and improved functionality of QListDimitri van Heesch2013-12-301-13/+13
| | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface.
* Added SOURCE_TOOLTIPS option for advanced tooltip support while source browsingDimitri van Heesch2013-07-021-4/+8
|
* Release-1.8.3.1-20130512Dimitri van Heesch2013-05-121-5/+7
|
* Release-1.8.3.1-20130402Dimitri van Heesch2013-04-021-0/+2
|
* Release-1.8.3.1-20130324Dimitri van Heesch2013-03-241-3/+0
|
* Release-1.8.3.1Dimitri van Heesch2013-01-201-1/+1
|
* Release-1.8.3Dimitri van Heesch2012-12-261-0/+6
|
* Release-1.8.2-20121118Dimitri van Heesch2012-11-181-1/+0
|
* Release-1.8.2-20120930Dimitri van Heesch2012-09-301-2/+2
|
* Release-1.8.1.2-20120729Dimitri van Heesch2012-07-291-2/+6
|
* Release-1.8.1.2Dimitri van Heesch2012-07-121-0/+3
|
* Release-1.8.1.1Dimitri van Heesch2012-06-101-3/+13
|
* Release-1.8.1Dimitri van Heesch2012-05-191-2/+2
|
* Release-1.8.0-20120429Dimitri van Heesch2012-04-291-8/+10
|
* Release-1.8.0-20120408Dimitri van Heesch2012-04-081-0/+7
|
* Release-1.7.6.1-20120220Dimitri van Heesch2012-02-201-1/+1
|
* Release-1.7.6.1-20111226Dimitri van Heesch2011-12-261-10/+11
|
* Release-1.7.5.1-20110925Dimitri van Heesch2011-09-251-0/+2
|
* Release-1.7.5Dimitri van Heesch2011-08-141-1/+1
|
* Release-1.7.4-20110727Dimitri van Heesch2011-07-271-4/+18
|
* Release-1.7.4-20110426Dimitri van Heesch2011-04-261-1/+1
|
* Release-1.7.4Dimitri van Heesch2011-03-281-6/+15
|
* Release-1.7.3-20110123Dimitri van Heesch2011-01-231-1/+1
|
* Release-1.7.2-20101224Dimitri van Heesch2010-12-241-0/+4
|