Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from guizero import App, Text, TextBox, PushButton, Box, Combo, CheckBox, Slider
- app = App(title="textzero", bg = "gold")
- def open_file():
- with open(file_name.value, "r") as f:
- editor.value = f.read()
- def save_file():
- with open(file_name.value, "w") as f:
- f.write(editor.value)
- def change_font():
- editor.font = font.value
- def change_text_size():
- editor.text_size = size.value
- editor.resize(1, 1)
- editor.resize("fill", "fill")
- def set_colour():
- text_b.text_color = font_colour.value
- file_controls = Box(app, align="top", width="fill", border=True)
- file_name = TextBox(file_controls, text="text_file.txt", width=50, align="left")
- save_button = PushButton(file_controls, text="Save", command=save_file, align="right")
- open_button = PushButton(file_controls, text="Open", command=open_file, align="right")
- editor = TextBox(app, multiline=True, height="fill", width="fill")
- colours = ["red",
- "black",
- "green",
- "orange"]
- preferences_controls = Box(app, align="bottom", width="fill", border=True)
- font = Combo(preferences_controls, options=["courier", "times new roman", "verdana"], align="left", command=change_font)
- size = Slider(preferences_controls, align="left", start = 8, end = 42, command=change_text_size)
- font_colour = Combo(preferences_controls, align = 'left', options = colours, command = set_colour)
- app.display()
Advertisement
Add Comment
Please, Sign In to add comment