1 |
#Boa:Dialog:fraggleDialogPrefs |
2 |
|
3 |
from wxPython.wx import * |
4 |
from fraggleEngine import * |
5 |
|
6 |
def create(parent): |
7 |
return fraggleDialogPrefs(parent) |
8 |
|
9 |
|
10 |
|
11 |
[wxID_FRAGGLEDIALOGPREFS, wxID_FRAGGLEDIALOGPREFSBTSAVE, |
12 |
wxID_FRAGGLEDIALOGPREFSBUTTON1, wxID_FRAGGLEDIALOGPREFSBUTTONPROFILEDEL, |
13 |
wxID_FRAGGLEDIALOGPREFSBUTTONPROFILELOAD, |
14 |
wxID_FRAGGLEDIALOGPREFSBUTTONPROFILESAVE, |
15 |
wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE, wxID_FRAGGLEDIALOGPREFSSTATICTEXT1, |
16 |
wxID_FRAGGLEDIALOGPREFSSTATICTEXT2, wxID_FRAGGLEDIALOGPREFSSTATICTEXT3, |
17 |
wxID_FRAGGLEDIALOGPREFSSTATICTEXT4, wxID_FRAGGLEDIALOGPREFSSTATICTEXT5, |
18 |
wxID_FRAGGLEDIALOGPREFSSTATICTEXT6, wxID_FRAGGLEDIALOGPREFSTEXTCTRLPASSWORD, |
19 |
wxID_FRAGGLEDIALOGPREFSTEXTCTRLRETRIEVAL, |
20 |
wxID_FRAGGLEDIALOGPREFSTEXTCTRLSERVER, |
21 |
wxID_FRAGGLEDIALOGPREFSTEXTCTRLUSERNAME, |
22 |
] = map(lambda _init_ctrls: wxNewId(), range(17)) |
23 |
|
24 |
class fraggleDialogPrefs(wxDialog): |
25 |
def _init_utils(self): |
26 |
# generated method, don't edit |
27 |
pass |
28 |
|
29 |
def _init_ctrls(self, prnt): |
30 |
# generated method, don't edit |
31 |
wxDialog.__init__(self, id=wxID_FRAGGLEDIALOGPREFS, |
32 |
name='fraggleDialogPrefs', parent=prnt, pos=wxPoint(283, 313), |
33 |
size=wxSize(366, 233), style=wxDEFAULT_DIALOG_STYLE, |
34 |
title='Netfraggle Preferences') |
35 |
self._init_utils() |
36 |
self.SetClientSize(wxSize(366, 233)) |
37 |
|
38 |
self.btsave = wxButton(id=wxID_FRAGGLEDIALOGPREFSBTSAVE, |
39 |
label='Save and Close', name='btsave', parent=self, |
40 |
pos=wxPoint(8, 208), size=wxSize(96, 16), style=0) |
41 |
EVT_BUTTON(self.btsave, wxID_FRAGGLEDIALOGPREFSBTSAVE, |
42 |
self.OnBtsaveButton) |
43 |
|
44 |
self.button1 = wxButton(id=wxID_FRAGGLEDIALOGPREFSBUTTON1, |
45 |
label='Cancel', name='button1', parent=self, pos=wxPoint(112, |
46 |
208), size=wxSize(56, 16), style=0) |
47 |
EVT_BUTTON(self.button1, wxID_FRAGGLEDIALOGPREFSBUTTON1, |
48 |
self.OnButton1Button) |
49 |
|
50 |
self.staticText1 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT1, |
51 |
label='Username', name='staticText1', parent=self, pos=wxPoint(16, |
52 |
72), size=wxSize(47, 16), style=0) |
53 |
|
54 |
self.staticText2 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT2, |
55 |
label='Password', name='staticText2', parent=self, pos=wxPoint(16, |
56 |
96), size=wxSize(53, 16), style=0) |
57 |
|
58 |
self.textCtrlUsername = wxTextCtrl(id=wxID_FRAGGLEDIALOGPREFSTEXTCTRLUSERNAME, |
59 |
name='textCtrlUsername', parent=self, pos=wxPoint(80, 72), |
60 |
size=wxSize(88, 16), style=0, value='') |
61 |
|
62 |
self.textCtrlPassword = wxTextCtrl(id=wxID_FRAGGLEDIALOGPREFSTEXTCTRLPASSWORD, |
63 |
name='textCtrlPassword', parent=self, pos=wxPoint(80, 96), |
64 |
size=wxSize(88, 16), style=0, value='') |
65 |
|
66 |
self.staticText3 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT3, |
67 |
label='Server URL', name='staticText3', parent=self, |
68 |
pos=wxPoint(16, 120), size=wxSize(58, 16), style=0) |
69 |
|
70 |
self.textCtrlServer = wxTextCtrl(id=wxID_FRAGGLEDIALOGPREFSTEXTCTRLSERVER, |
71 |
name='textCtrlServer', parent=self, pos=wxPoint(80, 120), |
72 |
size=wxSize(272, 16), style=0, |
73 |
value='http://your.server.com/netfraggle.php') |
74 |
|
75 |
self.staticText4 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT4, |
76 |
label='Topic Retrieval Interval', name='staticText4', parent=self, |
77 |
pos=wxPoint(16, 144), size=wxSize(120, 16), style=0) |
78 |
|
79 |
self.textCtrlRetrieval = wxTextCtrl(id=wxID_FRAGGLEDIALOGPREFSTEXTCTRLRETRIEVAL, |
80 |
name='textCtrlRetrieval', parent=self, pos=wxPoint(128, 144), |
81 |
size=wxSize(40, 16), style=0, value='') |
82 |
|
83 |
self.staticText5 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT5, |
84 |
label='Seconds', name='staticText5', parent=self, pos=wxPoint(176, |
85 |
144), size=wxSize(56, 16), style=0) |
86 |
|
87 |
self.comboBoxProfile = wxComboBox(choices=[], |
88 |
id=wxID_FRAGGLEDIALOGPREFSCOMBOBOXPROFILE, name='comboBoxProfile', |
89 |
parent=self, pos=wxPoint(80, 8), size=wxSize(124, 16), style=0, |
90 |
validator=wxDefaultValidator, value='') |
91 |
self.comboBoxProfile.SetLabel('') |
92 |
|
93 |
self.staticText6 = wxStaticText(id=wxID_FRAGGLEDIALOGPREFSSTATICTEXT6, |
94 |
label='Profile', name='staticText6', parent=self, pos=wxPoint(16, |
95 |
8), size=wxSize(48, 16), style=0) |
96 |
|
97 |
self.buttonProfileSave = wxButton(id=wxID_FRAGGLEDIALOGPREFSBUTTONPROFILESAVE, |
98 |
label='Save', name='buttonProfileSave', parent=self, |
99 |
pos=wxPoint(272, 8), size=wxSize(40, 16), style=0) |
100 |
|
101 |
self.buttonProfileDel = wxButton(id=wxID_FRAGGLEDIALOGPREFSBUTTONPROFILEDEL, |
102 |
label='Delete', name='buttonProfileDel', parent=self, |
103 |
pos=wxPoint(320, 8), size=wxSize(40, 16), style=0) |
104 |
|
105 |
self.buttonProfileLoad = wxButton(id=wxID_FRAGGLEDIALOGPREFSBUTTONPROFILELOAD, |
106 |
label='Load', name='buttonProfileLoad', parent=self, |
107 |
pos=wxPoint(216, 8), size=wxSize(48, 16), style=0) |
108 |
|
109 |
def __init__(self, parent): |
110 |
self.parent = parent |
111 |
self._init_ctrls(parent) |
112 |
|
113 |
def OnBtsaveButton(self, event): |
114 |
|
115 |
# convert from utf-8: required for win32 |
116 |
import codecs |
117 |
(UTF8_encode, UTF8_decode, |
118 |
UTF8_streamreader, UTF8_streamwriter) = codecs.lookup('UTF-8') |
119 |
self.parent.preferencesCtl.setConfig( |
120 |
UTF8_encode(self.textCtrlUsername.GetValue())[0], |
121 |
UTF8_encode(self.textCtrlPassword.GetValue())[0], |
122 |
UTF8_encode(self.textCtrlServer.GetValue())[0], |
123 |
UTF8_encode(self.textCtrlRetrieval.GetValue())[0] |
124 |
) |
125 |
|
126 |
self.parent.preferencesCtl.saveConfig() |
127 |
self.Hide() |
128 |
event.Skip() |
129 |
|
130 |
def loadConfig(self): |
131 |
engine = FraggleEngine() |
132 |
prefsfile = os.path.join(engine.getDefaultDir(), 'prefs.xml') |
133 |
self.parent.preferencesCtl.loadConfig(prefsfile) |
134 |
|
135 |
def updateConfig(self): |
136 |
config = self.parent.preferencesCtl.getConfig() |
137 |
self.textCtrlUsername.SetValue(config["username"]) |
138 |
self.textCtrlPassword.SetValue(config["password"]) |
139 |
self.textCtrlServer.SetValue(config["url"]) |
140 |
self.textCtrlRetrieval.SetValue(config["retrieval"]) |
141 |
|
142 |
def OnButton1Button(self, event): |
143 |
self.Hide() |
144 |
event.Skip() |
145 |
|