Source code for enaml.qt.qt_radio_button

#------------------------------------------------------------------------------
#  Copyright (c) 2012, Enthought, Inc.
#  All rights reserved.
#------------------------------------------------------------------------------
from .qt.QtGui import QRadioButton
from .qt_abstract_button import QtAbstractButton


[docs]class QtRadioButton(QtAbstractButton): """ A Qt implementation of an Enaml RadioButton. """
[docs] def create_widget(self, parent, tree): """ Create the underlying radio button widget. """ return QRadioButton(parent)