Added info about wxRB_SINGLE

This commit is contained in:
Stefan Csomor
2020-09-21 09:02:06 +02:00
parent 02b3b9d745
commit 7bf00e1161

View File

@@ -125,6 +125,8 @@ public:
/** /**
Returns the first radio button of the @c wxRB_GROUP this instance is in. Returns the first radio button of the @c wxRB_GROUP this instance is in.
The return value is NULL if this button has the style @c wxRB_SINGLE.
@see GetPreviousInGroup(), GetNextInGroup(), GetLastInGroup() @see GetPreviousInGroup(), GetNextInGroup(), GetLastInGroup()
*/ */
wxRadioButton* GetFirstInGroup(); wxRadioButton* GetFirstInGroup();
@@ -132,6 +134,8 @@ public:
/** /**
Returns the last radio button of the @c wxRB_GROUP this instance is in. Returns the last radio button of the @c wxRB_GROUP this instance is in.
The return value is NULL if this button has the style @c wxRB_SINGLE.
@see GetFirstInGroup(), GetPreviousInGroup(), GetNextInGroup() @see GetFirstInGroup(), GetPreviousInGroup(), GetNextInGroup()
*/ */
wxRadioButton* GetLastInGroup(); wxRadioButton* GetLastInGroup();
@@ -139,6 +143,9 @@ public:
/** /**
Returns the previous radio button of the @c wxRB_GROUP this instance is in. Returns the previous radio button of the @c wxRB_GROUP this instance is in.
The return value is NULL if there is no predecessor or this button has
the style @c wxRB_SINGLE.
@see GetFirstInGroup(), GetNextInGroup(), GetLastInGroup() @see GetFirstInGroup(), GetNextInGroup(), GetLastInGroup()
*/ */
wxRadioButton* GetPreviousInGroup(); wxRadioButton* GetPreviousInGroup();
@@ -146,6 +153,9 @@ public:
/** /**
Returns the next radio button of the @c wxRB_GROUP this instance is in. Returns the next radio button of the @c wxRB_GROUP this instance is in.
The return value is NULL if there is no successor or this button has
the style @c wxRB_SINGLE.
@see GetFirstInGroup(), GetPreviousInGroup(), GetLastInGroup() @see GetFirstInGroup(), GetPreviousInGroup(), GetLastInGroup()
*/ */
wxRadioButton* GetNextInGroup(); wxRadioButton* GetNextInGroup();