Mercurial > libervia-backend
annotate frontends/wix/param.py @ 18:6928e3cb73a8
refactoring: using xml params part II
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 06 Nov 2009 23:31:00 +0100 |
parents | c4bc297b82f0 |
children | 633c5ed65701 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 wix: a SAT frontend | |
6 Copyright (C) 2009 Jérôme Poisson (goffi@goffi.org) | |
7 | |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 | |
23 | |
24 import wx | |
25 import pdb | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
26 from xml.dom import minidom |
0 | 27 from logging import debug, info, error |
28 | |
29 | |
30 class Param(wx.Frame): | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
31 def __init__(self, bridge, title="Configuration"): |
0 | 32 super(Param, self).__init__(None, title=title) |
33 | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
34 self.bridge = bridge |
0 | 35 |
36 self.modified={} # dict of modified data (i.e. what we have to save) | |
37 | |
38 self.sizer = wx.BoxSizer(wx.VERTICAL) | |
39 self.notebook=wx.Notebook(self, -1, style=wx.NB_LEFT) | |
40 self.sizer.Add(self.notebook, 1, flag=wx.EXPAND) | |
41 self.SetSizer(self.sizer) | |
42 self.SetAutoLayout(True) | |
43 | |
44 #events | |
45 self.Bind(wx.EVT_CLOSE, self.onClose, self) | |
46 | |
47 self.MakeModal() | |
48 | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
49 for category in self.bridge.getParamsCategories(): |
0 | 50 self.addCategory(category) |
51 | |
52 self.Show() | |
53 | |
54 def addCategory(self, category): | |
55 panel=wx.Panel(self.notebook) | |
56 panel.sizer = wx.BoxSizer(wx.VERTICAL) | |
57 | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
58 cat_dom = minidom.parseString(self.bridge.getParamsForCategory(category)) |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
59 |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
60 for param in cat_dom.documentElement.getElementsByTagName("param"): |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
61 name = param.getAttribute("name") |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
62 type = param.getAttribute("type") |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
63 value = param.getAttribute("value") |
0 | 64 sizer = wx.BoxSizer(wx.HORIZONTAL) |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
65 label=wx.StaticText(panel, -1, name+" ") |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
66 if type=="string": |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
67 ctrl = wx.TextCtrl(panel, -1, value) |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
68 elif type=="password": |
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
69 ctrl = wx.TextCtrl(panel, -1, value, style=wx.TE_PASSWORD) |
0 | 70 else: |
71 error("FIXME FIXME FIXME") #FIXME ! | |
72 raise NotImplementedError | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
73 ctrl.param_id=(name, category) |
0 | 74 sizer.Add(label) |
75 sizer.Add(ctrl, 1, flag=wx.EXPAND) | |
76 panel.sizer.Add(sizer, flag=wx.EXPAND) | |
77 | |
78 panel.Bind(wx.EVT_TEXT, self.onTextChanged, ctrl) | |
79 panel.SetSizer(panel.sizer) | |
80 panel.SetAutoLayout(True) | |
81 self.notebook.AddPage(panel, category) | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
82 cat_dom.unlink() |
0 | 83 |
84 def onTextChanged(self, event): | |
85 """Called when a paramated is modified""" | |
86 self.modified[event.GetEventObject().param_id]=event.GetString() | |
87 event.Skip() | |
88 | |
89 | |
90 def onClose(self, event): | |
91 """Close event: we have to save the params.""" | |
92 debug("close") | |
93 #now we save the modifier params | |
94 for param in self.modified: | |
18
6928e3cb73a8
refactoring: using xml params part II
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
95 self.bridge.setParam(param[0], self.modified[param], param[1]) |
0 | 96 |
97 self.MakeModal(False) | |
98 event.Skip() | |
99 |