From 490f7d703f516120ec52e53aefb7f9f4759260d2 Mon Sep 17 00:00:00 2001 From: Martin Putzlocher Date: Wed, 1 Dec 2021 13:02:30 +0100 Subject: [PATCH] =?UTF-8?q?Quellcode=20gek=C3=BCrzt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tk_first_steps/traffic_light_simple_mvc.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tk_first_steps/traffic_light_simple_mvc.py b/tk_first_steps/traffic_light_simple_mvc.py index af5b604..26fec9d 100644 --- a/tk_first_steps/traffic_light_simple_mvc.py +++ b/tk_first_steps/traffic_light_simple_mvc.py @@ -1,12 +1,10 @@ #!/usr/bin/env python3 - from tkinter import * from tkinter import ttk # -------------------------- # Model # -------------------------- - class TLight: def __init__(self): self.colors = {0: "red", 1: "yellow", 2: "green", 3: "yellow"} @@ -27,7 +25,6 @@ class TLight: # -------------------------- # Controller # -------------------------- - class TLightController: def __init__(self, app): self.app = app @@ -40,12 +37,10 @@ class TLightController: def update_view(self): color = self.tlight.get_color() self.app.change_light_display(color) - # -------------------------- # View / Main Application # -------------------------- - class TLightApp(Tk): def __init__(self): super().__init__() @@ -63,7 +58,7 @@ class TLightApp(Tk): button_switch = ttk.Button(mainframe, text="Schalte um", command=self.controller.change_light) button_switch.grid(column=0, row=0, sticky=W) - light_canvas = Canvas(mainframe, width=50, height=50, background="black") + light_canvas = Canvas(mainframe, width=50, height=50, background="black") light_canvas.grid(column=1, row=0, sticky=W) self.lc = light_canvas