introduce a new @beginFlagTable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi 2008-04-10 22:09:29 +00:00
parent 4a31b0c34f
commit 09a728e15e
3 changed files with 15 additions and 10 deletions

View File

@ -63,6 +63,11 @@ ALIASES += endStyleTable="</div>\n"
ALIASES += beginExtraStyleTable="\n<span class='styles'>Extra styles:</span><div>" ALIASES += beginExtraStyleTable="\n<span class='styles'>Extra styles:</span><div>"
ALIASES += endExtraStyleTable="</div>\n" ALIASES += endExtraStyleTable="</div>\n"
# flag aliases
ALIASES += beginFlagTable="<div>"
ALIASES += flag{1}="</div>\li <span class='flag'>\1</span>:<div class='flagDesc'>"
ALIASES += endFlagTable="</div>\n"
# aliases for additional wx-specific infos # aliases for additional wx-specific infos
ALIASES += category{1}="\ingroup group_class_\1 \n<div><span class='category'>Category:</span>&nbsp;&nbsp;<span class='category_text'>\ref group_class_\1</span></div>" ALIASES += category{1}="\ingroup group_class_\1 \n<div><span class='category'>Category:</span>&nbsp;&nbsp;<span class='category_text'>\ref group_class_\1</span></div>"
ALIASES += category{2}="\ingroup group_class_\1 group_class_\2 \n<div><span class='category'>Category:</span>&nbsp;&nbsp;<span class='category_text'>\ref group_class_\1, \ref group_class_\2</span></div>" ALIASES += category{2}="\ingroup group_class_\1 group_class_\2 \n<div><span class='category'>Category:</span>&nbsp;&nbsp;<span class='category_text'>\ref group_class_\1, \ref group_class_\2</span></div>"

View File

@ -481,17 +481,17 @@ SPAN.literal {
/* we make all the following <span> tags render the text just like /* we make all the following <span> tags render the text just like
the standard Doxygen @remarks, @see tags do, to obtain a uniform the standard Doxygen @remarks, @see tags do, to obtain a uniform
look and feel */ look and feel */
SPAN.itemdef, SPAN.lib, SPAN.category, SPAN.stdobj, SPAN.styles, SPAN.events, SPAN.appearance, SPAN.impl, SPAN.avail { SPAN.itemdef, SPAN.lib, SPAN.category, SPAN.stdobj, SPAN.styles, SPAN.events, SPAN.flags, SPAN.appearance, SPAN.impl, SPAN.avail {
font-weight: bold; font-weight: bold;
line-height: 130%; line-height: 130%;
} }
SPAN.style, SPAN.event { SPAN.style, SPAN.event, SPAN.flag {
font-weight: bold; font-weight: bold;
color: #880000; color: #880000;
} }
DIV.styleDesc, DIV.eventDesc { DIV.styleDesc, DIV.eventDesc, DIV.flagDesc {
margin-left: 3%; margin-left: 3%;
margin-bottom: 1ex; margin-bottom: 1ex;
} }

View File

@ -31,19 +31,19 @@ public:
The @a buttons parameter may be a combination of the following, using the bitwise The @a buttons parameter may be a combination of the following, using the bitwise
'or' operator: 'or' operator:
@beginStyleTable @beginFlagTable
@style{wxPREVIEW_PRINT}: @flag{wxPREVIEW_PRINT}
Create a print button. Create a print button.
@style{wxPREVIEW_NEXT}: @flag{wxPREVIEW_NEXT}
Create a next page button. Create a next page button.
@style{wxPREVIEW_PREVIOUS}: @flag{wxPREVIEW_PREVIOUS}
Create a previous page button. Create a previous page button.
@style{wxPREVIEW_ZOOM}: @flag{wxPREVIEW_ZOOM}
Create a zoom control. Create a zoom control.
@style{wxPREVIEW_DEFAULT}: @flag{wxPREVIEW_DEFAULT}
Equivalent to a combination of @c wxPREVIEW_PREVIOUS, @c wxPREVIEW_NEXT Equivalent to a combination of @c wxPREVIEW_PREVIOUS, @c wxPREVIEW_NEXT
and @c wxPREVIEW_ZOOM. and @c wxPREVIEW_ZOOM.
@endStyleTable @endFlagTable
*/ */
wxPreviewControlBar(wxPrintPreview* preview, wxPreviewControlBar(wxPrintPreview* preview,
long buttons, long buttons,