X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fc2171bd4c660b8554dae2a1cbf34ff09f3032a6..ab9d0a8ca3d306898d92960ecfaefb8c1191b18a:/docs/latex/wx/toolbar.tex?ds=sidebyside diff --git a/docs/latex/wx/toolbar.tex b/docs/latex/wx/toolbar.tex index 94f6b18bad..974007cf09 100644 --- a/docs/latex/wx/toolbar.tex +++ b/docs/latex/wx/toolbar.tex @@ -51,6 +51,20 @@ before creating the toolbar: wxSystemOptions::SetOption(wxT("msw.remap"), 0); \end{verbatim} +If you wish to use 32-bit images (which include an alpha channel for transparency) +use: + +\begin{verbatim} + wxSystemOptions::SetOption(wxT("msw.remap"), 2); +\end{verbatim} + +then colour remapping is switched off, and a transparent background used. But only +use this option under Windows XP with true colour: + +\begin{verbatim} + (wxTheApp->GetComCtl32Version() >= 600 && ::wxDisplayDepth() >= 32) +\end{verbatim} + \wxheading{Window styles} \twocolwidtha{5cm} @@ -74,7 +88,7 @@ native toolbar ignores {\tt wxTB\_NOICONS} style. Also, toggling the \wxheading{Event handling} -The toolbar class emits menu commands in the same was that a frame menubar does, +The toolbar class emits menu commands in the same way that a frame menubar does, so you can use one EVT\_MENU macro for both a menu item and a toolbar button. The event handler functions take a wxCommandEvent argument. For most event macros, the identifier of the tool is passed, but for EVT\_TOOL\_ENTER the toolbar @@ -146,7 +160,7 @@ tools. You may also create a toolbar that is managed by the frame, by calling \helpref{wxFrame::CreateToolBar}{wxframecreatetoolbar}. -\membersection{wxToolBar::\destruct{wxToolBar}} +\membersection{wxToolBar::\destruct{wxToolBar}}\label{wxtoolbardtor} \func{void}{\destruct{wxToolBar}}{\void} @@ -459,7 +473,7 @@ Returns the value used for packing tools. \constfunc{int}{GetToolPos}{\param{int }{toolId}} -Returns the tool position in the toolbar, or wxNOT\_FOUND if the tool is not found. +Returns the tool position in the toolbar, or {\tt wxNOT\_FOUND} if the tool is not found. \membersection{wxToolBar::GetToolSeparation}\label{wxtoolbargettoolseparation}