English corrections

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2005-02-11 17:35:19 +00:00
parent b742a43b2a
commit 17902387c4

View File

@ -15,24 +15,20 @@ Classes: \helpref{wxNotebook}{wxnotebook}, \helpref{wxListbook}{wxlistbook}, \he
\subsection{Introduction}\label{wxbookctrlintro} \subsection{Introduction}\label{wxbookctrlintro}
A book control is a convenient way of application control and presentation of information A book control is a convenient way of displaying multiple pages of information,
in the same window, without having to display it all at the same time. Such control defines displayed one page at a time. wxWidgets has three variants of this control:
multiple pages controlled by driver control. wxWidgets has three variants of this control
differentiated by their pilot-like subcontrol:
\begin{itemize}\itemsep=0pt \begin{itemize}\itemsep=0pt
\item \helpref{wxNotebook}{wxnotebook} usually with native tab control \item \helpref{wxNotebook}{wxnotebook}: uses a row of tabs
\item \helpref{wxListbook}{wxlistbook} controlled by \helpref{wxListCtrl}{wxlistctrl} \item \helpref{wxListbook}{wxlistbook}: controlled by a \helpref{wxListCtrl}{wxlistctrl}
\item \helpref{wxChoicebook}{wxchoicebook} controlled by \helpref{wxChoice}{wxchoice} \item \helpref{wxChoicebook}{wxchoicebook}: controlled by a \helpref{wxChoice}{wxchoice}
\end{itemize} \end{itemize}
\subsection{Best book}\label{wxbestbookctrl} \subsection{Best book}\label{wxbestbookctrl}
Just like \helpref{wxConfigBase}{wxconfigbase} class represents most native type of configuration wxBookCtrl is mapped to the class best suited for a given platform.
storage, also book controls are special wrapper called wxBookCtrl which is mapped to the Currently it provides \helpref{wxChoicebook}{wxchoicebook} for smartphones equipped with
class best suited for given platform. Currently it serves \helpref{wxChoicebook}{wxchoicebook} WinCE, and \helpref{wxNotebook}{wxnotebook} for all other platforms. The mapping consists of:
for smartphones equipped with WinCE and \helpref{wxNotebook}{wxnotebook} for all other platforms.
Mapping consists in:
\twocolwidtha{5cm} \twocolwidtha{5cm}
\begin{twocollist}\itemsep=0pt \begin{twocollist}\itemsep=0pt
@ -49,4 +45,4 @@ Mapping consists in:
\twocolitem{\windowstyle{wxBC\_DEFAULT}}{\windowstyle{wxCHB\_DEFAULT} or \windowstyle{wxNB\_DEFAULT}} \twocolitem{\windowstyle{wxBC\_DEFAULT}}{\windowstyle{wxCHB\_DEFAULT} or \windowstyle{wxNB\_DEFAULT}}
\end{twocollist} \end{twocollist}
See Widgets sample for the presentation of wxBookCtrl usage. See {\tt samples/widgets} for an example of wxBookCtrl usage.