.. wxPython Phoenix documentation This file was generated by Phoenix's sphinx generator and associated tools, do not edit by hand. Copyright: (c) 2011-2018 by Total Control Software License: wxWindows License .. include:: headings.inc .. _wx.RadioButton: ========================================================================================================================================== |phoenix_title| **wx.RadioButton** ========================================================================================================================================== A radio button item is a button which usually denotes one of several mutually exclusive options. It has a text label next to a (usually) round button. You can create a group of mutually-exclusive radio buttons by specifying ``RB_GROUP`` for the first in the group. The group ends when another radio button group is created, or there are no more radio buttons. .. _RadioButton-styles: |styles| Window Styles ================================ This class supports the following styles: - ``wx.RB_GROUP``: Marks the beginning of a new group of radio buttons. - ``wx.RB_SINGLE``: In some circumstances, radio buttons that are not consecutive siblings trigger a hang bug in Windows (only). If this happens, add this style to mark the button as not belonging to a group, and implement the mutually-exclusive group behaviour yourself. .. _RadioButton-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`wx.CommandEvent` parameter. - EVT_RADIOBUTTON: Process a ``wxEVT_RADIOBUTTON`` event, when the radiobutton is clicked. .. seealso:: :ref:`Events and Event Handling <events and event handling>`, :ref:`wx.RadioBox`, :ref:`wx.CheckBox` | |class_hierarchy| Class Hierarchy ================================= .. raw:: html <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;"> <img id="toggleBlock-trigger" src="_static/images/closed.png"/> Inheritance diagram for class <strong>RadioButton</strong>: </div> <div id="toggleBlock-summary" style="display:block;"></div> <div id="toggleBlock-content" style="display:none;"> <p class="graphviz"> <center><img src="_static/images/inheritance/wx.RadioButton_inheritance.png" alt="Inheritance diagram of RadioButton" usemap="#dummy" class="inheritance"/></center> <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script> <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.RadioButton.html" title="A radio button item is a button which usually denotes one of several mutually exclusive options." alt="" coords="47,315,175,344"/> <area shape="rect" id="node2" href="wx.Control.html" title="This is the base class for a control or 'widget'." alt="" coords="64,237,157,267"/> <area shape="rect" id="node3" href="wx.Window.html" title="wx.Window is the base class for all windows and represents any visible object on screen." alt="" coords="62,160,159,189"/> <area shape="rect" id="node4" href="wx.EvtHandler.html" title="A class that can handle events from the windowing system." alt="" coords="51,83,170,112"/> <area shape="rect" id="node5" href="wx.Object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="5,5,93,35"/> <area shape="rect" id="node6" href="wx.Trackable.html" title="Add-on base class for a trackable object." alt="" coords="118,5,229,35"/> </map> </p> </div> | |appearance| Control Appearance =============================== | .. figure:: _static/images/widgets/fullsize/wxmsw/wx.radiobutton.png :alt: wxMSW :figclass: floatleft **wxMSW** .. figure:: _static/images/widgets/fullsize/wxmac/wx.radiobutton.png :alt: wxMAC :figclass: floatright **wxMAC** .. figure:: _static/images/widgets/fullsize/wxgtk/wx.radiobutton.png :alt: wxGTK :figclass: floatcenter **wxGTK** | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~wx.RadioButton.__init__` Default constructor. :meth:`~wx.RadioButton.Create` Creates the choice for two-step construction. :meth:`~wx.RadioButton.GetClassDefaultAttributes` :meth:`~wx.RadioButton.GetValue` Returns ``True`` if the radio button is checked, ``False`` otherwise. :meth:`~wx.RadioButton.SetValue` Sets the radio button to checked or unchecked status. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~wx.RadioButton.Value` See :meth:`~wx.RadioButton.GetValue` and :meth:`~wx.RadioButton.SetValue` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: wx.RadioButton(Control) **Possible constructors**:: RadioButton() RadioButton(parent, id=ID_ANY, label="", pos=DefaultPosition, size=DefaultSize, style=0, validator=DefaultValidator, name=RadioButtonNameStr) A radio button item is a button which usually denotes one of several mutually exclusive options. .. method:: __init__(self, *args, **kw) |overload| Overloaded Implementations: :html:`<hr class="overloadsep" /><br />` **__init__** `(self)` Default constructor. .. seealso:: :meth:`Create` , :ref:`wx.Validator` :html:`<hr class="overloadsep" /><br />` **__init__** `(self, parent, id=ID_ANY, label="", pos=DefaultPosition, size=DefaultSize, style=0, validator=DefaultValidator, name=RadioButtonNameStr)` Constructor, creating and showing a radio button. :param `parent`: Parent window. Must not be ``None``. :type `parent`: wx.Window :param `id`: Window identifier. The value ``ID_ANY`` indicates a default value. :type `id`: wx.WindowID :param `label`: Label for the radio button. :type `label`: string :param `pos`: Window position. If `wx.DefaultPosition` is specified then a default position is chosen. :type `pos`: wx.Point :param `size`: Window size. If `wx.DefaultSize` is specified then a default size is chosen. :type `size`: wx.Size :param `style`: Window style. See :ref:`wx.RadioButton`. :type `style`: long :param `validator`: Window validator. :type `validator`: wx.Validator :param `name`: Window name. :type `name`: string .. seealso:: :meth:`Create` , :ref:`wx.Validator` :html:`<hr class="overloadsep" /><br />` .. method:: Create(self, parent, id=ID_ANY, label="", pos=DefaultPosition, size=DefaultSize, style=0, validator=DefaultValidator, name=RadioButtonNameStr) Creates the choice for two-step construction. See :ref:`wx.RadioButton` for further details. :param `parent`: :type `parent`: wx.Window :param `id`: :type `id`: wx.WindowID :param `label`: :type `label`: string :param `pos`: :type `pos`: wx.Point :param `size`: :type `size`: wx.Size :param `style`: :type `style`: long :param `validator`: :type `validator`: wx.Validator :param `name`: :type `name`: string :rtype: `bool` .. staticmethod:: GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL) :param `variant`: :type `variant`: wx.WindowVariant :rtype: :ref:`wx.VisualAttributes` .. method:: GetValue(self) Returns ``True`` if the radio button is checked, ``False`` otherwise. :rtype: `bool` .. method:: SetValue(self, value) Sets the radio button to checked or unchecked status. This does not cause a ``wxEVT_RADIOBUTTON`` event to get emitted. If the radio button belongs to a radio group exactly one button in the group may be checked and so this method can be only called with `value` set to ``True``. To uncheck a radio button in a group you must check another button in the same group. :param `value`: ``True`` to check, ``False`` to uncheck. :type `value`: bool .. attribute:: Value See :meth:`~wx.RadioButton.GetValue` and :meth:`~wx.RadioButton.SetValue`