Can now login to SSO from pyfa, which completes basic integration. This is very crude, will be refined.

This commit is contained in:
blitzmann
2015-10-19 20:09:39 -04:00
parent 972df6cad3
commit 8151debfe1
4 changed files with 61 additions and 4 deletions

View File

@@ -43,6 +43,7 @@ class MainMenuBar(wx.MenuBar):
self.revertCharId = wx.NewId()
self.eveFittingsId = wx.NewId()
self.exportToEveId = wx.NewId()
self.ssoLoginId = wx.NewId()
self.mainFrame = gui.mainFrame.MainFrame.getInstance()
@@ -108,6 +109,7 @@ class MainMenuBar(wx.MenuBar):
# CREST Menu
crestMenu = wx.Menu()
self.Append(crestMenu, "&CREST")
crestMenu.Append(self.ssoLoginId, "Login To EVE")
crestMenu.Append(self.eveFittingsId, "Browse EVE Fittings")
crestMenu.Append(self.exportToEveId, "Export To EVE")