-
Notifications
You must be signed in to change notification settings - Fork 0
/
sortergui.kv
105 lines (82 loc) · 2.3 KB
/
sortergui.kv
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
<MainScreen>:
orientation: "vertical"
padding: 10
fileSelector: fileSelector
ponderationInput: ponderationInput
transposeInput: transposeInput
thresholdInput: thresholdInput
alternativeThresholdInput: alternativeThresholdInput
alternativeReverseInput: alternativeReverseInput
maxChunkSizeRangeInput: maxChunkSizeRangeInput
threadsInput: threadsInput
# nameInput: nameInput
progressBar: progressBar
Label:
size_hint_y: 0.1
text: "Sélectionnez un ou plusieurs fichiers :"
FileChooserListView:
id: fileSelector
size_hint_y: 0.2
multiselect: True
Label:
size_hint_y: 0.1
text: "Paramétrez les options de génération :"
GridLayout:
size_hint_y: 0.3
cols: 2
Label:
text: "Pondération :"
TextInput:
id: ponderationInput
multiline: False
text: "all"
Label:
text: "Transposition verticale :"
CheckBox:
id: transposeInput
Label:
text: "Seuil :"
TextInput:
id:thresholdInput
multiline: False
text: "200"
input_filter: 'int'
Label:
text: "Seuil de détection alternatif :"
CheckBox:
id: alternativeThresholdInput
Label:
text: "Inversion alternative des tronçons :"
CheckBox:
id: alternativeReverseInput
Label:
text: "Intervalle de la taille de tronçon maximale :"
TextInput:
id:maxChunkSizeRangeInput
multiline: False
text: "None"
Label:
text: "Nombre de threads :"
TextInput:
id:threadsInput
multiline: False
text: "8"
input_filter: 'int'
# Label:
# text: "Nom du rendu :"
#
# TextInput:
# id: nameInput
# multiline: False
# text: ""
# hint_text: "Vierge: nom d'entrée"
ProgressBar:
id: progressBar
size_hint_y: (0.1)
max: 100
Button:
size_hint: (0.5, 0.1)
text: "LANCER LE CALCUL"
font_size: 16
pos_hint: {'right':0.75}
on_press: root.compute()