mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
cd1b2dd8f6
- shifted config into a toplevel - logs before starting update
49 lines
1.6 KiB
Python
49 lines
1.6 KiB
Python
import typing
|
|
|
|
from fishy import web
|
|
from fishy.gui.notification import _give_notification_link
|
|
|
|
from tkinter import *
|
|
from tkinter.ttk import *
|
|
|
|
from fishy.helper.popup import PopUp
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from fishy.gui import GUI
|
|
|
|
|
|
def start_semifisher_config(gui: 'GUI'):
|
|
def save():
|
|
gui._config.set("action_key", action_key_entry.get(), False)
|
|
gui._config.set("borderless", borderless.instate(['selected']), False)
|
|
gui._config.save_config()
|
|
|
|
top = PopUp(save, gui._root, background=gui._root["background"])
|
|
controls_frame = Frame(top)
|
|
top.title("Config")
|
|
|
|
Label(controls_frame, text="Notification:").grid(row=0, column=0)
|
|
|
|
gui._notify = IntVar(0)
|
|
gui._notify_check = Checkbutton(controls_frame, command=lambda: _give_notification_link(gui),
|
|
variable=gui._notify)
|
|
gui._notify_check.grid(row=0, column=1)
|
|
gui._notify_check['state'] = DISABLED
|
|
is_subbed = web.is_subbed(gui._config.get('uid'))
|
|
if is_subbed[1]:
|
|
gui._notify_check['state'] = NORMAL
|
|
gui._notify.set(is_subbed[0])
|
|
|
|
Label(controls_frame, text="Fullscreen: ").grid(row=1, column=0, pady=(5, 5))
|
|
borderless = Checkbutton(controls_frame, var=BooleanVar(value=gui._config.get("borderless")))
|
|
borderless.grid(row=1, column=1)
|
|
|
|
Label(controls_frame, text="Action Key:").grid(row=2, column=0)
|
|
action_key_entry = Entry(controls_frame, justify=CENTER)
|
|
action_key_entry.grid(row=2, column=1)
|
|
action_key_entry.insert(0, gui._config.get("action_key", "e"))
|
|
|
|
controls_frame.pack(padx=(5, 5), pady=(5, 5))
|
|
top.start()
|
|
|