From: Francesco Montorsi Date: Sun, 9 Mar 2008 12:31:29 +0000 (+0000) Subject: don't style using Doxygen tags; use tags and CSS instead X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0aaf0255e451c8a599f622f49443a8a4347c9ee8 don't style using Doxygen tags; use tags and CSS instead git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52406 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/doxygen/Doxyfile.inc b/docs/doxygen/Doxyfile.inc index 3d19fa5ec8..76f699a454 100644 --- a/docs/doxygen/Doxyfile.inc +++ b/docs/doxygen/Doxyfile.inc @@ -48,13 +48,15 @@ SUBGROUPING = YES # event aliases ALIASES = beginEventTable="\section class_events Events\n" -ALIASES += event{1}="\li \b \1" -ALIASES += event{2}="\li \b \1, \2" +ALIASES += event{1}="\li \1" +ALIASES += event{2}="\li \1, \2" +ALIASES += event{3}="\li \1, \2, \3" +ALIASES += event{4}="\li \1, \2, \3, \4" ALIASES += endEventTable="\n" # style aliases ALIASES += beginStyleTable="\section class_styles Styles\n" -ALIASES += style{1}="\li \b \c \1" +ALIASES += style{1}="\li \1" ALIASES += endStyleTable="\n" # extra style aliases @@ -92,9 +94,6 @@ ALIASES += header{1}="Include file:\n \verbatim #include <\1> @endverbatim" ALIASES += wxheader{1}="\headerfile \1 wx/\1" # some formatting aliases -# NOTE: using and tags is different from using \c \b because in the last case -# \c gets applied to the first word following and \b to the second word following; -# we want both bold and typetext attributes to be applied to the same word! ALIASES += true="true" ALIASES += false="false" ALIASES += NULL="NULL" @@ -138,15 +137,15 @@ ALIASES += endTable="" # nature and because it is always the association of a "title" with a "description" # (in contrast a table may have more than 2 columns of data)... ALIASES += beginDefList="" -ALIASES += itemdef{2}="" -ALIASES += itemdef{3}="" -ALIASES += itemdef{4}="" -ALIASES += itemdef{5}="" -ALIASES += itemdef{6}="" -ALIASES += itemdef{7}="" -ALIASES += itemdef{8}="" -ALIASES += itemdef{9}="" -ALIASES += itemdef{10}="" +ALIASES += itemdef{2}="" +ALIASES += itemdef{3}="" +ALIASES += itemdef{4}="" +ALIASES += itemdef{5}="" +ALIASES += itemdef{6}="" +ALIASES += itemdef{7}="" +ALIASES += itemdef{8}="" +ALIASES += itemdef{9}="" +ALIASES += itemdef{10}="" ALIASES += endDefList="
\b \1 \2
\b \1 \2,\3
\b \1 \2,\3,\4
\b \1 \2,\3,\4,\5
\b \1 \2,\3,\4,\5,\6
\b \1 \2,\3,\4,\5,\6,\7
\b \1 \2,\3,\4,\5,\6,\7,\8
\b \1 \2,\3,\4,\5,\6,\7,\8,\9
\b \1 \2,\3,\4,\5,\6,\7,\8,\9,\10
\1 \2
\1 \2,\3
\1 \2,\3,\4
\1 \2,\3,\4,\5
\1 \2,\3,\4,\5,\6
\1 \2,\3,\4,\5,\6,\7
\1 \2,\3,\4,\5,\6,\7,\8
\1 \2,\3,\4,\5,\6,\7,\8,\9
\1 \2,\3,\4,\5,\6,\7,\8,\9,\10
" # See ENABLED_SECTIONS configuration key for more info about these: diff --git a/docs/doxygen/wxwidgets.css b/docs/doxygen/wxwidgets.css index bbb4b1ba6f..409b0c148e 100644 --- a/docs/doxygen/wxwidgets.css +++ b/docs/doxygen/wxwidgets.css @@ -460,4 +460,20 @@ SPAN.literal { font-weight: bold; font-family: monospace, fixed; color: #008800; -} \ No newline at end of file +} + +SPAN.itemdef { + font-weight: bold; + color: #880000; +} + +SPAN.style { + font-weight: bold; + color: #880000; +} + +SPAN.event { + font-weight: bold; + color: #880000; +} +