@@ -59,6 +59,10 @@ <h1 class="title">Module <code>TkZero.Progressbar</code></h1>
59
59
Indeterminate = "indeterminate"
60
60
61
61
62
+ # Used for differentiating between the different styles
63
+ _pbar_id = 0
64
+
65
+
62
66
class Progressbar(ttk.Progressbar):
63
67
def __init__(
64
68
self,
@@ -97,7 +101,58 @@ <h1 class="title">Module <code>TkZero.Progressbar</code></h1>
97
101
f"orientation is not a str! "
98
102
f"(type passed in: {repr(type(orientation))})"
99
103
)
100
- super().__init__(master=parent, orient=orientation, length=length, mode=mode)
104
+ self._style = ttk.Style()
105
+ global _pbar_id
106
+ if mode == OrientModes.Horizontal:
107
+ self.style_name = f"LabeledProgressbar{_pbar_id}.Horizontal.TProgressbar"
108
+ self._style.layout(
109
+ self.style_name,
110
+ [
111
+ (
112
+ "Horizontal.Progressbar.trough",
113
+ {
114
+ "sticky": "nswe",
115
+ "children": [
116
+ (
117
+ "Horizontal.Progressbar.pbar",
118
+ {"side": "left", "sticky": "ns"},
119
+ ),
120
+ (f"{self.style_name}.label", {"sticky": ""}),
121
+ ],
122
+ },
123
+ )
124
+ ],
125
+ )
126
+ else:
127
+ self.style_name = f"LabeledProgressbar{_pbar_id}.Vertical.TProgressbar"
128
+ self._style.layout(
129
+ self.style_name,
130
+ [
131
+ (
132
+ "Vertical.Progressbar.trough",
133
+ {
134
+ "sticky": "nswe",
135
+ "children": [
136
+ (
137
+ "Vertical.Progressbar.pbar",
138
+ {"side": "left", "sticky": "ns"},
139
+ ),
140
+ (f"{self.style_name}.label", {"sticky": ""}),
141
+ ],
142
+ },
143
+ )
144
+ ],
145
+ )
146
+ _pbar_id += 1
147
+ # https://stackoverflow.com/a/40348163/10291933
148
+ self._text = ""
149
+ super().__init__(
150
+ master=parent,
151
+ orient=orientation,
152
+ length=length,
153
+ mode=mode,
154
+ style=self.style_name,
155
+ )
101
156
self._style_root = "TProgressbar"
102
157
self._enabled = True
103
158
self._orientation = orientation
@@ -150,6 +205,30 @@ <h1 class="title">Module <code>TkZero.Progressbar</code></h1>
150
205
)
151
206
self["maximum"] = float(new_value)
152
207
208
+ @property
209
+ def text(self) -> str:
210
+ """
211
+ Get the text on this progressbar.
212
+
213
+ :return: A str.
214
+ """
215
+ return self._text
216
+
217
+ @text.setter
218
+ def text(self, new_text: str) -> None:
219
+ """
220
+ Set the text on this progressbar.
221
+
222
+ :param new_text: A str.
223
+ :return: None.
224
+ """
225
+ if not isinstance(new_text, str):
226
+ raise TypeError(
227
+ f"new_text is not a str! " f"(type passed in: {repr(type(new_text))})"
228
+ )
229
+ self._text = new_text
230
+ self._style.configure(self.style_name, text=self._text)
231
+
153
232
@property
154
233
def enabled(self) -> bool:
155
234
"""
@@ -316,7 +395,58 @@ <h3>Class variables</h3>
316
395
f"orientation is not a str! "
317
396
f"(type passed in: {repr(type(orientation))})"
318
397
)
319
- super().__init__(master=parent, orient=orientation, length=length, mode=mode)
398
+ self._style = ttk.Style()
399
+ global _pbar_id
400
+ if mode == OrientModes.Horizontal:
401
+ self.style_name = f"LabeledProgressbar{_pbar_id}.Horizontal.TProgressbar"
402
+ self._style.layout(
403
+ self.style_name,
404
+ [
405
+ (
406
+ "Horizontal.Progressbar.trough",
407
+ {
408
+ "sticky": "nswe",
409
+ "children": [
410
+ (
411
+ "Horizontal.Progressbar.pbar",
412
+ {"side": "left", "sticky": "ns"},
413
+ ),
414
+ (f"{self.style_name}.label", {"sticky": ""}),
415
+ ],
416
+ },
417
+ )
418
+ ],
419
+ )
420
+ else:
421
+ self.style_name = f"LabeledProgressbar{_pbar_id}.Vertical.TProgressbar"
422
+ self._style.layout(
423
+ self.style_name,
424
+ [
425
+ (
426
+ "Vertical.Progressbar.trough",
427
+ {
428
+ "sticky": "nswe",
429
+ "children": [
430
+ (
431
+ "Vertical.Progressbar.pbar",
432
+ {"side": "left", "sticky": "ns"},
433
+ ),
434
+ (f"{self.style_name}.label", {"sticky": ""}),
435
+ ],
436
+ },
437
+ )
438
+ ],
439
+ )
440
+ _pbar_id += 1
441
+ # https://stackoverflow.com/a/40348163/10291933
442
+ self._text = ""
443
+ super().__init__(
444
+ master=parent,
445
+ orient=orientation,
446
+ length=length,
447
+ mode=mode,
448
+ style=self.style_name,
449
+ )
320
450
self._style_root = "TProgressbar"
321
451
self._enabled = True
322
452
self._orientation = orientation
@@ -369,6 +499,30 @@ <h3>Class variables</h3>
369
499
)
370
500
self["maximum"] = float(new_value)
371
501
502
+ @property
503
+ def text(self) -> str:
504
+ """
505
+ Get the text on this progressbar.
506
+
507
+ :return: A str.
508
+ """
509
+ return self._text
510
+
511
+ @text.setter
512
+ def text(self, new_text: str) -> None:
513
+ """
514
+ Set the text on this progressbar.
515
+
516
+ :param new_text: A str.
517
+ :return: None.
518
+ """
519
+ if not isinstance(new_text, str):
520
+ raise TypeError(
521
+ f"new_text is not a str! " f"(type passed in: {repr(type(new_text))})"
522
+ )
523
+ self._text = new_text
524
+ self._style.configure(self.style_name, text=self._text)
525
+
372
526
@property
373
527
def enabled(self) -> bool:
374
528
"""
@@ -448,6 +602,24 @@ <h3>Instance variables</h3>
448
602
return self["maximum"]</ code > </ pre >
449
603
</ details >
450
604
</ dd >
605
+ < dt id ="TkZero.Progressbar.Progressbar.text "> < code class ="name "> var < span class ="ident "> text</ span > : str</ code > </ dt >
606
+ < dd >
607
+ < div class ="desc "> < p > Get the text on this progressbar.</ p >
608
+ < p > :return: A str.</ p > </ div >
609
+ < details class ="source ">
610
+ < summary >
611
+ < span > Expand source code</ span >
612
+ </ summary >
613
+ < pre > < code class ="python "> @property
614
+ def text(self) -> str:
615
+ """
616
+ Get the text on this progressbar.
617
+
618
+ :return: A str.
619
+ """
620
+ return self._text</ code > </ pre >
621
+ </ details >
622
+ </ dd >
451
623
< dt id ="TkZero.Progressbar.Progressbar.value "> < code class ="name "> var < span class ="ident "> value</ span > : float</ code > </ dt >
452
624
< dd >
453
625
< div class ="desc "> < p > Get the value on this progress bar.</ p >
@@ -503,6 +675,7 @@ <h4><code><a title="TkZero.Progressbar.Progressbar" href="#TkZero.Progressbar.Pr
503
675
< ul class ="">
504
676
< li > < code > < a title ="TkZero.Progressbar.Progressbar.enabled " href ="#TkZero.Progressbar.Progressbar.enabled "> enabled</ a > </ code > </ li >
505
677
< li > < code > < a title ="TkZero.Progressbar.Progressbar.maximum " href ="#TkZero.Progressbar.Progressbar.maximum "> maximum</ a > </ code > </ li >
678
+ < li > < code > < a title ="TkZero.Progressbar.Progressbar.text " href ="#TkZero.Progressbar.Progressbar.text "> text</ a > </ code > </ li >
506
679
< li > < code > < a title ="TkZero.Progressbar.Progressbar.value " href ="#TkZero.Progressbar.Progressbar.value "> value</ a > </ code > </ li >
507
680
</ ul >
508
681
</ li >
0 commit comments