Fixed wxScrolledWindow references to properly link (and appropriately changed others to wxScrolled).
Initial reviews of a few d* interface headers in this commit as well. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -160,9 +160,9 @@ ALIASES += itemdef{10}="<tr><td><span class='itemdef'>\1</span></td> <td>\2,\3,\
|
||||
ALIASES += endDefList="</table>"
|
||||
|
||||
# See ENABLED_SECTIONS configuration key for more info about these:
|
||||
ALIASES += beginWxPerlOnly="\if WXPERL_MANUAL \n <b>wxPerl Note:</b>\n\n"
|
||||
ALIASES += beginWxPerlOnly="\if WXPERL_MANUAL <b>wxPerl Note:</b> "
|
||||
ALIASES += endWxPerlOnly="\endif"
|
||||
ALIASES += beginWxPythonOnly="\if WXPYTHON_MANUAL \n <b>wxPython Note:</b>\n\n"
|
||||
ALIASES += beginWxPythonOnly="\if WXPYTHON_MANUAL <b>wxPython Note:</b> "
|
||||
ALIASES += endWxPythonOnly="\endif"
|
||||
|
||||
# This is to get around a bug in Doxygen that prevents use of '{' or '}'
|
||||
|
@@ -71,9 +71,8 @@ The following are the most important window classes
|
||||
@li wxWindow: base class for all windows and controls
|
||||
@li wxControl: base class (mostly) for native controls/widgets
|
||||
@li wxPanel: window which can smartly manage child windows
|
||||
@li wxScrolledWindow: Window with automatically managed scrollbars (see wxScrolled)
|
||||
@li wxVScrolledWindow: As wxScrolledWindow but supports lines of variable
|
||||
height
|
||||
@li ::wxScrolledWindow: Window with automatically managed scrollbars (see
|
||||
wxScrolled)
|
||||
@li wxTopLevelWindow: Any top level window, dialog or frame
|
||||
|
||||
|
||||
@@ -208,7 +207,14 @@ platform-dependent.
|
||||
The following are a variety of classes that are derived from wxWindow.
|
||||
|
||||
@li wxPanel: A window whose colour changes according to current user settings
|
||||
@li wxScrolledWindow: Window with automatically managed scrollbars
|
||||
@li ::wxScrolledWindow: Window with automatically managed scrollbars (see
|
||||
wxScrolled)
|
||||
@li wxHScrolledWindow: As ::wxScrolledWindow but supports columns of variable
|
||||
widths
|
||||
@li wxVScrolledWindow: As ::wxScrolledWindow but supports rows of variable
|
||||
heights
|
||||
@li wxHVScrolledWindow: As ::wxScrolledWindow but supports scroll units of
|
||||
variable sizes.
|
||||
@li wxGrid: A grid (table) window
|
||||
@li wxSplitterWindow: Window which can be split vertically or horizontally
|
||||
@li wxStatusBar: Implements the status bar on a frame
|
||||
@@ -220,8 +226,6 @@ The following are a variety of classes that are derived from wxWindow.
|
||||
@li wxSashWindow: Window with four optional sashes that can be dragged
|
||||
@li wxSashLayoutWindow: Window that can be involved in an IDE-like layout
|
||||
arrangement
|
||||
@li wxVScrolledWindow: As wxScrolledWindow but supports lines of variable
|
||||
height
|
||||
@li wxWizardPage: A base class for the page in wizard dialog.
|
||||
@li wxWizardPageSimple: A page in wizard dialog.
|
||||
|
||||
|
@@ -462,7 +462,7 @@ renderer and also how to write a shared library
|
||||
|
||||
@section page_samples_scrollsub Scroll subwindow sample
|
||||
|
||||
This sample demonstrates use of the wxScrolledWindow
|
||||
This sample demonstrates use of the ::wxScrolledWindow
|
||||
class including placing subwindows into it and drawing simple graphics. It uses the
|
||||
SetTargetWindow method and thus the effect
|
||||
of scrolling does not show in the scrolled window itself, but in one of its subwindows.
|
||||
|
@@ -67,7 +67,7 @@ within wxDialog::Show or wxDialog::ShowModal:
|
||||
@li If that search failed too, wxWidgets finds 'loose' standard buttons (in any kind of sizer)
|
||||
and adds them to a wxStdDialogButtonSizer.
|
||||
If no standard buttons were found, the whole dialog content will scroll.
|
||||
@li All the children apart from standard buttons are reparented onto a new wxScrolledWindow
|
||||
@li All the children apart from standard buttons are reparented onto a new ::wxScrolledWindow
|
||||
object, using the old top-level sizer for the scrolled window and creating a new top-level
|
||||
sizer to lay out the scrolled window and standard button sizer.
|
||||
|
||||
|
@@ -45,7 +45,7 @@ There is a generic wxHtmlParser class, independent of wxHtmlWindow.
|
||||
|
||||
First of all, you must include @c wx/wxhtml.h.
|
||||
|
||||
Class wxHtmlWindow (derived from wxScrolledWindow) is used to display HTML documents.
|
||||
Class wxHtmlWindow (derived from ::wxScrolledWindow) is used to display HTML documents.
|
||||
|
||||
It has two important methods: wxHtmlWindow::LoadPage and wxHtmlWindow::SetPage.
|
||||
LoadPage loads and displays HTML file while SetPage displays directly the
|
||||
@@ -65,7 +65,7 @@ See wxHtmlHelpController.
|
||||
|
||||
@subsection overview_html_quickstart_settingup Setting up wxHtmlWindow
|
||||
|
||||
Because wxHtmlWindow is derived from wxScrolledWindow and not from
|
||||
Because wxHtmlWindow is derived from ::wxScrolledWindow and not from
|
||||
wxFrame, it doesn't have visible frame. But the user usually wants to see
|
||||
the title of HTML page displayed somewhere and the frame's titlebar is
|
||||
the ideal place for it.
|
||||
|
@@ -415,7 +415,7 @@ spec over time.
|
||||
@li wxScreenDC
|
||||
@li wxScrollBar
|
||||
@li wxScrollEvent
|
||||
@li wxScrolledWindow
|
||||
@li ::wxScrolledWindow
|
||||
@li wxScrollWinEvent
|
||||
@li wxShowEvent
|
||||
@li wxSingleChoiceDialog
|
||||
|
@@ -12,7 +12,7 @@
|
||||
|
||||
Classes:
|
||||
@li wxWindow
|
||||
@li wxScrolledWindow
|
||||
@li ::wxScrolledWindow
|
||||
@li wxScrollBar
|
||||
|
||||
@li @ref overview_scrolling_model
|
||||
@@ -35,7 +35,7 @@ events. If you created a wxWindow object with scrollbars, and then clicked on
|
||||
the scrollbars, nothing at all would happen. This is deliberate, because the
|
||||
@e interpretation of scroll events varies from one window class to another.
|
||||
|
||||
wxScrolledWindow (formerly wxCanvas) is an example of a window that adds
|
||||
::wxScrolledWindow (formerly wxCanvas) is an example of a window that adds
|
||||
functionality to make scrolling really work. It assumes that scrolling happens
|
||||
in consistent units, not different-sized jumps, and that page size is
|
||||
represented by the visible portion of the window. It is suited to drawing
|
||||
|
Reference in New Issue
Block a user