|
|
@ -94,7 +94,7 @@ class ServerPanel(wx.Frame):
|
|
|
|
|
|
|
|
|
|
|
|
class GetData(wx.Dialog):
|
|
|
|
class GetData(wx.Dialog):
|
|
|
|
def __init__(self, parent):
|
|
|
|
def __init__(self, parent):
|
|
|
|
wx.Dialog.__init__(self, parent, wx.ID_ANY, "User Settings: ", size = (800,440))
|
|
|
|
wx.Dialog.__init__(self, parent, wx.ID_ANY, "User Settings", size = (800,440))
|
|
|
|
self.p = wx.Panel(self, wx.ID_ANY)
|
|
|
|
self.p = wx.Panel(self, wx.ID_ANY)
|
|
|
|
self.hostname = wx.StaticText(self.p, label="Host", pos=(20,20))
|
|
|
|
self.hostname = wx.StaticText(self.p, label="Host", pos=(20,20))
|
|
|
|
self.hostnametext = wx.TextCtrl(self.p, value="", pos=(180,20), size=(500,-1))
|
|
|
|
self.hostnametext = wx.TextCtrl(self.p, value="", pos=(180,20), size=(500,-1))
|
|
|
|