mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
452 B
20 lines
452 B
"""
|
|
App wide event registry
|
|
|
|
Everything in the application is communitcated via pubsub. These are the events that
|
|
tie everythign together.
|
|
"""
|
|
import wx
|
|
|
|
new_id = lambda: str(wx.NewId())
|
|
|
|
WINDOW_STOP = new_id()
|
|
WINDOW_CANCEL = new_id()
|
|
WINDOW_CLOSE = new_id()
|
|
WINDOW_START = new_id()
|
|
WINDOW_RESTART = new_id()
|
|
WINDOW_EDIT = new_id()
|
|
|
|
WINDOW_CHANGE = new_id()
|
|
PANEL_CHANGE = new_id()
|
|
LIST_BOX = new_id()
|