Skip to content

Commit c53c9fc

Browse files
Accept lists and tuples in listboxes, comboboxes, and spinboxes
1 parent cd69638 commit c53c9fc

9 files changed

+140
-120
lines changed

Tests/test_Combobox.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_bad_params(self):
1818
with self.assertRaises(TypeError):
1919
Combobox(1)
2020
with self.assertRaises(TypeError):
21-
Combobox(self.root, values=[])
21+
Combobox(self.root, values={})
2222
with self.assertRaises(TypeError):
2323
Combobox(self.root, width=5.5)
2424
with self.assertRaises(TypeError):
@@ -48,9 +48,10 @@ def test_values(self):
4848
self.assertEqual(c.values, ())
4949
c.values = ("Foo", )
5050
self.assertEqual(c.values, ("Foo", ))
51+
c.values = ["Bar"]
52+
self.assertEqual(c.values, ("Bar", ))
5153
with self.assertRaises(TypeError):
52-
c.values = ["lol", "this", "doesn't", "work", "it", "must", "be",
53-
"a", "tuple"]
54+
c.values = {}
5455
except tk.TclError:
5556
pass
5657

Tests/test_Listbox.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ def test_values(self):
5252
self.assertEqual(l.values, [])
5353
l.values = ["Foo"]
5454
self.assertEqual(l.values, ["Foo"])
55+
l.values = ("Bar", )
56+
self.assertEqual(l.values, ["Bar"])
5557
with self.assertRaises(TypeError):
56-
l.values = ()
58+
l.values = {}
5759

5860
def test_enabled(self):
5961
l = Listbox(self.root)

Tests/test_Spinbox.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_bad_params(self):
1818
with self.assertRaises(TypeError):
1919
Spinbox(parent=1)
2020
with self.assertRaises(TypeError):
21-
Spinbox(self.root, values=["this", "doesn't", "work"])
21+
Spinbox(self.root, values={"this", "doesn't", "work"})
2222
with self.assertRaises(TypeError):
2323
Spinbox(self.root, width=5.5)
2424
with self.assertRaises(TypeError):
@@ -46,8 +46,10 @@ def test_values(self):
4646
self.assertEqual(s.values, ())
4747
s.values = ("Foo", )
4848
self.assertEqual(s.values, ("Foo", ))
49+
s.values = ["Foo"]
50+
self.assertEqual(s.values, ("Foo",))
4951
with self.assertRaises(TypeError):
50-
s.values = []
52+
s.values = {}
5153

5254
def test_enabled(self):
5355
s = Spinbox(self.root)

TkZero/Combobox.py

+12-11
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Combobox(ttk.Combobox):
1313
def __init__(
1414
self,
1515
parent: Union[tk.Widget, Union[tk.Tk, tk.Toplevel]],
16-
values: tuple[str, ...] = (),
16+
values: Union[list[str, ...], tuple[str, ...]] = (),
1717
width: int = None,
1818
show: str = None,
1919
validate: Callable = None,
@@ -23,8 +23,8 @@ def __init__(
2323
Initiate a ttk.Combobox.
2424
2525
:param parent: The parent of the combobox.
26-
:param values: The default values you can choose, should be a tuple of
27-
str. Defaults to ()
26+
:param values: The default values you can choose, should be a tuple or
27+
list of str. Defaults to ()
2828
:param width: The width of the combobox. Defaults to None.
2929
:param show: The character to show instead of the actual text.
3030
Defaults to None.
@@ -41,9 +41,10 @@ def __init__(
4141
f"Union[tk.Widget, Union[tk.Tk, tk.Toplevel]]! "
4242
f"(type passed in: {repr(type(parent))})"
4343
)
44-
if not isinstance(values, tuple):
44+
if not isinstance(values, (tuple, list)):
4545
raise TypeError(
46-
f"values is not a tuple! " f"(type passed in: {repr(type(values))})"
46+
f"values is not a tuple or a list! "
47+
f"(type passed in: {repr(type(values))})"
4748
)
4849
if not isinstance(width, int) and width is not None:
4950
raise TypeError(
@@ -102,7 +103,7 @@ def value(self, new_text: str) -> None:
102103
self.insert(0, new_text)
103104

104105
@property
105-
def values(self) -> tuple[str]:
106+
def values(self) -> tuple[str, ...]:
106107
"""
107108
Get the default options you can select.
108109
@@ -111,19 +112,19 @@ def values(self) -> tuple[str]:
111112
return self["values"] if self["values"] else ()
112113

113114
@values.setter
114-
def values(self, new_values: tuple[str]) -> None:
115+
def values(self, new_values: Union[tuple[str, ...], list[str, ...]]) -> None:
115116
"""
116117
Set the default options text on this combobox.
117118
118-
:param new_values: The new options, as a tuple of str.
119+
:param new_values: The new options, as a tuple or list of str.
119120
:return: None.
120121
"""
121-
if not isinstance(new_values, tuple):
122+
if not isinstance(new_values, (tuple, list)):
122123
raise TypeError(
123-
f"new_values is not a tuple! "
124+
f"new_values is not a tuple or a list! "
124125
f"(type passed in: {repr(type(new_values))})"
125126
)
126-
self["values"] = new_values
127+
self["values"] = tuple([str(thing) for thing in new_values])
127128

128129
@property
129130
def enabled(self) -> bool:

TkZero/Listbox.py

+10-9
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Listbox(tk.Listbox):
2121
def __init__(
2222
self,
2323
parent: Union[tk.Widget, Union[tk.Tk, tk.Toplevel]],
24-
values: list[str, ...] = None,
24+
values: Union[list[str, ...], tuple[str, ...]] = None,
2525
select_mode: str = SelectModes.Single,
2626
height: int = None,
2727
width: int = None,
@@ -32,8 +32,8 @@ def __init__(
3232
Initiate a tk.Listbox.
3333
3434
:param parent: The parent of the listbox.
35-
:param values: The default values you can choose, should be a list of
36-
str. Defaults to []
35+
:param values: The default values you can choose, should be a list or
36+
tuple of str. Defaults to []
3737
:param select_mode: The select mode to use. (allows you to select one
3838
or more items or not) Should be a str and defaults to
3939
SelectModes.Single
@@ -47,9 +47,10 @@ def __init__(
4747
f"Union[tk.Widget, Union[tk.Tk, tk.Toplevel]]! "
4848
f"(type passed in: {repr(type(parent))})"
4949
)
50-
if not isinstance(values, list) and values is not None:
50+
if not isinstance(values, (list, tuple)) and values is not None:
5151
raise TypeError(
52-
f"values is not a list! " f"(type passed in: {repr(type(values))})"
52+
f"values is not a list or a tuple! "
53+
f"(type passed in: {repr(type(values))})"
5354
)
5455
if not isinstance(select_mode, str):
5556
raise TypeError(
@@ -118,16 +119,16 @@ def values(self) -> list[str]:
118119
return self._values
119120

120121
@values.setter
121-
def values(self, new_values: list[str]) -> None:
122+
def values(self, new_values: Union[list[str, ...], tuple[str, ...]]) -> None:
122123
"""
123124
Set the items on this combobox.
124125
125-
:param new_values: The new items, as a list of str.
126+
:param new_values: The new items, as a list or tuple of str.
126127
:return: None.
127128
"""
128-
if not isinstance(new_values, list):
129+
if not isinstance(new_values, (list, tuple)):
129130
raise TypeError(
130-
f"new_values is not a list! "
131+
f"new_values is not a list or a tuple! "
131132
f"(type passed in: {repr(type(new_values))})"
132133
)
133134
self._values = [str(item) for item in new_values]

TkZero/Spinbox.py

+14-13
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Spinbox(ttk.Spinbox):
1313
def __init__(
1414
self,
1515
parent: Union[tk.Widget, Union[tk.Tk, tk.Toplevel]],
16-
values: tuple[str, ...] = (),
16+
values: Union[tuple[str, ...], list[str, ...]] = (),
1717
width: int = None,
1818
show: str = None,
1919
validate: Callable = None,
@@ -23,8 +23,8 @@ def __init__(
2323
Initiate a ttk.Spinbox.
2424
2525
:param parent: The parent of the combobox.
26-
:param values: The values you can choose, should be a tuple of str.
27-
Defaults to ()
26+
:param values: The values you can choose, should be a tuple or list of
27+
str. Defaults to ()
2828
:param width: The width of the combobox. Defaults to None.
2929
:param show: The character to show instead of the actual text.
3030
Defaults to None.
@@ -41,9 +41,10 @@ def __init__(
4141
f"Union[tk.Widget, Union[tk.Tk, tk.Toplevel]]! "
4242
f"(type passed in: {repr(type(parent))})"
4343
)
44-
if not isinstance(values, tuple) and values is not None:
44+
if not isinstance(values, (tuple, list)) and values is not None:
4545
raise TypeError(
46-
f"values is not a tuple! " f"(type passed in: {repr(type(values))})"
46+
f"values is not a tuple or list! "
47+
f"(type passed in: {repr(type(values))})"
4748
)
4849
if not isinstance(width, int) and width is not None:
4950
raise TypeError(
@@ -72,7 +73,7 @@ def __init__(
7273
else:
7374
self.bind("<3>", lambda event: self._popup(event=event))
7475
if values is not None:
75-
self["values"] = values
76+
self["values"] = tuple([str(thing) for thing in values])
7677
self._make_context_menu()
7778

7879
@property
@@ -100,28 +101,28 @@ def value(self, new_text: str) -> None:
100101
self.insert(0, new_text)
101102

102103
@property
103-
def values(self) -> tuple[str]:
104+
def values(self) -> tuple[str, ...]:
104105
"""
105106
Get the options you can select.
106107
107-
:return: A str of the text in this entry.
108+
:return: A tuple of str of the options you can select.
108109
"""
109110
return self["values"] if self["values"] else ()
110111

111112
@values.setter
112-
def values(self, new_values: tuple[str]) -> None:
113+
def values(self, new_values: Union[tuple[str, ...], list[str, ...]]) -> None:
113114
"""
114115
Set the options text on this spinbox.
115116
116-
:param new_values: The new options, as a tuple of str.
117+
:param new_values: The new options, as a tuple or list of str.
117118
:return: None.
118119
"""
119-
if not isinstance(new_values, tuple):
120+
if not isinstance(new_values, (tuple, list)):
120121
raise TypeError(
121-
f"new_values is not a tuple! "
122+
f"new_values is not a tuple or list! "
122123
f"(type passed in: {repr(type(new_values))})"
123124
)
124-
self["values"] = new_values
125+
self["values"] = tuple([str(thing) for thing in new_values])
125126

126127
@property
127128
def enabled(self) -> bool:

0 commit comments

Comments
 (0)