From: Francesco Montorsi Date: Sat, 8 Mar 2008 17:32:21 +0000 (+0000) Subject: use SPAN.literal CSS style for @true, @false, @ifdef_ and similars X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/44fe9ffc49a23f820ebb86889b058e6ec9607419?ds=inline use SPAN.literal CSS style for @true, @false, @ifdef_ and similars git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52388 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/doxygen/Doxyfile.inc b/docs/doxygen/Doxyfile.inc index 2614cf0f02..303245d4da 100644 --- a/docs/doxygen/Doxyfile.inc +++ b/docs/doxygen/Doxyfile.inc @@ -95,9 +95,19 @@ ALIASES += wxheader{1}="\headerfile \1 wx/\1" # 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" +ALIASES += true="true" +ALIASES += false="false" +ALIASES += NULL="NULL" + +# NOTE: these are important as you can't write in the docs +# just #ifdef since the # character is used by Doxygen +# for explicit linking; use the following aliases instead! +# However to avoid overwriting e.g. \if Doxygen command the _ +# character is postfixed +ALIASES += ifdef_="\#ifdef" +ALIASES += ifndef_="\#ifndef" +ALIASES += if_="\#if" +ALIASES += endif_="\#endif" # table aliases for 2 and 3 column tables ALIASES += beginTable="
" @@ -139,16 +149,6 @@ ALIASES += itemdef{9}="" ALIASES += itemdef{10}="" ALIASES += endDefList="
\b \1 \2,\3,\4,\5,\6,\7,\8,\9
\b \1 \2,\3,\4,\5,\6,\7,\8,\9,\10
" -# NOTE: these are important as you can't write in the docs -# just #ifdef since the # character is used by Doxygen -# for explicit linking; use the following aliases instead! -# However to avoid overwriting e.g. \if Doxygen command the _ -# character is postfixed -ALIASES += ifdef_="\#ifdef" -ALIASES += ifndef_="\#ifndef" -ALIASES += if_="\#if" -ALIASES += endif_="\#endif" - # See ENABLED_SECTIONS configuration key for more info about these: ALIASES += beginWxPerlOnly="\if WXPERL_MANUAL \n wxPerl note\n\n" ALIASES += endWxPerlOnly="\endif" diff --git a/docs/doxygen/wxwidgets.css b/docs/doxygen/wxwidgets.css index 19b867a4bf..bbb4b1ba6f 100644 --- a/docs/doxygen/wxwidgets.css +++ b/docs/doxygen/wxwidgets.css @@ -454,3 +454,10 @@ TABLE.appearance { font-size: 90%; /*font-weight: bold;*/ } + +SPAN.literal { + text-decoration: none; + font-weight: bold; + font-family: monospace, fixed; + color: #008800; +} \ No newline at end of file