projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Document wxGridCellAttrProvider.
[wxWidgets.git]
/
interface
/
wx
/
radiobut.h
diff --git
a/interface/wx/radiobut.h
b/interface/wx/radiobut.h
index fe0690b3f4a49302435b9f613e9d8bb7d2bb3000..362bed386e28017cc300df928e903726251db2c0 100644
(file)
--- a/
interface/wx/radiobut.h
+++ b/
interface/wx/radiobut.h
@@
-30,7
+30,7
@@
only on PalmOS).
@endStyleTable
only on PalmOS).
@endStyleTable
- @beginEventTable{wxCommandEvent}
+ @beginEvent
Emission
Table{wxCommandEvent}
@event{EVT_RADIOBUTTON(id, func)}
Process a @c wxEVT_COMMAND_RADIOBUTTON_SELECTED event, when the
radiobutton is clicked.
@event{EVT_RADIOBUTTON(id, func)}
Process a @c wxEVT_COMMAND_RADIOBUTTON_SELECTED event, when the
radiobutton is clicked.
@@
-40,12
+40,11
@@
@category{ctrl}
@appearance{radiobutton.png}
@category{ctrl}
@appearance{radiobutton.png}
- @see @ref overview_event
handling
, wxRadioBox, wxCheckBox
+ @see @ref overview_event
s
, wxRadioBox, wxCheckBox
*/
class wxRadioButton : public wxControl
{
public:
*/
class wxRadioButton : public wxControl
{
public:
-
/**
Default constructor.
/**
Default constructor.
@@
-63,11
+62,11
@@
public:
@param label
Label for the radio button.
@param pos
@param label
Label for the radio button.
@param pos
- Window position. If
@c
wxDefaultPosition is specified then a default
- position is chosen.
+ Window position. If
::
wxDefaultPosition is specified then a default
+
position is chosen.
@param size
@param size
- Window size. If
@c
wxDefaultSize is specified then a default size
- is chosen.
+ Window size. If
::
wxDefaultSize is specified then a default size
+
is chosen.
@param style
Window style. See wxRadioButton.
@param validator
@param style
Window style. See wxRadioButton.
@param validator
@@
-83,7
+82,7
@@
public:
const wxSize& size = wxDefaultSize,
long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxValidator& validator = wxDefaultValidator,
- const wxString& name =
"radioButton"
);
+ const wxString& name =
wxRadioButtonNameStr
);
/**
Destructor, destroying the radio button item.
/**
Destructor, destroying the radio button item.
@@
-94,13
+93,11
@@
public:
Creates the choice for two-step construction. See wxRadioButton() for
further details.
*/
Creates the choice for two-step construction. See wxRadioButton() for
further details.
*/
- bool Create(wxWindow* parent, wxWindowID id,
- const wxString& label,
+ bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
const wxPoint& pos = wxDefaultPosition,
const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = 0,
+ const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxValidator& validator = wxDefaultValidator,
- const wxString& name =
"radioButton"
);
+ const wxString& name =
wxRadioButtonNameStr
);
/**
Returns @true if the radio button is depressed, @false otherwise.
/**
Returns @true if the radio button is depressed, @false otherwise.
@@
-114,6
+111,6
@@
public:
@param value
@true to select, @false to deselect.
*/
@param value
@true to select, @false to deselect.
*/
- v
oid SetValue(const
bool value);
+ v
irtual void SetValue(
bool value);
};
};