2020-10-13 13:49:39 +00:00
|
|
|
import time
|
|
|
|
from multiprocessing import Process
|
|
|
|
from tkinter import *
|
|
|
|
from PIL import Image, ImageTk
|
|
|
|
|
2021-02-14 11:03:39 +00:00
|
|
|
from fishy.helper.config import config
|
2020-10-13 13:49:39 +00:00
|
|
|
from fishy.helper import helper
|
|
|
|
|
|
|
|
|
2021-03-29 10:31:12 +00:00
|
|
|
def show(win_loc):
|
2021-02-14 11:03:39 +00:00
|
|
|
dim=(300,200)
|
2020-10-13 13:49:39 +00:00
|
|
|
top = Tk()
|
|
|
|
|
2021-02-14 11:03:39 +00:00
|
|
|
top.overrideredirect(True)
|
|
|
|
top.lift()
|
2020-10-13 13:49:39 +00:00
|
|
|
|
|
|
|
top.title("Loading...")
|
|
|
|
top.resizable(False, False)
|
|
|
|
top.iconbitmap(helper.manifest_file('icon.ico'))
|
|
|
|
|
2021-02-14 11:03:39 +00:00
|
|
|
canvas = Canvas(top, width=dim[0], height=dim[1], bg='white')
|
2020-10-13 13:49:39 +00:00
|
|
|
canvas.pack()
|
2021-02-14 11:03:39 +00:00
|
|
|
top.image = Image.open(helper.manifest_file('fishybot_logo.png')).resize(dim)
|
2020-10-13 13:49:39 +00:00
|
|
|
top.image = ImageTk.PhotoImage(top.image)
|
|
|
|
canvas.create_image(0, 0, anchor=NW, image=top.image)
|
|
|
|
|
2021-02-14 11:03:39 +00:00
|
|
|
# Position splash at the center of the main window
|
2021-03-29 10:31:12 +00:00
|
|
|
|
|
|
|
default_loc = (str(top.winfo_reqwidth())+"+"+str(top.winfo_reqheight())+"+"+"0"+"0")
|
|
|
|
loc = (win_loc or default_loc).split("+")[1:]
|
|
|
|
top.geometry("{}x{}+{}+{}".format(dim[0], dim[1], int(loc[0])+int(dim[0]/2), int(loc[1])+int(dim[1]/2)))
|
2021-02-14 11:03:39 +00:00
|
|
|
|
2020-10-13 13:49:39 +00:00
|
|
|
top.update()
|
|
|
|
time.sleep(3)
|
|
|
|
top.destroy()
|
|
|
|
|
|
|
|
|
|
|
|
def start():
|
2021-03-29 10:31:12 +00:00
|
|
|
Process(target=show, args=(config.get("win_loc"),)).start()
|