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/controller/MainController.py

27 lines
470 B
Python

from controller.Frames import Frames
class MainController:
"""
Controller - MainController
desc...
"""
# Variables
view = None
# Constructor
def __init__(self) -> None:
pass
def change_frame(self, frame: Frames.value) -> None:
"""
[function for controller]
"""
pass
def set_view(self, view) -> None:
"""
[function for view]
"""
self.view = view