Mercurial > libervia-backend
annotate frontends/src/wix/param.py @ 775:ab66dac17d1f
i18n: merged jp i18n french translation in core fr.po
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 29 Dec 2013 17:48:14 +0100 |
parents | bfabeedbf32e |
children | 5642939d254e |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
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 | 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 | 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 | 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 | 19 |
20 | |
21 | |
771 | 22 from sat.core.i18n import _ |
0 | 23 import wx |
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 | 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 | 28 |
29 | |
30 class Param(wx.Frame): | |
70 | 31 def __init__(self, host, title=_("Configuration")): |
0 | 32 super(Param, self).__init__(None, title=title) |
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 | 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 | 38 |
39 self.sizer = wx.BoxSizer(wx.VERTICAL) | |
40 self.notebook=wx.Notebook(self, -1, style=wx.NB_LEFT) | |
41 self.sizer.Add(self.notebook, 1, flag=wx.EXPAND) | |
42 self.SetSizer(self.sizer) | |
43 self.SetAutoLayout(True) | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
44 |
0 | 45 #events |
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 | 48 self.MakeModal() |
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 | 51 self.addCategory(category) |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
52 |
0 | 53 self.Show() |
54 | |
55 def addCategory(self, category): | |
56 panel=wx.Panel(self.notebook) | |
57 panel.sizer = wx.BoxSizer(wx.VERTICAL) | |
58 | |
545 | 59 def errorGettingParams(ignore): |
60 wx.MessageDialog(self, _("Can't get parameters"), _("Parameters error"), wx.ICON_ERROR).ShowModal() | |
0 | 61 |
545 | 62 def gotParams(result): |
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 | 65 for param in cat_dom.documentElement.getElementsByTagName("param"): |
66 name = param.getAttribute("name") | |
67 label = param.getAttribute("label") | |
68 type = param.getAttribute("type") | |
69 value = param.getAttribute("value") | |
70 sizer = wx.BoxSizer(wx.HORIZONTAL) | |
71 if type=="string": | |
72 label=wx.StaticText(panel, -1, (label or name)+" ") | |
73 ctrl = wx.TextCtrl(panel, -1, value) | |
74 sizer.Add(label) | |
75 elif type=="password": | |
76 label=wx.StaticText(panel, -1, (label or name)+" ") | |
77 ctrl = wx.TextCtrl(panel, -1, value, style=wx.TE_PASSWORD) | |
78 sizer.Add(label) | |
79 elif type=="bool": | |
80 ctrl = wx.CheckBox(panel, -1, label or name, style = wx.CHK_2STATE) | |
81 ctrl.SetValue(value=="true") | |
82 elif type=="button": | |
83 ctrl = wx.Button(panel, -1, value) | |
84 ctrl.callback_id = param.getAttribute("callback_id") | |
85 else: | |
86 error(_("FIXME FIXME FIXME")) #FIXME ! | |
87 raise NotImplementedError | |
88 if name: | |
89 ctrl.param_id=(name, category) | |
90 self.ctl_list[(name, category)] = ctrl | |
91 sizer.Add(ctrl, 1, flag=wx.EXPAND) | |
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 | 94 if type=="string" or type=="password": |
95 panel.Bind(wx.EVT_TEXT, self.onTextChanged, ctrl) | |
96 elif type=="bool": | |
97 panel.Bind(wx.EVT_CHECKBOX, self.onCheckBoxClicked, ctrl) | |
98 elif type=="button": | |
99 panel.Bind(wx.EVT_BUTTON, self.onButtonClicked, ctrl) | |
100 | |
101 panel.SetSizer(panel.sizer) | |
102 panel.SetAutoLayout(True) | |
103 self.notebook.AddPage(panel, category) | |
104 cat_dom.unlink() | |
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 | 110 |
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 | 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 | 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 | 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 | 142 def onClose(self, event): |
143 """Close event: we have to save the params.""" | |
70 | 144 debug(_("close")) |
0 | 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 | 147 |
148 self.MakeModal(False) | |
149 event.Skip() | |
150 |