-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwafer_module.py
More file actions
38 lines (30 loc) · 909 Bytes
/
wafer_module.py
File metadata and controls
38 lines (30 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
try:
# Python 2
import Tkinter as tk
except ModuleNotFoundError:
# Python 3
import tkinter as tk
class WaferModule(tk.Frame):
def __init__(self, parent, *args, **options):
tk.Frame.__init__(self, parent, *args, **options)
def journal_entry(self, cmdr, system, station, entry, state):
"""
Handle events that are delegated to this module.
"""
pass
def dashboard_entry(self, cmdr, is_beta, entry):
"""
Handle events that are delegated to this module.
"""
pass
def cmdr_data(self, data, is_beta):
"""
Handle events that are delegated to this module.
"""
pass
def update_theme(self):
pass
def inara_notify_location(self, eventData):
pass
def inara_notify_ship(self, eventData):
pass