]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/radiobut.tex
Implemented wxBitmap::HasAlpha() and ::UseAlpha().
[wxWidgets.git] / docs / latex / wx / radiobut.tex
index 48cae42ab54ff5fe08bdc65952110ea85e59f12b..cefad84a75a454030cf6763adae114918b3f4a8c 100644 (file)
@@ -16,7 +16,15 @@ exclusive options. It has a text label next to a (usually) round button.
 
 \wxheading{Window styles}
 
 
 \wxheading{Window styles}
 
-There are no specific styles for this class.
+\twocolwidtha{5cm}
+\begin{twocollist}\itemsep=0pt
+\twocolitem{\windowstyle{wxRB\_GROUP}}{Marks the beginning of a new group of radio buttons.}
+\twocolitem{\windowstyle{wxRB\_SINGLE}}{If your radio buttons are not
+consecutive siblings, they cannot form a group under Windows and you should use
+this style to indicate that each of them is handled individually.}
+\twocolitem{\windowstyle{wxRB\_USE\_CHECKBOX}}{Use of the checkbox control instead of radio
+button (currently supported only on PalmOS)}
+\end{twocollist}
 
 See also \helpref{window styles overview}{windowstyles}.
 
 
 See also \helpref{window styles overview}{windowstyles}.
 
@@ -35,7 +43,7 @@ when the radiobutton is clicked.}
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
-\membersection{wxRadioButton::wxRadioButton}\label{wxradiobuttonconstr}
+\membersection{wxRadioButton::wxRadioButton}\label{wxradiobuttonctor}
 
 \func{}{wxRadioButton}{\void}
 
 
 \func{}{wxRadioButton}{\void}
 
@@ -71,7 +79,7 @@ Constructor, creating and showing a radio button.
 
 \helpref{wxRadioButton::Create}{wxradiobuttoncreate}, \helpref{wxValidator}{wxvalidator}
 
 
 \helpref{wxRadioButton::Create}{wxradiobuttoncreate}, \helpref{wxValidator}{wxvalidator}
 
-\membersection{wxRadioButton::\destruct{wxRadioButton}}
+\membersection{wxRadioButton::\destruct{wxRadioButton}}\label{wxradiobuttondtor}
 
 \func{void}{\destruct{wxRadioButton}}{\void}
 
 
 \func{void}{\destruct{wxRadioButton}}{\void}
 
@@ -85,23 +93,24 @@ Destructor, destroying the radio button item.
 \param{const wxValidator\& }{validator = wxDefaultValidator},\rtfsp
 \param{const wxString\& }{name = ``radioButton"}}
 
 \param{const wxValidator\& }{validator = wxDefaultValidator},\rtfsp
 \param{const wxString\& }{name = ``radioButton"}}
 
-Creates the choice for two-step construction. See \helpref{wxRadioButton::wxRadioButton}{wxradiobuttonconstr} for
+Creates the choice for two-step construction. See \helpref{wxRadioButton::wxRadioButton}{wxradiobuttonctor} for
 further details.
 
 \membersection{wxRadioButton::GetValue}\label{wxradiobuttongetvalue}
 
 \constfunc{bool}{GetValue}{\void}
 
 further details.
 
 \membersection{wxRadioButton::GetValue}\label{wxradiobuttongetvalue}
 
 \constfunc{bool}{GetValue}{\void}
 
-Returns TRUE if the radio button is depressed, FALSE otherwise.
+Returns true if the radio button is depressed, false otherwise.
 
 \membersection{wxRadioButton::SetValue}\label{wxradiobuttonsetvalue}
 
 \func{void}{SetValue}{\param{const bool}{ value}}
 
 
 \membersection{wxRadioButton::SetValue}\label{wxradiobuttonsetvalue}
 
 \func{void}{SetValue}{\param{const bool}{ value}}
 
-Sets the radio button to selected or deselected status.
+Sets the radio button to selected or deselected status. This does not cause a
+wxEVT\_COMMAND\_RADIOBUTTON\_SELECTED event to get emitted.
 
 \wxheading{Parameters}
 
 
 \wxheading{Parameters}
 
-\docparam{value}{TRUE to select, FALSE to deselect.}
+\docparam{value}{true to select, false to deselect.}