annotate frontends/src/wix/param.py @ 772:dd07fc737d6c

i18n: merged sat_frontends and sat translations in core's i18n Translations still need to be updated
author Goffi <goffi@goffi.org>
date Sun, 29 Dec 2013 17:10:10 +0100
parents bfabeedbf32e
children 5642939d254e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
goffi@necton2
parents:
diff changeset
1 #!/usr/bin/python
goffi@necton2
parents:
diff changeset
2 # -*- coding: utf-8 -*-
goffi@necton2
parents:
diff changeset
3
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
4 # wix: a SAT frontend
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
5 # Copyright (C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson (goffi@goffi.org)
0
goffi@necton2
parents:
diff changeset
6
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
7 # This program is free software: you can redistribute it and/or modify
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
8 # it under the terms of the GNU Affero General Public License as published by
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
10 # (at your option) any later version.
0
goffi@necton2
parents:
diff changeset
11
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
12 # This program is distributed in the hope that it will be useful,
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
15 # GNU Affero General Public License for more details.
0
goffi@necton2
parents:
diff changeset
16
609
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
17 # You should have received a copy of the GNU Affero General Public License
84a6e83157c2 fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents: 587
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
0
goffi@necton2
parents:
diff changeset
19
goffi@necton2
parents:
diff changeset
20
goffi@necton2
parents:
diff changeset
21
771
bfabeedbf32e core: i18n refactoring:
Goffi <goffi@goffi.org>
parents: 759
diff changeset
22 from sat.core.i18n import _
0
goffi@necton2
parents:
diff changeset
23 import wx
goffi@necton2
parents:
diff changeset
24 import pdb
18
6928e3cb73a8 refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents: 0
diff changeset
25 from xml.dom import minidom
0
goffi@necton2
parents:
diff changeset
26 from logging import debug, info, error
225
fd9b7834d98a distutils installation script, draft
Goffi <goffi@goffi.org>
parents: 223
diff changeset
27 from sat.tools.jid import JID
0
goffi@necton2
parents:
diff changeset
28
goffi@necton2
parents:
diff changeset
29
goffi@necton2
parents:
diff changeset
30 class Param(wx.Frame):
70
Goffi <goffi@goffi.org>
parents: 57
diff changeset
31 def __init__(self, host, title=_("Configuration")):
0
goffi@necton2
parents:
diff changeset
32 super(Param, self).__init__(None, title=title)
goffi@necton2
parents:
diff changeset
33
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 21
diff changeset
34 self.host = host
0
goffi@necton2
parents:
diff changeset
35
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
36 self.modified = {} # dict of modified data (i.e. what we have to save)
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
37 self.ctl_list = {} # usefull to access ctrl, key = (name, category)
0
goffi@necton2
parents:
diff changeset
38
goffi@necton2
parents:
diff changeset
39 self.sizer = wx.BoxSizer(wx.VERTICAL)
goffi@necton2
parents:
diff changeset
40 self.notebook=wx.Notebook(self, -1, style=wx.NB_LEFT)
goffi@necton2
parents:
diff changeset
41 self.sizer.Add(self.notebook, 1, flag=wx.EXPAND)
goffi@necton2
parents:
diff changeset
42 self.SetSizer(self.sizer)
goffi@necton2
parents:
diff changeset
43 self.SetAutoLayout(True)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
44
0
goffi@necton2
parents:
diff changeset
45 #events
goffi@necton2
parents:
diff changeset
46 self.Bind(wx.EVT_CLOSE, self.onClose, self)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
47
0
goffi@necton2
parents:
diff changeset
48 self.MakeModal()
goffi@necton2
parents:
diff changeset
49
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 21
diff changeset
50 for category in self.host.bridge.getParamsCategories():
0
goffi@necton2
parents:
diff changeset
51 self.addCategory(category)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
52
0
goffi@necton2
parents:
diff changeset
53 self.Show()
goffi@necton2
parents:
diff changeset
54
goffi@necton2
parents:
diff changeset
55 def addCategory(self, category):
goffi@necton2
parents:
diff changeset
56 panel=wx.Panel(self.notebook)
goffi@necton2
parents:
diff changeset
57 panel.sizer = wx.BoxSizer(wx.VERTICAL)
goffi@necton2
parents:
diff changeset
58
545
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
59 def errorGettingParams(ignore):
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
60 wx.MessageDialog(self, _("Can't get parameters"), _("Parameters error"), wx.ICON_ERROR).ShowModal()
0
goffi@necton2
parents:
diff changeset
61
545
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
62 def gotParams(result):
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
63 cat_dom = minidom.parseString(result.encode('utf-8'))
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
64
545
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
65 for param in cat_dom.documentElement.getElementsByTagName("param"):
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
66 name = param.getAttribute("name")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
67 label = param.getAttribute("label")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
68 type = param.getAttribute("type")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
69 value = param.getAttribute("value")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
70 sizer = wx.BoxSizer(wx.HORIZONTAL)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
71 if type=="string":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
72 label=wx.StaticText(panel, -1, (label or name)+" ")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
73 ctrl = wx.TextCtrl(panel, -1, value)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
74 sizer.Add(label)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
75 elif type=="password":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
76 label=wx.StaticText(panel, -1, (label or name)+" ")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
77 ctrl = wx.TextCtrl(panel, -1, value, style=wx.TE_PASSWORD)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
78 sizer.Add(label)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
79 elif type=="bool":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
80 ctrl = wx.CheckBox(panel, -1, label or name, style = wx.CHK_2STATE)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
81 ctrl.SetValue(value=="true")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
82 elif type=="button":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
83 ctrl = wx.Button(panel, -1, value)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
84 ctrl.callback_id = param.getAttribute("callback_id")
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
85 else:
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
86 error(_("FIXME FIXME FIXME")) #FIXME !
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
87 raise NotImplementedError
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
88 if name:
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
89 ctrl.param_id=(name, category)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
90 self.ctl_list[(name, category)] = ctrl
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
91 sizer.Add(ctrl, 1, flag=wx.EXPAND)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
92 panel.sizer.Add(sizer, flag=wx.EXPAND)
21
633c5ed65701 parameters: new button type (not finished)
Goffi <goffi@goffi.org>
parents: 18
diff changeset
93
545
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
94 if type=="string" or type=="password":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
95 panel.Bind(wx.EVT_TEXT, self.onTextChanged, ctrl)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
96 elif type=="bool":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
97 panel.Bind(wx.EVT_CHECKBOX, self.onCheckBoxClicked, ctrl)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
98 elif type=="button":
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
99 panel.Bind(wx.EVT_BUTTON, self.onButtonClicked, ctrl)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
100
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
101 panel.SetSizer(panel.sizer)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
102 panel.SetAutoLayout(True)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
103 self.notebook.AddPage(panel, category)
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
104 cat_dom.unlink()
8f88ae7ed886 wix: fixed parameters management
Goffi <goffi@goffi.org>
parents: 480
diff changeset
105
634
ca2cae6b2c6d core: security attribute added to the parameters
souliane <souliane@mailoo.org>
parents: 609
diff changeset
106 self.host.bridge.getParamsForCategory(category,
ca2cae6b2c6d core: security attribute added to the parameters
souliane <souliane@mailoo.org>
parents: 609
diff changeset
107 profile_key=self.host.profile,
ca2cae6b2c6d core: security attribute added to the parameters
souliane <souliane@mailoo.org>
parents: 609
diff changeset
108 callback=gotParams,
ca2cae6b2c6d core: security attribute added to the parameters
souliane <souliane@mailoo.org>
parents: 609
diff changeset
109 errback=errorGettingParams)
0
goffi@necton2
parents:
diff changeset
110
goffi@necton2
parents:
diff changeset
111 def onTextChanged(self, event):
183
9ee4a1d0d7fb Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents: 135
diff changeset
112 """Called when a string paramater is modified"""
0
goffi@necton2
parents:
diff changeset
113 self.modified[event.GetEventObject().param_id]=event.GetString()
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
114
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
115 ### FIXME # Some hacks for better presentation, should be generic # FIXME ###
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
116 if event.GetEventObject().param_id == ('JabberID', 'Connection'):
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
117 domain = JID(event.GetString()).domain
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
118 self.ctl_list[('Server', 'Connection')].SetValue(domain)
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
119 self.modified[('Server', 'Connection')] = domain
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
120
0
goffi@necton2
parents:
diff changeset
121 event.Skip()
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
122
183
9ee4a1d0d7fb Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents: 135
diff changeset
123 def onCheckBoxClicked(self, event):
9ee4a1d0d7fb Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents: 135
diff changeset
124 """Called when a bool paramater is modified"""
9ee4a1d0d7fb Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents: 135
diff changeset
125 self.modified[event.GetEventObject().param_id]="true" if event.GetEventObject().GetValue() else "false"
9ee4a1d0d7fb Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents: 135
diff changeset
126 event.Skip()
587
952322b1d490 Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 572
diff changeset
127
21
633c5ed65701 parameters: new button type (not finished)
Goffi <goffi@goffi.org>
parents: 18
diff changeset
128 def onButtonClicked(self, event):
183
9ee4a1d0d7fb Added auto(dis)connect params + misc
Goffi <goffi@goffi.org>
parents: 135
diff changeset
129 """Called when a button paramater is modified"""
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
130 self.__save_parameters()
22
bb72c29f3432 added action cb mechanism for buttons. Tested with a temporary new user registration button.
Goffi <goffi@goffi.org>
parents: 21
diff changeset
131 name, category = event.GetEventObject().param_id
135
7452ac3818e7 Core, wix: added profile management for RegisterNewAccount method, and LaunchAction
Goffi <goffi@goffi.org>
parents: 89
diff changeset
132 callback_id = event.GetEventObject().callback_id
759
93bd868b8fb6 backend, frontends: callbacks refactoring:
Goffi <goffi@goffi.org>
parents: 641
diff changeset
133 self.host.launchAction(callback_id, None, profile_key = self.host.profile)
21
633c5ed65701 parameters: new button type (not finished)
Goffi <goffi@goffi.org>
parents: 18
diff changeset
134 event.Skip()
0
goffi@necton2
parents:
diff changeset
135
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
136 def __save_parameters(self):
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
137 for param in self.modified:
641
49587e170f53 core: added the security_limit to setParam
souliane <souliane@mailoo.org>
parents: 634
diff changeset
138 self.host.bridge.setParam(param[0], self.modified[param], param[1],
49587e170f53 core: added the security_limit to setParam
souliane <souliane@mailoo.org>
parents: 634
diff changeset
139 profile_key=self.host.profile)
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
140 self.modified.clear()
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
141
0
goffi@necton2
parents:
diff changeset
142 def onClose(self, event):
goffi@necton2
parents:
diff changeset
143 """Close event: we have to save the params."""
70
Goffi <goffi@goffi.org>
parents: 57
diff changeset
144 debug(_("close"))
0
goffi@necton2
parents:
diff changeset
145 #now we save the modifier params
23
925ab466c5ec better presentation for register new account
Goffi <goffi@goffi.org>
parents: 22
diff changeset
146 self.__save_parameters()
0
goffi@necton2
parents:
diff changeset
147
goffi@necton2
parents:
diff changeset
148 self.MakeModal(False)
goffi@necton2
parents:
diff changeset
149 event.Skip()
goffi@necton2
parents:
diff changeset
150