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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
# (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!
"""
This example shows how to define a read-only, auto-edit table column using a
custom pop-up view.
The example displays a list of integer values from 1 to n, where 'n' can be set
using the slider at the top of the view. Each entry in the list shows the value
of the integer and the number of unique factors it has.
Mousing over the number of factors for a particular integer displays a pop-up
list containing the unique factors for the integer. Mousing out of the cell
causes the pop-up list to be removed (and perhaps causes a new pop-up list to
be displayed, depending upon whether the mouse entered a new cell or not).
Creating the auto pop-up effect is achieved by setting the 'auto_editable' trait
of the associated ObjectColumn to True and also specifying a view to display
on mouse over as the value of the ObjectColumn's 'view' trait.
Note that this style of auto pop-up view can only be used with non-editable
table editor fields. If the field is editable, then setting 'auto_editable' to
True will cause the editor associated with the ObjectColumn to be automatically
activated on mouse over, rather than the pop-up view specified by the 'view'
trait.
"""
# -- Imports --------------------------------------------------------------
from operator import attrgetter
from traits.api import (
HasTraits,
Int,
List,
Range,
Property,
cached_property,
)
from traitsui.api import View, VGroup, Item, TableEditor
from traitsui.table_column import ObjectColumn
# -- Integer Class --------------------------------------------------------
class Integer(HasTraits):
# The value:
n = Int()
# -- Factor Class ---------------------------------------------------------
class Factor(HasTraits):
# The number being factored:
n = Int()
# The list of factors of 'n':
factors = Property(List, observe='n')
@cached_property
def _get_factors(self):
n = self.n
i = 1
result = []
while (i * i) <= n:
j = n // i
if (i * j) == n:
result.append(Integer(n=i))
if i != j:
result.append(Integer(n=j))
i += 1
result.sort(key=attrgetter('n'))
return result
# -- The table editor used for the pop-up view ----------------------------
factor_table_editor = TableEditor(
columns=[
ObjectColumn(
name='n', width=1.0, editable=False, horizontal_alignment='center'
)
],
sortable=False,
auto_size=False,
show_toolbar=False,
show_column_labels=False,
)
# -- The table editor used for the main view ------------------------------
factors_view = View(
Item(
'factors',
id='factors',
show_label=False,
editor=factor_table_editor,
),
id='traits.examples.demo.Advanced.factors_view',
kind='info',
height=0.30,
)
factors_table_editor = TableEditor(
columns=[
ObjectColumn(
name='n', width=0.5, editable=False, horizontal_alignment='center'
),
ObjectColumn(
name='factors',
width=0.5,
editable=False,
horizontal_alignment='center',
auto_editable=True,
format_func=lambda f: '%s factors' % len(f),
view=factors_view,
),
],
sortable=False,
auto_size=False,
show_toolbar=False,
)
# -- Factors Class --------------------------------------------------------
class Factors(HasTraits):
# The maximum number to include in the table:
max_n = Range(1, 1000, 20, mode='slider')
# The list of Factor objects:
factors = Property(List, observe='max_n')
# The view of the list of Factor objects:
view = View(
VGroup(
VGroup(
Item('max_n'),
show_labels=False,
show_border=True,
label='Maximum Number',
),
VGroup(
Item('factors', show_label=False, editor=factors_table_editor),
),
),
title='List of numbers and their factors',
width=0.2,
height=0.4,
resizable=True,
)
@cached_property
def _get_factors(self):
return [Factor(n=i + 1) for i in range(self.max_n)]
# -- Create and run the demo ----------------------------------------------
# Create the demo:
demo = Factors()
# Run the demo (if invoked from the command line):
if __name__ == '__main__':
demo.configure_traits()
|