Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ##############################################################################
- # Quick Menu
- #
- # Экран, входящий в экран save и дающий некоторые полезные функции
- screen q1:
- hbox:
- style_group "quick"
- xalign 1.0
- yalign 1.0
- textbutton _("Назад") action Rollback()
- textbutton _("Сохранить") action ShowMenu('save')
- textbutton _("Настр") action ShowMenu('preferences')
- textbutton _("Пропуск") action Skip()
- textbutton _("Вид") action SetField(persistent, "qm", "q2")
- screen q2:
- hbox:
- style_group "mm"
- xalign 1.0
- yalign 1.0
- textbutton _("Назад") action Rollback()
- textbutton _("Настр") action ShowMenu('preferences')
- textbutton _("Вид") action SetField(persistent, "qm", "q1")
- screen quick_menu:
- if persistent.qm == "q1":
- use q1
- if persistent.qm == "q2":
- use q2
- init -2 python:
- if persistent.qm == None:
- persistent.qm = "q2"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement