1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#------------------------------------------------------------------------------
# Copyright (c) 2013-2025, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
""" An example of the various button widgets in Enaml.
This example shows the usage of the `PushButton`, `CheckBox`, and
`RadioButton` widgets.
The intent of this example is to demonstrate the use of the button
widgets. See the other examples for explanations of layout and other
language features.
<< autodoc-me >>
"""
from __future__ import print_function
from enaml.widgets.api import (
Window, Container, PushButton, CheckBox, RadioButton
)
enamldef Main(Window):
Container:
PushButton:
text = 'Push Me'
clicked :: print('I was clicked!')
PushButton:
# Note: checkable push buttons are only supported on Qt
text = 'Toggle Me'
checkable = True
toggled :: print('I was toggled')
CheckBox:
text = 'Check One'
clicked :: print('Check One clicked')
CheckBox:
text = 'Check Two'
toggled :: print('Check Two toggled')
RadioButton:
text = 'Radio One'
clicked :: print('Radio One clicked')
RadioButton:
text = 'Radio Two'
toggled :: print('Radio Two toggled')
Container:
# Note: RadioButton widgets are exclusive amongst siblings
RadioButton:
text = 'Radio One b'
clicked :: print('Radio One b clicked')
RadioButton:
text = 'Radio Two b'
toggled :: print('Radio Two b toggled')
|