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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
# (C) Copyright 2004-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
"""
Range editor
A Range Trait holds a numeric value which is restricted to a specified range.
This example shows how the RangeEditor's simple and custom styles vary
depending on the type (integer or float) and size (small, medium, or large
integer) of the specified range.
The example also shows how multiple Groups at the top level of a View are
automatically placed into separate tabs.
For an example of how to dynamically vary the bounds of a Range trait, see
the *Dynamic Range Editor* example.
Please refer to the `RangeEditor API docs`_ for further information.
.. _RangeEditor API docs: https://docs.enthought.com/traitsui/api/traitsui.editors.range_editor.html#traitsui.editors.range_editor.RangeEditor
"""
from traits.api import HasTraits, Range
from traitsui.api import Item, Group, View
class RangeEditorDemo(HasTraits):
"""Defines the RangeEditor demo class."""
# Define a trait for each of four range variants:
small_int_range = Range(1, 16)
medium_int_range = Range(1, 25)
large_int_range = Range(1, 150)
float_range = Range(0.0, 150.0)
# RangeEditor display for narrow integer Range traits (< 17 wide):
int_range_group1 = Group(
Item(
'small_int_range',
style='simple',
label='Simple',
id='simple_small',
),
Item('_'),
Item(
'small_int_range',
style='custom',
label='Custom',
id='custom_small',
),
Item('_'),
Item('small_int_range', style='text', label='Text', id='text_small'),
Item('_'),
Item(
'small_int_range',
style='readonly',
label='ReadOnly',
id='readonly_small',
),
label='Small Int',
)
# RangeEditor display for medium-width integer Range traits (17 to 100):
int_range_group2 = Group(
Item(
'medium_int_range',
style='simple',
label='Simple',
id='simple_medium',
),
Item('_'),
Item(
'medium_int_range',
style='custom',
label='Custom',
id='custom_medium',
),
Item('_'),
Item('medium_int_range', style='text', label='Text', id='text_medium'),
Item('_'),
Item(
'medium_int_range',
style='readonly',
label='ReadOnly',
id='readonly_medium',
),
label='Medium Int',
)
# RangeEditor display for wide integer Range traits (> 100):
int_range_group3 = Group(
Item(
'large_int_range',
style='simple',
label='Simple',
id='simple_large',
),
Item('_'),
Item(
'large_int_range',
style='custom',
label='Custom',
id='custom_large',
),
Item('_'),
Item('large_int_range', style='text', label='Text', id='text_large'),
Item('_'),
Item(
'large_int_range',
style='readonly',
label='ReadOnly',
id='readonly_large',
),
label='Large Int',
)
# RangeEditor display for float Range traits:
float_range_group = Group(
Item('float_range', style='simple', label='Simple', id='simple_float'),
Item('_'),
Item('float_range', style='custom', label='Custom', id='custom_float'),
Item('_'),
Item('float_range', style='text', label='Text', id='text_float'),
Item('_'),
Item(
'float_range',
style='readonly',
label='ReadOnly',
id='readonly_float',
),
label='Float',
)
# The view includes one group per data type. These will be displayed
# on separate tabbed panels:
traits_view = View(
int_range_group1,
int_range_group2,
int_range_group3,
float_range_group,
title='RangeEditor',
buttons=['OK'],
resizable=True,
)
# Create the demo:
demo = RangeEditorDemo()
# Run the demo (if invoked from the comand line):
if __name__ == '__main__':
demo.configure_traits()
|