improved rendering of styles and events sections: put the description of those items on new lines; put the prototype of event handlers on a separate line, too. This change requires that @event and @style macros are _not_ followed by a colon.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53043 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-04-06 14:43:04 +00:00
parent 6bdf5153fe
commit 8c6791e43c
63 changed files with 560 additions and 552 deletions

View File

@@ -18,21 +18,21 @@
via a wxSashEvent notification.
@beginStyleTable
@style{wxSW_3D}:
@style{wxSW_3D}
Draws a 3D effect sash and border.
@style{wxSW_3DSASH}:
@style{wxSW_3DSASH}
Draws a 3D effect sash.
@style{wxSW_3DBORDER}:
@style{wxSW_3DBORDER}
Draws a 3D effect border.
@style{wxSW_BORDER}:
@style{wxSW_BORDER}
Draws a thin black border.
@endStyleTable
@beginEventTable{wxSashEvent}
@event{EVT_SASH_DRAGGED(id, func)}:
@event{EVT_SASH_DRAGGED(id, func)}
Process a wxEVT_SASH_DRAGGED event, when the user has finished
dragging a sash.
@event{EVT_SASH_DRAGGED_RANGE(id1, id2, func)}:
@event{EVT_SASH_DRAGGED_RANGE(id1, id2, func)}
Process a wxEVT_SASH_DRAGGED_RANGE event, when the user has
finished dragging a sash. The event handler is called when windows
with ids in the given range have their sashes dragged.