The next generation branch has been added

This commit is contained in:
2014-11-12 20:41:29 -06:00
parent 75f494fc5a
commit f54d9394b7
96 changed files with 2629 additions and 4517 deletions

View File

@@ -0,0 +1,3 @@
import platform
if platform.system() == "Windows":
from wxUtils import *

View File

@@ -0,0 +1,17 @@
import wx
# Code responses for WX dialogs.
OK = wx.ID_OK
CANCEL = wx.ID_CANCEL
CLOSE = wx.ID_CLOSE
YES = wx.ID_YES
NO = wx.ID_NO
#events
CLOSE_EVENT = wx.EVT_CLOSE
def exit_application():
wx.GetApp().ExitMainLoop()
def connect_event(parent, event, func):
return getattr(parent, "Bind")(event, func)