Corrected wxlistBox, wxRadioBox, wxComboBox and
wxChoice in that they do no longer send events after programmatic calls Corrected wxStaticBitmap Reimplemented wxRadioButton as per wxMSW Updated docs for the above Update testconf for socket changes Other minor fixes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3087 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -99,7 +99,8 @@ Returns TRUE if it is checked, FALSE otherwise.
|
||||
|
||||
\func{void}{SetValue}{\param{const bool}{ state}}
|
||||
|
||||
Sets the checkbox to the given state.
|
||||
Sets the checkbox to the given state. This does not cause a
|
||||
wxEVT\_COMMAND\_CHECKBOX\_CLICKED event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
|
@@ -183,7 +183,8 @@ This is implemented for Motif only.
|
||||
|
||||
\func{void}{SetSelection}{\param{int}{ n}}
|
||||
|
||||
Sets the choice by passing the desired string position.
|
||||
Sets the choice by passing the desired string position. This does not cause
|
||||
a wxEVT\_COMMAND\_CHOICE\_SELECTED event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
@@ -197,7 +198,8 @@ Sets the choice by passing the desired string position.
|
||||
|
||||
\func{void}{SetStringSelection}{\param{const wxString\& }{ string}}
|
||||
|
||||
Sets the choice by passing the desired string.
|
||||
Sets the choice by passing the desired string. This does not cause
|
||||
a wxEVT\_COMMAND\_CHOICE\_SELECTED event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
|
@@ -295,7 +295,8 @@ Sets the insertion point at the end of the combobox text field.
|
||||
|
||||
\func{void}{SetSelection}{\param{int}{ n}}
|
||||
|
||||
Selects the given item in the combobox list.
|
||||
Selects the given item in the combobox list. This does not cause a
|
||||
wxEVT\_COMMAND\_COMBOBOX\_SELECTED event to get emitted.
|
||||
|
||||
\func{void}{SetSelection}{\param{long}{ from}, \param{long}{ to}}
|
||||
|
||||
|
@@ -338,7 +338,7 @@ Associates the given client data pointer with the given item.
|
||||
|
||||
\func{void}{SetFirstItem}{\param{const wxString\& }{string}}
|
||||
|
||||
Set the specified item to be the first visible item.
|
||||
Set the specified item to be the first visible item. Windows only.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
@@ -350,7 +350,8 @@ Set the specified item to be the first visible item.
|
||||
|
||||
\func{void}{SetSelection}{\param{int}{ n}, \param{const bool }{select = TRUE}}
|
||||
|
||||
Selects or deselects the given item.
|
||||
Selects or deselects the given item. This does not cause a
|
||||
wxEVT\_COMMAND\_LISTBOX\_SELECT event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
@@ -374,7 +375,8 @@ Sets the string value of an item.
|
||||
|
||||
\func{void}{SetStringSelection}{\param{const wxString\& }{ string}, \param{const bool}{ select = TRUE}}
|
||||
|
||||
Sets the current selection.
|
||||
Sets the current selection. This does not cause a
|
||||
wxEVT\_COMMAND\_LISTBOX\_SELECT event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
|
@@ -34,7 +34,7 @@ Retrieves the client data pointer associated with the node.
|
||||
|
||||
Retrieves the next node (NULL if at end of list).
|
||||
|
||||
\membersection{wxNodeBase::Previous}
|
||||
\membersection{wxNodeBase::GetPrevious}
|
||||
|
||||
\func{wxNodeBase *}{GetPrevious}{\void}
|
||||
|
||||
|
@@ -219,7 +219,8 @@ implements the following methods:\par
|
||||
|
||||
\func{void}{SetSelection}{\param{int}{ n}}
|
||||
|
||||
Sets a button by passing the desired string position.
|
||||
Sets a button by passing the desired string position. This does not cause
|
||||
a wxEVT\_COMMAND\_RADIOBOX\_SELECTED event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
@@ -229,7 +230,8 @@ Sets a button by passing the desired string position.
|
||||
|
||||
\func{void}{SetStringSelection}{\param{const wxString\& }{string}}
|
||||
|
||||
Sets a button by passing the desired string.
|
||||
Sets the selection to a button by passing the desired string. This does not cause
|
||||
a wxEVT\_COMMAND\_RADIOBOX\_SELECTED event to get emitted.
|
||||
|
||||
\wxheading{Parameters}
|
||||
|
||||
|
@@ -16,7 +16,10 @@ exclusive options. It has a text label next to a (usually) round button.
|
||||
|
||||
\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.}
|
||||
\end{twocollist}
|
||||
|
||||
See also \helpref{window styles overview}{windowstyles}.
|
||||
|
||||
@@ -98,7 +101,8 @@ Returns TRUE if the radio button is depressed, FALSE otherwise.
|
||||
|
||||
\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}
|
||||
|
||||
|
Reference in New Issue
Block a user