summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3
Commit message (Collapse)AuthorAgeFilesLines
* qdoc: Changed handling of reimplemented functions.Martin Smith2009-06-268-43/+245
| | | | | | | | | | There are now sections for "Reimplemented Public Functions" and "Reimplemented Protected Functions" in the summaries for each class. This isn't complete yet. It introduces a lot of qdoc warnings about undocumented parameters, but I will fix those. There is more to be done here but i want to get some feedback already. Task-number: 162182, 222650
* Integrate the OpenVG graphics system into Qt 4.6Rhys Weatherley2009-06-221-0/+2
| | | | | This change also moves the EGL support classes from QtOpenGL to QtGui so they can be shared between OpenGL and OpenVG.
* qdoc: Fixed XHTML breakage again.David Boddie2009-06-221-2/+2
| | | | Reviewed-by: Trust me
* Merge branch '4.5' of scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-06-192-2/+0
|\
| * Docs: remove reference to nonexistent fileJoerg Bornemann2009-06-192-2/+0
| | | | | | | | Reviewed-by: David Boddie
* | qdoc: Fixed crash when a compact list section was empty.Martin Smith2009-06-181-24/+27
| |
* | Merge license header changes from 4.5Volker Hilsheimer2009-06-1689-178/+178
|\ \ | |/
| * Update license headers as requested by the marketing department.Jason McDonald2009-06-1689-178/+178
| | | | | | | | Reviewed-by: Trust Me
* | Merge commit 'origin/4.5'Bjørn Erik Nilsen2009-06-121-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | Conflicts: demos/boxes/glshaders.cpp src/gui/graphicsview/qgraphicsitem.cpp tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp tools/linguist/shared/cpp.cpp translations/linguist_ja.qm translations/qt_ru.qm
| * Bump qt-eclipse version number in docsJarek Kobus2009-06-091-1/+1
| |
* | doc: Fixed several qdoc warnings.Martin Smith2009-06-112-2/+4
| |
* | Reduce left-margins in qdocJens Bache-Wiig2009-06-101-6/+3
| | | | | | | | | | | | The current implementation is a bit hackish and does not work for all cases. It is better to remove it for now until we have a proper way of supporting it.
* | Some adjustments to the documentationJens Bache-Wiig2009-06-101-32/+39
| | | | | | | | | | Headers are slightly lighter now. Not all tables are affected by the changes any more.
* | qdoc: Added new class names for different tables.Martin Smith2009-06-101-20/+33
| | | | | | | | | | | | | | | | class="valuelist" is for the table used for enum types. class="alignedsummary" is for summary sections aligned on the name. class="propsummary" is for the property summary section. class="toc" is used for tables of contents. class="generic" is used for all other tables. We might need to break this down more.
* | qdoc: The gray version.Martin Smith2009-06-092-8/+43
| |
* | qdoc: Inserted <hr> between summary sections.Martin Smith2009-06-092-2/+3
| | | | | | | | | | Also added the left and right borders to the function headers in the detail sections.
* | qdoc: Changed to mountain fresh blue.Martin Smith2009-06-081-3/+2
| | | | | | | | | | I didn't test this, because I can't build qdoc3 due to changes in QStringBuilder.
* | Compile with gcc 4.0.xRoberto Raggi2009-06-081-2/+2
| |
* | qdoc: Updated the code to create references to documents and files.David Boddie2009-06-081-32/+48
| | | | | | | | | | Task-number: 251995 Reviewed-by: Martin Smith
* | Use QT_USE_FAST_OPERATOR_PLUS and QT_USE_FAST_CONCATENATION in qdoc3.hjk2009-06-081-0/+2
| | | | | | | | | | Reduces the number of qmalloc calls by 9% and reduces the instruction count as reported by valgrind by 2% in a release build.
* | qdoc: Changed to use h2 for section headers instead of h3.Martin Smith2009-06-051-14/+29
| |
* | qdoc: Put <b>...</b> around names in each summary section.Martin Smith2009-06-051-10/+15
| |
* | qdoc3: define QT_NO_CAST_TO_ASCII for safety, no code changes needed.hjk2009-06-041-1/+1
| |
* | qdoc: Put <b>...</b> around accessor names.Martin Smith2009-06-042-15/+31
| |
* | qdoc: Reset the memItemLeft width property to 200.Martin Smith2009-06-042-2/+2
| |
* | qdoc: Fixed some spacing problems.Martin Smith2009-06-032-13/+20
| |
* | qdoc: Fixed constructor position in summary lists.Martin Smith2009-06-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | The constructors had been displayed in the left column of the table in the summary list, because there was no type. It was caused by a strange test of the match index for 0, which was true for constructors and destructors, anything without a type. I removed that test, since I couldn't figure out what it was for. We might see problems elsewhere in the docs because of this, so beware. I didn't see any, but that test must have been there for some reason.
* | qdoc: Changed the css to make more people happy.Martin Smith2009-06-022-11/+11
| | | | | | | | | | | | | | No more fonts less than 100%. Toned down the green lines separating table rows, now gray (or we can try a softer green). Made the table widt 100%. More coming. the constructors still aren't aligned properly.
* | Added the -showinternal flag to qdoc.Martin Smith2009-05-294-12/+26
| | | | | | | | | | | | | | | | | | | | | | When you set -showinternal on the command line, qdoc will include everything marked \internal in the documentation. This flag is not very useful at the moment for two reasons: (1) It generates hundreds of qdoc errors because most of the things marked with \internal don't have any documentation anyway, or the documentation has other errors in it that weren't being detected because of the \internal. (2) There is a bus error toward the end, which I haven't tracked down yet. For now, use -showinternal at your own risk.
* | Removed dead code ifdefed with QDOC2DOXMartin Smith2009-05-285-2240/+2
| | | | | | | | | | | | These changes were added to qdoc in the days when we thought we might switch to doxygen. Now we have taken the approach of making qdoc output be more doxygen-like, so this ifdefed code is now dead.
* | improved string operations all over the placeThierry Bastian2009-05-281-1/+1
| | | | | | | | | | used character operations whenever possible better usage of QLatin1String
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-05-273-8/+8
|\ \ | |/ | | | | | | Conflicts: tests/auto/qtreeview/tst_qtreeview.cpp
| * Correcting bugs in classic.cssMorten Engvoldsen2009-05-261-4/+4
| | | | | | | | | | | | Correcting invalid padding values. none is not a valid padding value. Rev-by: David Boddie
| * Changed qdoc to simplify the output for overloaded functions.Martin Smith2009-05-251-3/+1
| | | | | | | | Task-number: 249222
| * Changed qdoc program to display version from QT_VERSION_STR.Martin Smith2009-05-251-1/+3
| | | | | | | | Task-number: 251486
| * Revert "Makes the layout of many of the areas be in aligned columns to ↵Simon Hausmann2009-05-191-8/+21
| | | | | | | | | | | | | | | | immensely increase readability" This was pushed accidentially. This reverts commit ffecdf0bf9f25f7ab9aa4f69e37507dd595fecea.
| * Makes the layout of many of the areas be in aligned columns to immensely ↵Thomas Zander2009-05-141-21/+8
| | | | | | | | | | | | | | | | | | increase readability Unfortunately the patch causes quite some regressions and I think some refectoring of this class would be needed. I didn't do that since there is no API docs, the variable naming is not very clarifying and the code is hard to read due to it not using the coding style and mixing tabs as well as spaces.
* | A few html code generator fixes.Martin Smith2009-05-271-9/+7
| | | | | | | | | | | | | | | | There was an empty <div> element with a name that came after it. I moved the name inside the <div> element. And there were some <b> elements that began inside one element and ended inside the next element. I just removed them, because they didn't really add anything. And I made the "Access functions:" bold.
* | qdoc: Fixed non-well-formed XML.David Boddie2009-05-252-1/+2
| | | | | | | | Reviewed-by: Martin Smith
* | Doc - removing the constraint on font size.Kavindra Devi Palaraja2009-05-221-3/+0
| | | | | | | | Reviewed-By: David Boddie
* | Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtDavid Boddie2009-05-203-298/+680
|\ \ | | | | | | | | | | | | Conflicts: doc/src/stylesheet.qdoc
| * | Inject some more Qt colors into the css to make it look a bit more QtSoftwareThomas Zander2009-05-201-22/+12
| | | | | | | | | | | | Reviewed-By: Kavindra Palaraja
| * | Doc - changing the stylesheet to use a greeny color.Kavindra Devi Palaraja2009-05-191-2/+2
| | | | | | | | | | | | Reviewed-By: David Boddie
| * | Modernize the output of qdoc a bit.Thomas Zander2009-05-191-2/+62
| | | | | | | | | | | | | | | | | | Now we have explicit columns we cann make our docs look a bit better using some simple css additions. This adds light backgrounds in targetted places to make the text more readable.
| * | qdoc: Added back the list count that was lost in translation.Martin Smith2009-05-181-1/+2
| | |
| * | qdoc: Added name alignment for summaries.Martin Smith2009-05-152-286/+617
| | |
* | | qdoc: Ensure that all inner class methods are included in the functionDavid Boddie2009-05-191-1/+1
|/ / | | | | | | | | | | | | | | | | | | | | | | index. Since the original code only used the parent class name as a key in the map that collects functions, you would only ever see either QHash::iterator::key() or QMap::iterator::key() in the index. This patch changes the key to the fully-qualified name for the parent class so that inner class methods are included. Reviewed-by: Martin Smith <msmith@trolltech.com>
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-04-2811-11/+11
|\ \ | |/
| * Changed doc.trolltech.com links to doc.qtsoftware.comSimon Hausmann2009-04-2811-11/+11
| | | | | | | | Reviewed-by: David Boddie
* | Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qtSimon Hausmann2009-04-276-6/+6
|\ \ | |/