This repository has been archived on 2023-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
WebPicDownloader/view/MainWindow.py

110 lines
3.2 KiB
Python
Raw Normal View History

import tkinter as tk
2022-08-30 21:12:04 +02:00
from controller.MainController import MainController
class MainWindow(tk.Tk):
"""
2022-08-30 21:12:04 +02:00
View - MainWindow
dec...
2022-08-30 21:12:04 +02:00
@author Jérémi Nihart / EndMove
@link https://git.endmove.eu/EndMove/WebPicDownloader
@version 1.0.0
@since 2022-08-30
"""
# Variables
2022-08-30 13:51:50 +02:00
__controller: MainController = None
__views: dict = None
2022-08-31 12:07:43 +02:00
__frame_id: int = None
# Constructor
def __init__(self, controller: MainController) -> None:
super().__init__()
2022-08-30 13:51:50 +02:00
# Init view repository
self.__views = {}
2022-08-31 12:07:43 +02:00
# Save and setup main controller
self.__controller = controller
controller.set_view(self)
# Init view components & more
2022-08-31 12:07:43 +02:00
self.__init_window()
self.__init_top_menu()
self.__init_bind_protocol()
2022-08-31 12:07:43 +02:00
# START Internal methods
def __init_window(self) -> None:
2022-08-31 12:07:43 +02:00
"""
[internal function]
=> Initialize window parameters
"""
2022-08-30 13:51:50 +02:00
self.title('Tkinter app')
2022-08-31 12:07:43 +02:00
# self.geometry('450x250')
2022-08-30 13:51:50 +02:00
self.resizable(False, False)
2022-08-30 21:12:04 +02:00
self.config(bg='#f7ef38')
2022-08-31 12:07:43 +02:00
def __init_top_menu(self) -> None:
2022-08-31 12:07:43 +02:00
"""
[internal function]
=> Initialize top menu of the window.
"""
main_menu = tk.Menu(self)
2022-08-30 21:12:04 +02:00
2022-08-31 12:07:43 +02:00
col1_menu = tk.Menu(main_menu, tearoff=0)
col1_menu.add_command(label="Open folder", command=self.__controller.on_open_folder)
2022-08-31 12:07:43 +02:00
col1_menu.add_separator()
col1_menu.add_command(label="Quit", command=self.__controller.on_quite)
2022-08-31 12:07:43 +02:00
main_menu.add_cascade(label="File", menu=col1_menu)
2022-08-31 12:07:43 +02:00
col2_menu = tk.Menu(main_menu, tearoff=0)
col2_menu.add_command(label="Check for update", command=self.__controller.on_check_for_update)
col2_menu.add_command(label="About", command=self.__controller.on_about)
2022-08-31 12:07:43 +02:00
main_menu.add_cascade(label="Help", menu=col2_menu)
self.config(menu=main_menu)
def __init_bind_protocol(self) -> None:
"""
[internal function]
=> Initialize the function bindding on events of the main window.
"""
self.protocol("WM_DELETE_WINDOW", self.__controller.on_quite)
2022-08-31 12:07:43 +02:00
# END Internal methods
2022-08-30 21:12:04 +02:00
# START App methods
2022-08-30 13:51:50 +02:00
def add_view(self, frame, view):
"""
[function for app]
:frame: -> the frame id of the view to add.
"""
self.__views[frame] = view
2022-08-30 21:12:04 +02:00
# END App methods
2022-08-30 21:12:04 +02:00
# START Controller methods
def show_frame(self, frame):
2022-08-30 13:51:50 +02:00
"""
[function for app & controller]
2022-08-31 12:07:43 +02:00
=> Allows to display the selected frame provided that it
has been previously added to the frame dictionary.
2022-08-30 13:51:50 +02:00
:frame: -> the frame if of the view to display.
"""
2022-08-31 12:07:43 +02:00
if self.__views.get(frame):
if self.__frame_id:
self.__views.get(self.__frame_id).pack_forget()
self.__views.get(frame).pack(fill=tk.BOTH, expand=False)
self.__frame_id = frame
2022-08-30 13:51:50 +02:00
else:
2022-08-30 21:12:04 +02:00
raise ValueError("Unable to find the requested Frame")
def close_window(self) -> None:
"""
[function for app & controller]
TODO
"""
self.destroy()
2022-08-31 12:07:43 +02:00
# END Controller methods