Source code for enaml.qt.qt_check_box

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


[docs]class QtCheckBox(QtAbstractButton): """ A Qt implementation of an Enaml CheckBox. """
[docs] def create_widget(self, parent, tree): """ Create the underlying check box widget. """ return QCheckBox(parent)