blob: 5737ab62295278df69673c28155c1871cfd2fa4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import tkinter as tk
from tkinter import ttk
from .tabs import *
class PlayoffGUI(tk.Tk):
def __init__(self):
tk.Tk.__init__(self)
self.tabs = {}
def run(self):
self.notebook = ttk.Notebook(self)
self.notebook.pack(fill=tk.BOTH, expand=True)
for tab in tabs.__all__:
self.tabs[tab] = globals()[tab](self.notebook)
self.notebook.add(self.tabs[tab], text=self.tabs[tab].title)
self.mainloop()
def getDbConfig(self):
return self.tabs['NetworkTab'].getDB()
def getTeams(self):
return self.tabs['TeamsTab'].getTeams()
|