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.

26 lines
559 B

  1. """
  2. App wide event registry
  3. Everything in the application is communicated via pubsub. These are the events
  4. that tie everything together.
  5. """
  6. import wx
  7. WINDOW_STOP = wx.NewId()
  8. WINDOW_CANCEL = wx.NewId()
  9. WINDOW_CLOSE = wx.NewId()
  10. WINDOW_START = wx.NewId()
  11. WINDOW_RESTART = wx.NewId()
  12. WINDOW_EDIT = wx.NewId()
  13. WINDOW_CHANGE = wx.NewId()
  14. PANEL_CHANGE = wx.NewId()
  15. LIST_BOX = wx.NewId()
  16. CONSOLE_UPDATE = wx.NewId()
  17. EXECUTION_COMPLETE = wx.NewId()
  18. PROGRESS_UPDATE = wx.NewId()
  19. USER_INPUT = wx.NewId()