-
Notifications
You must be signed in to change notification settings - Fork 19
/
notebook_tools.py
952 lines (835 loc) · 35.2 KB
/
notebook_tools.py
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
# Author: Acer Zhang
# Datetime: 2021/9/16
# Copyright belongs to the author.
# Please indicate the source for reprinting.
from typing import List, Dict, Tuple
from collections import OrderedDict
import tkinter
from tkinter import ttk
from tkinter import filedialog
from qgui.manager import *
from qgui.base_tools import ConcurrencyModeFlag, check_callable, ArgInfo, select_var_dtype, BaseTool, make_anchor, \
make_side
RUN_ICON = os.path.join(ICON_PATH, "play_w.png")
LEFT_PAD_LEN = 10
LABEL_WIDTH = 12
INPUT_BOX_LEN = 70
DEFAULT_PAD = 5
class BaseNotebookTool(BaseTool):
"""
基础Notebook工具集,提供基础异步Callback
1. 写Build,记得继承才会有self.master,继承时候传**kwargs
2. 若需返回信息,请重写get_info方法->ArgInfo
3. 如绑定func,需要封装Callback
"""
def __init__(self,
bind_func=None,
name: str = None,
style: str = "primary",
tab_index: int = 0,
async_run: bool = False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(bind_func=bind_func,
name=name,
style=style,
async_run=async_run,
concurrency_mode=concurrency_mode)
self.tab_index = tab_index
self.frame = frame
class BaseChooseFileTextButton(BaseNotebookTool):
def __init__(self,
bind_func=None,
name: str = None,
label_info: str = "目标文件路径",
entry_info: str = "请选择文件路径",
button_info: str = "选 择 文 件 ",
style: str = "primary",
tab_index: int = 0,
async_run: bool = False,
mode="file",
frame: tkinter.Frame = None):
super().__init__(bind_func, name=name, style=style, tab_index=tab_index, async_run=async_run, frame=frame)
self.label_info = label_info
self.button_info = button_info
self.name = name
self.mode = mode
self.entry_var = tkinter.StringVar(value=entry_info)
def build(self, **kwargs) -> tkinter.Frame:
super().build(**kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=2)
label = ttk.Label(frame,
text=self.label_info,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
entry = ttk.Entry(frame,
style=self.style + "info.TEntry",
textvariable=self.entry_var)
entry.pack(side="left", fill="x", expand="yes", padx=5, pady=2)
if self.mode == "file":
if not hasattr(self, "filetypes"):
self.filetypes = [('All Files', '*')]
def render():
file_path = filedialog.askopenfilename(title="选择文件",
filetypes=self.filetypes)
if file_path:
self.entry_var.set(file_path)
else:
def render():
file_path = filedialog.askdirectory(title="选择文件夹")
if file_path:
self.entry_var.set(file_path)
command = self._callback(self.bind_func, start_func=render) if self.bind_func else render
button = ttk.Button(frame,
text=self.button_info,
style=self.style + "TButton",
command=command,
width=12)
button.pack(side="right")
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo(name=field, set_func=self.entry_var.set, get_func=self.entry_var.get)
return arg_info
class ChooseFileTextButton(BaseChooseFileTextButton):
def __init__(self,
bind_func=None,
name: str = None,
label_info: str = "目标文件路径",
entry_info: str = "请选择文件路径",
button_info: str = "选 择 文 件",
filetypes: bool = None,
style: str = "primary",
tab_index: int = 0,
async_run: bool = False,
frame: tkinter.Frame = None):
self.filetypes = [('All Files', '*')] if filetypes is None else filetypes
super().__init__(bind_func=bind_func,
name=name,
label_info=label_info,
entry_info=entry_info,
button_info=button_info,
style=style,
tab_index=tab_index,
async_run=async_run,
frame=frame)
class ChooseDirTextButton(BaseChooseFileTextButton):
def __init__(self,
bind_func=None,
name=None,
label_info: str = "目标文件夹路径",
entry_info: str = "请选择文件夹路径",
button_info: str = "选择文件夹",
style: str = "primary",
tab_index: int = 0,
async_run: bool = False,
frame: tkinter.Frame = None):
super().__init__(bind_func=bind_func,
name=name,
label_info=label_info,
entry_info=entry_info,
button_info=button_info,
style=style,
tab_index=tab_index,
async_run=async_run,
mode="dir",
frame=frame)
class BaseButton(BaseNotebookTool):
def __init__(self,
bind_func,
name: str = None,
text: str = "开始执行",
icon: str = None,
checked_text: str = None,
async_run: bool = True,
style: str = "primary",
tab_index: int = 0,
concurrency_mode: bool = False,
side: str = RIGHT,
add_width=8,
frame: tkinter.Frame = None):
super().__init__(bind_func,
name=name,
style=style,
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
frame=frame)
self.text = text
self.checked_text = checked_text
self.add_width = add_width
self.side = side
self.icon = icon
def build(self, **kwargs) -> tkinter.Frame:
super().build(**kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5)
if self.icon:
self.icon = tkinter.PhotoImage(file=self.icon)
else:
self.icon = None
self.text_var = tkinter.StringVar(frame, value=self.text)
def click_btn():
self.btn.configure(style=self.style + "TButton")
self.btn.configure(state="disable")
if self.checked_text:
self.text_var.set(self.checked_text)
def done_btn():
self.btn.configure(style=self.style + "TButton")
self.btn.configure(state="normal")
self.text_var.set(self.text)
if not self.bind_func:
# 不知道为啥必须要有,不然文字不会显示,会头Debug一下
self.bind_func = lambda x: None
self.btn = ttk.Button(frame,
textvariable=self.text_var,
image=self.icon,
width=len(self.text) + self.add_width,
compound='left',
command=self._callback(self.bind_func, click_btn, done_btn),
style=self.style + "TButton")
self.btn.pack(side=make_side(self.side), padx=5, pady=5)
return frame
class RunButton(BaseButton):
def __init__(self,
bind_func,
name: str = None,
text: str = "开始执行",
checked_text: str = "正在执行",
async_run: bool = True,
style: str = "success",
tab_index: int = 0,
concurrency_mode: bool = False,
side: str = RIGHT,
frame: tkinter.Frame = None):
super().__init__(bind_func=bind_func,
name=name,
text=text,
checked_text=checked_text,
async_run=async_run,
style=style,
tab_index=tab_index,
concurrency_mode=concurrency_mode,
add_width=6,
icon=RUN_ICON,
side=side,
frame=frame)
class InputBox(BaseNotebookTool):
def __init__(self,
name: str = None,
default: str = "请在此输入",
label_info: str = "输入信息",
style: str = "primary",
tab_index=0,
frame: tkinter.Frame = None):
super().__init__(name=name,
style=style,
tab_index=tab_index,
frame=frame)
self.input_vars = tkinter.StringVar(value=default)
self.label_info = label_info
def build(self, **kwargs):
super().build(**kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5)
label = ttk.Label(frame,
text=self.label_info,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
entry = ttk.Entry(frame,
style=self.style + "info.TEntry",
textvariable=self.input_vars,
width=INPUT_BOX_LEN)
entry.pack(side="left", fill="x", padx=5, pady=2)
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo(name=field, set_func=self.input_vars.set, get_func=self.input_vars.get)
return arg_info
class Combobox(BaseNotebookTool):
def __init__(self,
bind_func=None,
name=None,
title: str = "请下拉选择",
options: List[str] = None,
style="custom",
tab_index=0,
frame: tkinter.Frame = None):
super().__init__(bind_func=bind_func,
name=name,
style=style,
tab_index=tab_index,
frame=frame)
self.title = title
self.options = options
self.options = options if options else ["--请选择--"]
def build(self, **kwargs):
super().build(**kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5)
label = ttk.Label(frame,
text=self.title,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
self.comb = ttk.Combobox(frame,
style=self.style + "TCombobox",
values=self.options)
self.comb.current(0)
if self.bind_func:
self.comb.bind('<<ComboboxSelected>>', self._callback(self.bind_func))
self.comb.pack(side="left", padx=5, pady=2)
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo(name=field, set_func=self.comb.set, get_func=self.comb.get)
return arg_info
class Slider(BaseNotebookTool):
def __init__(self,
name=None,
title: str = "请拖动滑块",
default: int = 0,
min_size: int = 0,
max_size: int = 100,
dtype=int,
style: str = "primary",
tab_index: int = 0,
frame: tkinter.Frame = None):
super().__init__(name=name,
style=style,
tab_index=tab_index,
frame=frame)
self.title = title
self.default = default
self.min_size = min_size
self.max_size = max_size
self.dtype = dtype
def slider_var_trace(self, *args):
v = self.scale.get()
self.value_var.set(f"当前值 {self.dtype(v)}")
def build(self, **kwargs):
super().build(**kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5)
self.slider_var = select_var_dtype(self.dtype)(frame, value=self.default)
self.value_var = tkinter.StringVar(frame, value=f"当前值 {self.default}")
self.slider_var.trace("w", self.slider_var_trace)
label = ttk.Label(frame,
text=self.title,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
self.scale = ttk.Scale(frame,
from_=self.min_size,
to=self.max_size,
value=self.default,
variable=self.slider_var)
# ToDo ttk 的Bug
# self.scale.configure(style="info.TSlider")
self.scale.pack(side="left", padx=5, fill="x", expand="yes")
self.value = ttk.Label(frame,
textvariable=self.value_var,
style="TLabel",
width=LABEL_WIDTH)
self.value.pack(side="right")
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo(name=field, set_func=self.scale.set, get_func=self.scale.get)
return arg_info
class BaseCheckButton(BaseNotebookTool):
def __init__(self,
options: str or Tuple[str, bool] or List[Tuple[str, bool]],
bind_func=None,
name=None,
title="请选择",
style="primary",
button_style="TCheckbutton",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
mode=None,
frame: tkinter.Frame = None):
super().__init__(bind_func=bind_func,
name=name,
style=style,
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
frame=frame)
self.title = title
self.mode = mode
if isinstance(options, str):
self.options = {options: 0}
if isinstance(options, tuple):
self.options = {options[0]: 1 if options[1] else 0}
if isinstance(options, list):
self.options = OrderedDict()
if len(options[0]) != 2:
raise TypeError(f"{self.__class__.__name__}的options参数需要为str or List[Tuple[str, bool]]格式\n"
f"Example:\n"
f"'选择框1' or [('选择1', 0), ('选择2', 1), ('选择3', 0)]")
for option in options:
self.options[option[0]] = 1 if option[1] else 0
self.button_style = button_style
def build(self, *args, **kwargs):
super().build(*args, **kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5)
label = ttk.Label(frame,
text=self.title,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
self.value_vars = dict()
for option in self.options:
self.value_vars[option] = tkinter.StringVar(frame, value=self.options[option])
if self.mode == "ToolButton":
pad_x = 0
else:
pad_x = 5
ttk.Checkbutton(frame,
text=option,
style=self.style + self.button_style,
variable=self.value_vars[option],
command=self._callback(self.bind_func)).pack(side="left", padx=pad_x)
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo()
for v in self.value_vars:
arg_info += ArgInfo(name=field + "-" + v, set_func=self.value_vars[v].set, get_func=self.value_vars[v].get)
return arg_info
class CheckButton(BaseCheckButton):
def __init__(self,
options: str or Tuple[str] or List[Tuple[str, bool]],
bind_func=None,
name=None,
title="请选择",
style="primary",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(options=options,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="TCheckbutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
frame=frame)
class CheckToolButton(BaseCheckButton):
def __init__(self,
options: str or Tuple[str] or List[Tuple[str, bool]],
bind_func=None,
name=None,
title="请选择",
style="info",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(options=options,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="Toolbutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
mode="ToolButton",
frame=frame)
class CheckObviousToolButton(BaseCheckButton):
def __init__(self,
options: str or Tuple[str] or List[Tuple[str, bool]],
bind_func=None,
name=None,
title="请选择",
style="primary",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(options=options,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="Outline.Toolbutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
mode="ToolButton",
frame=frame)
class ToggleButton(BaseCheckButton):
def __init__(self,
options: str or Tuple[str],
bind_func=None,
name=None,
title="请选择",
style="primary",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
assert not isinstance(options, list), "开关按钮仅有开和关两个选项,请传入单个选项"
super().__init__(options=options,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="Roundtoggle.Toolbutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
frame=frame)
class BaseRadioButton(BaseNotebookTool):
def __init__(self,
options: str or List[str],
default: str = None,
bind_func=None,
name=None,
title="请选择",
style="primary",
button_style="TRadiobutton",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
mode=None,
frame: tkinter.Frame = None):
super().__init__(bind_func=bind_func,
name=name,
style=style,
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
frame=frame)
self.title = title
self.mode = mode
self.options = [options] if isinstance(options, str) else options
self.default = default if default else options[0]
self.button_style = button_style
def build(self, *args, **kwargs):
super().build(*args, **kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5)
label = ttk.Label(frame,
text=self.title,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
self.value_var = tkinter.StringVar(frame, value=self.options[0])
for option in self.options:
if self.mode == "ToolButton":
pad_x = 0
else:
pad_x = 5
ttk.Radiobutton(frame,
text=option,
style=self.style + self.button_style,
variable=self.value_var,
value=option,
command=self._callback(self.bind_func)).pack(side="left", padx=pad_x)
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo(name=field, set_func=self.value_var.set, get_func=self.value_var.get)
return arg_info
class RadioButton(BaseRadioButton):
def __init__(self,
options: str or List[str],
default: str = None,
bind_func=None,
name=None,
title="请选择",
style="primary",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(options=options,
default=default,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="TRadiobutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
mode=None,
frame=frame)
class RadioToolButton(BaseRadioButton):
def __init__(self,
options: str or List[str],
default: str = None,
bind_func=None,
name=None,
title="请选择",
style="info",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(options=options,
default=default,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="Toolbutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
mode="ToolButton",
frame=frame)
class RadioObviousToolButton(BaseRadioButton):
def __init__(self,
options: str or List[str],
default: str = None,
bind_func=None,
name=None,
title="请选择",
style="primary",
tab_index=0,
async_run=False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(options=options,
default=default,
bind_func=bind_func,
name=name,
title=title,
style=style,
button_style="Outline.Toolbutton",
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
mode="ToolButton",
frame=frame)
class Progressbar(BaseNotebookTool):
def __init__(self,
title: str = "进度条",
default: int = 0,
max_size: int = 100,
name: str = None,
style: str = "primary",
tab_index: int = 0,
async_run: bool = False,
concurrency_mode=ConcurrencyModeFlag.SAFE_CONCURRENCY_MODE_FLAG,
frame: tkinter.Frame = None):
super().__init__(name=name,
style=style,
tab_index=tab_index,
async_run=async_run,
concurrency_mode=concurrency_mode,
frame=frame)
self.title = title
self.default_value = default
self.max_size = max_size
def progressbar_var_trace(self, *args):
v = self.progressbar_var.get()
self.value_var.set(f"进度 {v:.2f}%")
def build(self, *args, **kwargs):
super().build(*args, **kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master, style="TFrame")
frame.pack(side="top", fill="x", padx=5, pady=5, expand="yes")
self.progressbar_var = tkinter.IntVar(frame, value=self.default_value)
self.value_var = tkinter.StringVar(frame, value=f"进度 {self.default_value:.2f}%")
self.progressbar_var.trace("w", self.progressbar_var_trace)
label = ttk.Label(frame,
text=self.title,
style="TLabel",
width=LABEL_WIDTH)
label.pack(side="left")
progressbar = ttk.Progressbar(frame,
variable=self.progressbar_var,
style=self.style + "Striped.Horizontal.TProgressbar")
progressbar.pack(side="left", fill="x", expand="yes", padx=5, pady=2)
self.value = ttk.Label(frame,
textvariable=self.value_var,
style="TLabel",
width=LABEL_WIDTH)
self.value.pack(side="left")
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
arg_info = ArgInfo(name=field, set_func=self.progressbar_var.set, get_func=self.progressbar_var.get)
return arg_info
class BaseCombine(BaseNotebookTool):
def __init__(self,
tools: BaseNotebookTool or List[BaseNotebookTool],
side=HORIZONTAL,
title: str = None,
text: str = None,
style: str = None,
tab_index: int = None,
frame: tkinter.Frame = None):
super().__init__(tab_index=tab_index, style=style, frame=frame)
self.side = "top" if side == HORIZONTAL else "left"
self.title = title
self.text = text
self.tools = tools if isinstance(tools, list) else [tools]
self.tab_index = tab_index if tab_index else self.tools[0].tab_index
for tool_id in range(len(self.tools)):
self.tools[tool_id].tab_index = self.tab_index
def get_arg_info(self) -> ArgInfo:
local_info = ArgInfo()
for tool_id in range(len(self.tools)):
local_info += self.tools[tool_id].get_arg_info()
return local_info
class BaseFrameCombine(BaseCombine):
def build(self, *args, **kwargs):
super().build(self, *args, **kwargs)
if self.frame:
frame = self.frame
else:
style_mode = "TLabelframe" if self.title else "TFrame"
if self.title:
frame = ttk.LabelFrame(self.master, text=self.title, style=self.style + style_mode)
else:
frame = ttk.Frame(self.master, text=self.title, style=self.style + style_mode)
frame.pack(side="left", anchor="nw", fill="both", expand="yes", padx=DEFAULT_PAD, pady=DEFAULT_PAD)
if self.text:
label = ttk.Label(frame,
text=self.text,
style="TLabel")
label.pack(side="top", anchor="nw", padx=5)
for tool in self.tools:
kwargs["master"] = frame
tool.build(*args, **kwargs)
return frame
class HorizontalFrameCombine(BaseFrameCombine):
def __init__(self,
tools: BaseNotebookTool or List[BaseNotebookTool],
title=None,
style: str = None,
text: str = None,
tab_index: int = 0,
frame: tkinter.Frame = None):
super().__init__(tools=tools,
side=HORIZONTAL,
title=title,
style=style,
text=text,
tab_index=tab_index,
frame=frame)
class VerticalFrameCombine(BaseFrameCombine):
def __init__(self,
tools: BaseNotebookTool or List[BaseNotebookTool],
title=None,
style: str = None,
text: str = None,
tab_index: int = 0,
frame: tkinter.Frame = None):
super().__init__(tools=tools,
side=VERTICAL,
title=title,
style=style,
text=text,
tab_index=tab_index,
frame=frame)
class HorizontalToolsCombine(BaseCombine):
def __init__(self,
tools: BaseNotebookTool or List[BaseNotebookTool],
title=None,
style: str = None,
text: str = None,
tab_index: int = None,
frame: tkinter.Frame = None):
super().__init__(tools=tools,
side=HORIZONTAL,
title=title,
style=style,
text=text,
tab_index=tab_index,
frame=frame)
def build(self, *args, **kwargs):
super().build(self, *args, **kwargs)
style_mode = "TLabelframe" if self.title else "TFrame"
if self.title:
frame = ttk.LabelFrame(self.master, text=self.title, style=self.style + style_mode)
else:
frame = ttk.Frame(self.master, style=self.style + style_mode)
frame.pack(side="top", fill="x", padx=DEFAULT_PAD, pady=DEFAULT_PAD)
if self.text:
label = ttk.Label(frame,
text=self.text,
style="TLabel")
label.pack(side="top", anchor="nw", padx=DEFAULT_PAD)
for tool in self.tools:
kwargs["master"] = self.frame
tool.frame = frame
tool.build(*args, **kwargs)
return frame
class Label(BaseNotebookTool):
def __init__(self,
name: str = None,
text: str = None,
title: str = None,
alignment: str = LEFT + TOP,
style: str = "primary",
tab_index: int = 0,
frame: tkinter.Frame = None):
super(Label, self).__init__(name=name,
style=style,
tab_index=tab_index,
frame=frame)
self.text = text
self.title = title
self.alignment = alignment
self.label_var = tkinter.StringVar(value=self.text)
def build(self, *args, **kwargs) -> tkinter.Frame:
super(Label, self).build(*args, **kwargs)
if self.frame:
frame = self.frame
else:
frame = ttk.Frame(self.master)
frame.pack(side="top", fill="both", padx=DEFAULT_PAD, pady=DEFAULT_PAD)
title = ttk.Label(frame,
text=self.title,
style="TLabel",
width=LABEL_WIDTH)
title.pack(side="left")
label = ttk.Label(frame,
text=self.text,
textvariable=self.label_var,
style="TLabel")
# make_anchor(self.alignment)
label.pack(anchor=make_anchor(self.alignment), padx=DEFAULT_PAD)
return frame
def get_arg_info(self) -> ArgInfo:
field = self.name if self.name else self.__class__.__name__
local_info = ArgInfo(field, set_func=self.label_var.set, get_func=self.label_var.get)
return local_info