-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
63 lines (50 loc) · 1.77 KB
/
main.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
from flet import Page, Text, Switch, TextField, ElevatedButton, Text, app, MainAxisAlignment, KeyboardEvent, ScrollMode, ResponsiveRow, Column
from Kernel import flags, UserHandler, SystemCalls
from Kernel import Input_Output as IO
import commands as cmd
async def main(page=Page):
page.horizontal_alignment = "center"
page.vertical_alignment = MainAxisAlignment.SPACE_EVENLY
text = Text()
def on_keyboard(e: KeyboardEvent):
if e.key == 'Enter':
# print("Enter is pressed")
textbox_changed(e)
def textbox_changed(e):
text.value = textbox.value #e.control.value
# print(text.value)
IO.CommandAsk(Module=cmd.CommandList, command=text.value)
page.update_async()
textbox.value = ''
textbox = TextField(label="Input Box")
page.on_keyboard_event = on_keyboard
if flags.EnableIntSoft:
def_text = Text(f"{flags.Default_text} GUI ALPHA")
top_text = Text(SystemCalls.SystemCalls.show_flags(False))
else:
def_text = Text(f'MODE: {flags.MODE}')
top_text = Text('Makro', color='GREEN')
if flags.MODE == '9':
await page.add_async(
# ResponsiveRow(top_text),
ResponsiveRow([Column(col=10, controls=[top_text]),
Column(col=10, controls=[textbox])]
),
# textbox,
text,
def_text,
)
else:
await page.add_async(
textbox,
text,
def_text,
)
def open_window():
app(target=main)
if __name__ == '__main__':
flags.Runtype='gui'
UserHandler.loader(False)
flags.MODE = '9'
# flags.EnableIntSoft = False
app(main)