mirror of
https://github.com/RedDeadDepresso/KKAFIO.git
synced 2025-12-22 01:10:01 +00:00
39 lines
1.8 KiB
Python
39 lines
1.8 KiB
Python
import customtkinter
|
|
from gui.custom_widgets.ctk_tooltip import CTkToolTip
|
|
from tkinter import filedialog, END
|
|
|
|
class RemoveCharaFrame(customtkinter.CTkFrame):
|
|
def __init__(self, master, linker, config, **kwargs):
|
|
super().__init__(master, **kwargs)
|
|
self.linker = linker
|
|
self.config = config
|
|
self.create_widgets()
|
|
self.bind_to_config()
|
|
|
|
def create_widgets(self):
|
|
self.login_settings_label = customtkinter.CTkLabel(self, text="Remove Chara Settings", font=customtkinter.CTkFont(family="Inter", size=30, weight="bold"))
|
|
self.login_settings_label.grid(row=0, column=0, columnspan =2, sticky="nw", padx=20, pady=20)
|
|
|
|
self.create_downloadpath_widgets()
|
|
self.linker.login = self
|
|
|
|
def create_downloadpath_widgets(self):
|
|
self.downloadpath = customtkinter.CTkLabel(self, text="Input Directory:", font=customtkinter.CTkFont(size=20, underline=True))
|
|
self.downloadpath.grid(row=3, column=0, padx=40, pady=(20, 10), sticky="nw")
|
|
|
|
self.downloadpath_entry = customtkinter.CTkEntry(self, font=customtkinter.CTkFont(family="Inter", size=16))
|
|
self.downloadpath_entry.grid(row=4, column=0, columnspan=2, padx=(60,0), pady=(20, 10), sticky="nsew")
|
|
|
|
self.downloadpath_button = customtkinter.CTkButton(self, width=50, text="Select", command = self.open_folder)
|
|
self.downloadpath_button.grid(row=4, column=2, padx=20, pady=(20, 10), sticky="nsew")
|
|
|
|
def bind_to_config(self):
|
|
self.config.bind(self.downloadpath_entry, ["RemoveChara", "InputPath"])
|
|
|
|
def open_folder(self):
|
|
folderpath = filedialog.askdirectory()
|
|
if folderpath != "":
|
|
self.downloadpath_entry.delete(0, END)
|
|
self.downloadpath_entry.insert(0, folderpath)
|
|
self.config.save_to_json(["RemoveChara", "InputPath"])
|