52 lines
1.5 KiB
Plaintext
52 lines
1.5 KiB
Plaintext
#:kivy 2.3.1
|
|
|
|
<TimerScreen>:
|
|
FloatLayout:
|
|
# Label для названия таймера
|
|
Label:
|
|
id: title_label
|
|
size_hint: None, None
|
|
pos_hint: {'center_x': 0.3, 'center_y': 0.7}
|
|
|
|
# Label для типа таймера
|
|
Label:
|
|
id: type_timer_label
|
|
text: 'Помидор'
|
|
size_hint: None, None
|
|
pos_hint: {'center_x': 0.7, 'center_y': 0.7}
|
|
|
|
# Кнопка "Старт"
|
|
Button:
|
|
text: 'Старт'
|
|
size_hint: None, None
|
|
height: 40
|
|
width: 100
|
|
pos_hint: {'center_x': 0.3, 'center_y': 0.5}
|
|
on_release: root.start_timer(self)
|
|
|
|
# Кнопка "Пауза"
|
|
Button:
|
|
text: 'Пауза'
|
|
size_hint: None, None
|
|
height: 40
|
|
width: 100
|
|
pos_hint: {'center_x': 0.5, 'center_y': 0.5}
|
|
on_release: root.pause_timer(self)
|
|
|
|
# Кнопка "Стоп"
|
|
Button:
|
|
id: stop_button
|
|
text: 'Стоп'
|
|
opacity: 0
|
|
disabled: True
|
|
size_hint: None, None
|
|
height: 40
|
|
width: 100
|
|
pos_hint: {'center_x': 0.7, 'center_y': 0.5}
|
|
on_release: root.stop_timer(self)
|
|
|
|
# Label для отображения времени
|
|
Label:
|
|
id: time_label
|
|
size_hint: None, None
|
|
pos_hint: {'center_x': 0.5, 'center_y': 0.6} |