##// END OF EJS Templates
Show the input object of the igrid browser as the window tile....
walter.doerwald -
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -1,752 +1,796 b''
1 # -*- coding: iso-8859-1 -*-
1 # -*- coding: iso-8859-1 -*-
2
2
3 import ipipe, os, webbrowser, urllib
3 import ipipe, os, webbrowser, urllib
4 import wx
4 import wx
5 import wx.grid, wx.html
5 import wx.grid, wx.html
6
6
7 try:
7 try:
8 sorted
8 sorted
9 except NameError:
9 except NameError:
10 from ipipe import sorted
10 from ipipe import sorted
11
11
12
12
13 __all__ = ["igrid"]
13 __all__ = ["igrid"]
14
14
15
15
16 class IGridRenderer(wx.grid.PyGridCellRenderer):
16 class IGridRenderer(wx.grid.PyGridCellRenderer):
17 """
17 """
18 This is a custom renderer for our IGridGrid
18 This is a custom renderer for our IGridGrid
19 """
19 """
20 def __init__(self, table):
20 def __init__(self, table):
21 self.maxchars = 200
21 self.maxchars = 200
22 self.table = table
22 self.table = table
23 self.colormap = (
23 self.colormap = (
24 ( 0, 0, 0),
24 ( 0, 0, 0),
25 (174, 0, 0),
25 (174, 0, 0),
26 ( 0, 174, 0),
26 ( 0, 174, 0),
27 (174, 174, 0),
27 (174, 174, 0),
28 ( 0, 0, 174),
28 ( 0, 0, 174),
29 (174, 0, 174),
29 (174, 0, 174),
30 ( 0, 174, 174),
30 ( 0, 174, 174),
31 ( 64, 64, 64)
31 ( 64, 64, 64)
32 )
32 )
33
33
34 wx.grid.PyGridCellRenderer.__init__(self)
34 wx.grid.PyGridCellRenderer.__init__(self)
35
35
36 def _getvalue(self, row, col):
36 def _getvalue(self, row, col):
37 try:
37 try:
38 value = self.table._displayattrs[col].value(self.table.items[row])
38 value = self.table._displayattrs[col].value(self.table.items[row])
39 (align, width, text) = ipipe.xformat(value, "cell", self.maxchars)
39 (align, width, text) = ipipe.xformat(value, "cell", self.maxchars)
40 except Exception, exc:
40 except Exception, exc:
41 (align, width, text) = ipipe.xformat(exc, "cell", self.maxchars)
41 (align, width, text) = ipipe.xformat(exc, "cell", self.maxchars)
42 return (align, text)
42 return (align, text)
43
43
44 def GetBestSize(self, grid, attr, dc, row, col):
44 def GetBestSize(self, grid, attr, dc, row, col):
45 text = grid.GetCellValue(row, col)
45 text = grid.GetCellValue(row, col)
46 (align, text) = self._getvalue(row, col)
46 (align, text) = self._getvalue(row, col)
47 dc.SetFont(attr.GetFont())
47 dc.SetFont(attr.GetFont())
48 (w, h) = dc.GetTextExtent(str(text))
48 (w, h) = dc.GetTextExtent(str(text))
49 return wx.Size(min(w+2, 600), h+2) # add border
49 return wx.Size(min(w+2, 600), h+2) # add border
50
50
51 def Draw(self, grid, attr, dc, rect, row, col, isSelected):
51 def Draw(self, grid, attr, dc, rect, row, col, isSelected):
52 """
52 """
53 Takes care of drawing everything in the cell; aligns the text
53 Takes care of drawing everything in the cell; aligns the text
54 """
54 """
55 text = grid.GetCellValue(row, col)
55 text = grid.GetCellValue(row, col)
56 (align, text) = self._getvalue(row, col)
56 (align, text) = self._getvalue(row, col)
57 if isSelected:
57 if isSelected:
58 bg = grid.GetSelectionBackground()
58 bg = grid.GetSelectionBackground()
59 else:
59 else:
60 bg = ["white", (240, 240, 240)][row%2]
60 bg = ["white", (240, 240, 240)][row%2]
61 dc.SetTextBackground(bg)
61 dc.SetTextBackground(bg)
62 dc.SetBrush(wx.Brush(bg, wx.SOLID))
62 dc.SetBrush(wx.Brush(bg, wx.SOLID))
63 dc.SetPen(wx.TRANSPARENT_PEN)
63 dc.SetPen(wx.TRANSPARENT_PEN)
64 dc.SetFont(attr.GetFont())
64 dc.SetFont(attr.GetFont())
65 dc.DrawRectangleRect(rect)
65 dc.DrawRectangleRect(rect)
66 dc.SetClippingRect(rect)
66 dc.SetClippingRect(rect)
67 # Format the text
67 # Format the text
68 if align == -1: # left alignment
68 if align == -1: # left alignment
69 (width, height) = dc.GetTextExtent(str(text))
69 (width, height) = dc.GetTextExtent(str(text))
70 x = rect[0]+1
70 x = rect[0]+1
71 y = rect[1]+0.5*(rect[3]-height)
71 y = rect[1]+0.5*(rect[3]-height)
72
72
73 for (style, part) in text:
73 for (style, part) in text:
74 if isSelected:
74 if isSelected:
75 fg = grid.GetSelectionForeground()
75 fg = grid.GetSelectionForeground()
76 else:
76 else:
77 fg = self.colormap[style.fg]
77 fg = self.colormap[style.fg]
78 dc.SetTextForeground(fg)
78 dc.SetTextForeground(fg)
79 (w, h) = dc.GetTextExtent(part)
79 (w, h) = dc.GetTextExtent(part)
80 dc.DrawText(part, x, y)
80 dc.DrawText(part, x, y)
81 x += w
81 x += w
82 elif align == 0: # center alignment
82 elif align == 0: # center alignment
83 (width, height) = dc.GetTextExtent(str(text))
83 (width, height) = dc.GetTextExtent(str(text))
84 x = rect[0]+0.5*(rect[2]-width)
84 x = rect[0]+0.5*(rect[2]-width)
85 y = rect[1]+0.5*(rect[3]-height)
85 y = rect[1]+0.5*(rect[3]-height)
86 for (style, part) in text:
86 for (style, part) in text:
87 if isSelected:
87 if isSelected:
88 fg = grid.GetSelectionForeground()
88 fg = grid.GetSelectionForeground()
89 else:
89 else:
90 fg = self.colormap[style.fg]
90 fg = self.colormap[style.fg]
91 dc.SetTextForeground(fg)
91 dc.SetTextForeground(fg)
92 (w, h) = dc.GetTextExtent(part)
92 (w, h) = dc.GetTextExtent(part)
93 dc.DrawText(part, x, y)
93 dc.DrawText(part, x, y)
94 x += w
94 x += w
95 else: # right alignment
95 else: # right alignment
96 (width, height) = dc.GetTextExtent(str(text))
96 (width, height) = dc.GetTextExtent(str(text))
97 x = rect[0]+rect[2]-1
97 x = rect[0]+rect[2]-1
98 y = rect[1]+0.5*(rect[3]-height)
98 y = rect[1]+0.5*(rect[3]-height)
99 for (style, part) in reversed(text):
99 for (style, part) in reversed(text):
100 (w, h) = dc.GetTextExtent(part)
100 (w, h) = dc.GetTextExtent(part)
101 x -= w
101 x -= w
102 if isSelected:
102 if isSelected:
103 fg = grid.GetSelectionForeground()
103 fg = grid.GetSelectionForeground()
104 else:
104 else:
105 fg = self.colormap[style.fg]
105 fg = self.colormap[style.fg]
106 dc.SetTextForeground(fg)
106 dc.SetTextForeground(fg)
107 dc.DrawText(part, x, y)
107 dc.DrawText(part, x, y)
108 dc.DestroyClippingRegion()
108 dc.DestroyClippingRegion()
109
109
110 def Clone(self):
110 def Clone(self):
111 return IGridRenderer(self.table)
111 return IGridRenderer(self.table)
112
112
113
113
114 class IGridTable(wx.grid.PyGridTableBase):
114 class IGridTable(wx.grid.PyGridTableBase):
115 # The data table for the ``IGridGrid``. Some dirty tricks were used here:
115 # The data table for the ``IGridGrid``. Some dirty tricks were used here:
116 # ``GetValue()`` does not get any values (or at least it does not return
116 # ``GetValue()`` does not get any values (or at least it does not return
117 # anything, accessing the values is done by the renderer)
117 # anything, accessing the values is done by the renderer)
118 # but rather tries to fetch the objects which were requested into the table.
118 # but rather tries to fetch the objects which were requested into the table.
119 # General behaviour is: Fetch the first X objects. If the user scrolls down
119 # General behaviour is: Fetch the first X objects. If the user scrolls down
120 # to the last object another bunch of X objects is fetched (if possible)
120 # to the last object another bunch of X objects is fetched (if possible)
121 def __init__(self, input, fontsize, *attrs):
121 def __init__(self, input, fontsize, *attrs):
122 wx.grid.PyGridTableBase.__init__(self)
122 wx.grid.PyGridTableBase.__init__(self)
123 self.input = input
123 self.input = input
124 self.iterator = ipipe.xiter(input)
124 self.iterator = ipipe.xiter(input)
125 self.items = []
125 self.items = []
126 self.attrs = [ipipe.upgradexattr(attr) for attr in attrs]
126 self.attrs = [ipipe.upgradexattr(attr) for attr in attrs]
127 self._displayattrs = self.attrs[:]
127 self._displayattrs = self.attrs[:]
128 self._displayattrset = set(self.attrs)
128 self._displayattrset = set(self.attrs)
129 self._sizing = False
129 self._sizing = False
130 self.fontsize = fontsize
130 self.fontsize = fontsize
131 self._fetch(1)
131 self._fetch(1)
132
132
133 def GetAttr(self, *args):
133 def GetAttr(self, *args):
134 attr = wx.grid.GridCellAttr()
134 attr = wx.grid.GridCellAttr()
135 attr.SetFont(wx.Font(self.fontsize, wx.TELETYPE, wx.NORMAL, wx.NORMAL))
135 attr.SetFont(wx.Font(self.fontsize, wx.TELETYPE, wx.NORMAL, wx.NORMAL))
136 return attr
136 return attr
137
137
138 def GetNumberRows(self):
138 def GetNumberRows(self):
139 return len(self.items)
139 return len(self.items)
140
140
141 def GetNumberCols(self):
141 def GetNumberCols(self):
142 return len(self._displayattrs)
142 return len(self._displayattrs)
143
143
144 def GetColLabelValue(self, col):
144 def GetColLabelValue(self, col):
145 if col < len(self._displayattrs):
145 if col < len(self._displayattrs):
146 return self._displayattrs[col].name()
146 return self._displayattrs[col].name()
147 else:
147 else:
148 return ""
148 return ""
149
149
150 def GetRowLabelValue(self, row):
150 def GetRowLabelValue(self, row):
151 return str(row)
151 return str(row)
152
152
153 def IsEmptyCell(self, row, col):
153 def IsEmptyCell(self, row, col):
154 return False
154 return False
155
155
156 def _append(self, item):
156 def _append(self, item):
157 self.items.append(item)
157 self.items.append(item)
158 # Nothing to do if the set of attributes has been fixed by the user
158 # Nothing to do if the set of attributes has been fixed by the user
159 if not self.attrs:
159 if not self.attrs:
160 for attr in ipipe.xattrs(item):
160 for attr in ipipe.xattrs(item):
161 attr = ipipe.upgradexattr(attr)
161 attr = ipipe.upgradexattr(attr)
162 if attr not in self._displayattrset:
162 if attr not in self._displayattrset:
163 self._displayattrs.append(attr)
163 self._displayattrs.append(attr)
164 self._displayattrset.add(attr)
164 self._displayattrset.add(attr)
165
165
166 def _fetch(self, count):
166 def _fetch(self, count):
167 # Try to fill ``self.items`` with at least ``count`` objects.
167 # Try to fill ``self.items`` with at least ``count`` objects.
168 have = len(self.items)
168 have = len(self.items)
169 while self.iterator is not None and have < count:
169 while self.iterator is not None and have < count:
170 try:
170 try:
171 item = self.iterator.next()
171 item = self.iterator.next()
172 except StopIteration:
172 except StopIteration:
173 self.iterator = None
173 self.iterator = None
174 break
174 break
175 except (KeyboardInterrupt, SystemExit):
175 except (KeyboardInterrupt, SystemExit):
176 raise
176 raise
177 except Exception, exc:
177 except Exception, exc:
178 have += 1
178 have += 1
179 self._append(item)
179 self._append(item)
180 self.iterator = None
180 self.iterator = None
181 break
181 break
182 else:
182 else:
183 have += 1
183 have += 1
184 self._append(item)
184 self._append(item)
185
185
186 def GetValue(self, row, col):
186 def GetValue(self, row, col):
187 # some kind of dummy-function: does not return anything but "";
187 # some kind of dummy-function: does not return anything but "";
188 # (The value isn't use anyway)
188 # (The value isn't use anyway)
189 # its main task is to trigger the fetch of new objects
189 # its main task is to trigger the fetch of new objects
190 had_cols = self._displayattrs[:]
190 had_cols = self._displayattrs[:]
191 had_rows = len(self.items)
191 had_rows = len(self.items)
192 if row == had_rows - 1 and self.iterator is not None and not self._sizing:
192 if row == had_rows - 1 and self.iterator is not None and not self._sizing:
193 self._fetch(row + 20)
193 self._fetch(row + 20)
194 have_rows = len(self.items)
194 have_rows = len(self.items)
195 have_cols = len(self._displayattrs)
195 have_cols = len(self._displayattrs)
196 if have_rows > had_rows:
196 if have_rows > had_rows:
197 msg = wx.grid.GridTableMessage(self, wx.grid.GRIDTABLE_NOTIFY_ROWS_APPENDED, have_rows - had_rows)
197 msg = wx.grid.GridTableMessage(self, wx.grid.GRIDTABLE_NOTIFY_ROWS_APPENDED, have_rows - had_rows)
198 self.GetView().ProcessTableMessage(msg)
198 self.GetView().ProcessTableMessage(msg)
199 self._sizing = True
199 self._sizing = True
200 self.GetView().AutoSizeColumns(False)
200 self.GetView().AutoSizeColumns(False)
201 self._sizing = False
201 self._sizing = False
202 if row >= have_rows:
202 if row >= have_rows:
203 return ""
203 return ""
204 if self._displayattrs != had_cols:
204 if self._displayattrs != had_cols:
205 msg = wx.grid.GridTableMessage(self, wx.grid.GRIDTABLE_NOTIFY_COLS_APPENDED, have_cols - len(had_cols))
205 msg = wx.grid.GridTableMessage(self, wx.grid.GRIDTABLE_NOTIFY_COLS_APPENDED, have_cols - len(had_cols))
206 self.GetView().ProcessTableMessage(msg)
206 self.GetView().ProcessTableMessage(msg)
207 return ""
207 return ""
208
208
209 def SetValue(self, row, col, value):
209 def SetValue(self, row, col, value):
210 pass
210 pass
211
211
212
212
213 class IGridGrid(wx.grid.Grid):
213 class IGridGrid(wx.grid.Grid):
214 # The actual grid
214 # The actual grid
215 # all methods for selecting/sorting/picking/... data are implemented here
215 # all methods for selecting/sorting/picking/... data are implemented here
216 def __init__(self, panel, input, *attrs):
216 def __init__(self, panel, input, *attrs):
217 wx.grid.Grid.__init__(self, panel)
217 wx.grid.Grid.__init__(self, panel)
218 fontsize = 9
218 fontsize = 9
219 self.input = input
219 self.input = input
220 self.table = IGridTable(self.input, fontsize, *attrs)
220 self.table = IGridTable(self.input, fontsize, *attrs)
221 self.SetTable(self.table, True)
221 self.SetTable(self.table, True)
222 self.SetSelectionMode(wx.grid.Grid.wxGridSelectRows)
222 self.SetSelectionMode(wx.grid.Grid.wxGridSelectRows)
223 self.SetDefaultRenderer(IGridRenderer(self.table))
223 self.SetDefaultRenderer(IGridRenderer(self.table))
224 self.EnableEditing(False)
224 self.EnableEditing(False)
225 self.Bind(wx.EVT_KEY_DOWN, self.key_pressed)
225 self.Bind(wx.EVT_KEY_DOWN, self.key_pressed)
226 self.Bind(wx.grid.EVT_GRID_CELL_LEFT_DCLICK, self.cell_doubleclicked)
226 self.Bind(wx.grid.EVT_GRID_CELL_LEFT_DCLICK, self.cell_doubleclicked)
227 self.Bind(wx.grid.EVT_GRID_CELL_LEFT_CLICK, self.cell_leftclicked)
227 self.Bind(wx.grid.EVT_GRID_LABEL_LEFT_DCLICK, self.label_doubleclicked)
228 self.Bind(wx.grid.EVT_GRID_LABEL_LEFT_DCLICK, self.label_doubleclicked)
228 self.Bind(wx.grid.EVT_GRID_LABEL_LEFT_CLICK, self.on_label_leftclick)
229 self.Bind(wx.grid.EVT_GRID_LABEL_LEFT_CLICK, self.on_label_leftclick)
229 self.Bind(wx.grid.EVT_GRID_RANGE_SELECT, self._on_selected_range)
230 self.Bind(wx.grid.EVT_GRID_RANGE_SELECT, self._on_selected_range)
230 self.Bind(wx.grid.EVT_GRID_SELECT_CELL, self._on_selected_cell)
231 self.Bind(wx.grid.EVT_GRID_SELECT_CELL, self._on_selected_cell)
231 self.current_selection = set()
232 self.current_selection = set()
232 self.maxchars = 200
233 self.maxchars = 200
233
234
234 def on_label_leftclick(self, event):
235 def on_label_leftclick(self, event):
235 event.Skip()
236 event.Skip()
236
237
237 def error_output(self, text):
238 def error_output(self, text):
238 wx.Bell()
239 wx.Bell()
239 frame = self.GetParent().GetParent().GetParent()
240 frame = self.GetParent().GetParent().GetParent()
240 frame.SetStatusText(text)
241 frame.SetStatusText(text)
241
242
242 def _on_selected_range(self, event):
243 def _on_selected_range(self, event):
243 # Internal update to the selection tracking lists
244 # Internal update to the selection tracking lists
244 if event.Selecting():
245 if event.Selecting():
245 # adding to the list...
246 # adding to the list...
246 self.current_selection.update(xrange(event.GetTopRow(), event.GetBottomRow()+1))
247 self.current_selection.update(xrange(event.GetTopRow(), event.GetBottomRow()+1))
247 else:
248 else:
248 # removal from list
249 # removal from list
249 for index in xrange( event.GetTopRow(), event.GetBottomRow()+1):
250 for index in xrange( event.GetTopRow(), event.GetBottomRow()+1):
250 self.current_selection.discard(index)
251 self.current_selection.discard(index)
251 event.Skip()
252 event.Skip()
252
253
253 def _on_selected_cell(self, event):
254 def _on_selected_cell(self, event):
254 # Internal update to the selection tracking list
255 # Internal update to the selection tracking list
255 self.current_selection = set([event.GetRow()])
256 self.current_selection = set([event.GetRow()])
256 event.Skip()
257 event.Skip()
257
258
258 def sort(self, key, reverse=False):
259 def sort(self, key, reverse=False):
259 """
260 """
260 Sort the current list of items using the key function ``key``. If
261 Sort the current list of items using the key function ``key``. If
261 ``reverse`` is true the sort order is reversed.
262 ``reverse`` is true the sort order is reversed.
262 """
263 """
263 row = self.GetGridCursorRow()
264 row = self.GetGridCursorRow()
264 col = self.GetGridCursorCol()
265 col = self.GetGridCursorCol()
265 curitem = self.table.items[row] # Remember where the cursor is now
266 curitem = self.table.items[row] # Remember where the cursor is now
266 # Sort items
267 # Sort items
267 def realkey(item):
268 def realkey(item):
268 return key(item)
269 try:
270 return key(item)
271 except (KeyboardInterrupt, SystemExit):
272 raise
273 except Exception:
274 return None
269 try:
275 try:
270 self.table.items = ipipe.deque(sorted(self.table.items, key=realkey, reverse=reverse))
276 self.table.items = ipipe.deque(sorted(self.table.items, key=realkey, reverse=reverse))
271 except TypeError, exc:
277 except TypeError, exc:
272 self.error_output("Exception encountered: %s" % exc)
278 self.error_output("Exception encountered: %s" % exc)
273 return
279 return
274 # Find out where the object under the cursor went
280 # Find out where the object under the cursor went
275 for (i, item) in enumerate(self.table.items):
281 for (i, item) in enumerate(self.table.items):
276 if item is curitem:
282 if item is curitem:
277 self.SetGridCursor(i,col)
283 self.SetGridCursor(i,col)
278 self.MakeCellVisible(i,col)
284 self.MakeCellVisible(i,col)
279 self.Refresh()
285 self.Refresh()
280
286
281 def sortattrasc(self):
287 def sortattrasc(self):
282 """
288 """
283 Sort in ascending order; sorting criteria is the current attribute
289 Sort in ascending order; sorting criteria is the current attribute
284 """
290 """
285 col = self.GetGridCursorCol()
291 col = self.GetGridCursorCol()
286 attr = self.table._displayattrs[col]
292 attr = self.table._displvayattrs[col]
287 frame = self.GetParent().GetParent().GetParent()
293 frame = self.GetParent().GetParent().GetParent()
288 if attr is ipipe.noitem:
294 if attr is ipipe.noitem:
289 self.error_output("no column under cursor")
295 self.error_output("no column under cursor")
290 return
296 return
291 frame.SetStatusText("sort by %s (ascending)" % attr.name())
297 frame.SetStatusText("sort by %s (ascending)" % attr.name())
292 def key(item):
298 def key(item):
293 try:
299 try:
294 return attr.value(item)
300 return attr.value(item)
295 except (KeyboardInterrupt, SystemExit):
301 except (KeyboardInterrupt, SystemExit):
296 raise
302 raise
297 except Exception:
303 except Exception:
298 return None
304 return None
299 self.sort(key)
305 self.sort(key)
300
306
301 def sortattrdesc(self):
307 def sortattrdesc(self):
302 """
308 """
303 Sort in descending order; sorting criteria is the current attribute
309 Sort in descending order; sorting criteria is the current attribute
304 """
310 """
305 col = self.GetGridCursorCol()
311 col = self.GetGridCursorCol()
306 attr = self.table._displayattrs[col]
312 attr = self.table._displayattrs[col]
307 frame = self.GetParent().GetParent().GetParent()
313 frame = self.GetParent().GetParent().GetParent()
308 if attr is ipipe.noitem:
314 if attr is ipipe.noitem:
309 self.error_output("no column under cursor")
315 self.error_output("no column under cursor")
310 return
316 return
311 frame.SetStatusText("sort by %s (descending)" % attr.name())
317 frame.SetStatusText("sort by %s (descending)" % attr.name())
312 def key(item):
318 def key(item):
313 try:
319 try:
314 return attr.value(item)
320 return attr.value(item)
315 except (KeyboardInterrupt, SystemExit):
321 except (KeyboardInterrupt, SystemExit):
316 raise
322 raise
317 except Exception:
323 except Exception:
318 return None
324 return None
319 self.sort(key, reverse=True)
325 self.sort(key, reverse=True)
320
326
321 def label_doubleclicked(self, event):
327 def label_doubleclicked(self, event):
322 row = event.GetRow()
328 row = event.GetRow()
323 col = event.GetCol()
329 col = event.GetCol()
324 if col == -1:
330 if col == -1:
325 self.enter(row)
331 self.enter(row)
326
332
327 def _getvalue(self, row, col):
333 def _getvalue(self, row, col):
328 """
334 """
329 Gets the text which is displayed at ``(row, col)``
335 Gets the text which is displayed at ``(row, col)``
330 """
336 """
331 try:
337 try:
332 value = self.table._displayattrs[col].value(self.table.items[row])
338 value = self.table._displayattrs[col].value(self.table.items[row])
333 (align, width, text) = ipipe.xformat(value, "cell", self.maxchars)
339 (align, width, text) = ipipe.xformat(value, "cell", self.maxchars)
334 except IndexError:
340 except IndexError:
335 raise IndexError
341 raise IndexError
336 except Exception, exc:
342 except Exception, exc:
337 (align, width, text) = ipipe.xformat(exc, "cell", self.maxchars)
343 (align, width, text) = ipipe.xformat(exc, "cell", self.maxchars)
338 return text
344 return text
339
345
340 def search(self, searchtext, startrow=0, startcol=0, search_forward=True):
346 def search(self, searchtext, startrow=0, startcol=0, search_forward=True):
341 """
347 """
342 search for ``searchtext``, starting in ``(startrow, startcol)``;
348 search for ``searchtext``, starting in ``(startrow, startcol)``;
343 if ``search_forward`` is true the direction is "forward"
349 if ``search_forward`` is true the direction is "forward"
344 """
350 """
345 row = startrow
351 row = startrow
346 searchtext = searchtext.lower()
352 searchtext = searchtext.lower()
347 if search_forward:
353 if search_forward:
348 while True:
354 while True:
349 for col in xrange(startcol, self.table.GetNumberCols()):
355 for col in xrange(startcol, self.table.GetNumberCols()):
350 try:
356 try:
351 foo = self.table.GetValue(row, col)
357 foo = self.table.GetValue(row, col)
352 text = self._getvalue(row, col)
358 text = self._getvalue(row, col)
353 if searchtext in text.string().lower():
359 if searchtext in text.string().lower():
354 self.SetGridCursor(row, col)
360 self.SetGridCursor(row, col)
355 self.MakeCellVisible(row, col)
361 self.MakeCellVisible(row, col)
356 return
362 return
357 except IndexError:
363 except IndexError:
358 return
364 return
359 startcol = 0
365 startcol = 0
360 row += 1
366 row += 1
361 else:
367 else:
362 while True:
368 while True:
363 for col in xrange(startcol, -1, -1):
369 for col in xrange(startcol, -1, -1):
364 try:
370 try:
365 foo = self.table.GetValue(row, col)
371 foo = self.table.GetValue(row, col)
366 text = self._getvalue(row, col)
372 text = self._getvalue(row, col)
367 if searchtext in text.string().lower():
373 if searchtext in text.string().lower():
368 self.SetGridCursor(row, col)
374 self.SetGridCursor(row, col)
369 self.MakeCellVisible(row, col)
375 self.MakeCellVisible(row, col)
370 return
376 return
371 except IndexError:
377 except IndexError:
372 return
378 return
373 startcol = self.table.GetNumberCols()-1
379 startcol = self.table.GetNumberCols()-1
374 row -= 1
380 row -= 1
375
381
376 def key_pressed(self, event):
382 def key_pressed(self, event):
377 """
383 """
378 Maps pressed keys to functions
384 Maps pressed keys to functions
379 """
385 """
380 frame = self.GetParent().GetParent().GetParent()
386 frame = self.GetParent().GetParent().GetParent()
381 frame.SetStatusText("")
387 frame.SetStatusText("")
382 sh = event.ShiftDown()
388 sh = event.ShiftDown()
383 ctrl = event.ControlDown()
389 ctrl = event.ControlDown()
384
390
385 keycode = event.GetKeyCode()
391 keycode = event.GetKeyCode()
386 if keycode == ord("P"):
392 if keycode == ord("P"):
387 row = self.GetGridCursorRow()
393 row = self.GetGridCursorRow()
388 if event.ShiftDown():
394 if event.ShiftDown():
389 col = self.GetGridCursorCol()
395 col = self.GetGridCursorCol()
390 self.pickattr(row, col)
396 self.pickattr(row, col)
391 else:
397 else:
392 self.pick(row)
398 self.pick(row)
393 elif keycode == ord("M"):
399 elif keycode == ord("M"):
394 if ctrl:
400 if ctrl:
395 col = self.GetGridCursorCol()
401 col = self.GetGridCursorCol()
396 self.pickrowsattr(sorted(self.current_selection), col)
402 self.pickrowsattr(sorted(self.current_selection), col)
397 else:
403 else:
398 self.pickrows(sorted(self.current_selection))
404 self.pickrows(sorted(self.current_selection))
399 elif keycode in (wx.WXK_BACK, wx.WXK_DELETE, ord("X")) and not (ctrl or sh):
405 elif keycode in (wx.WXK_BACK, wx.WXK_DELETE, ord("X")) and not (ctrl or sh):
400 self.delete_current_notebook()
406 self.delete_current_notebook()
401 elif keycode == ord("E") and not (ctrl or sh):
407 elif keycode == ord("E") and not (ctrl or sh):
402 row = self.GetGridCursorRow()
408 row = self.GetGridCursorRow()
403 self.enter(row)
409 self.enter(row)
404 elif keycode == ord("E") and sh and not ctrl:
410 elif keycode == ord("E") and sh and not ctrl:
405 row = self.GetGridCursorRow()
411 row = self.GetGridCursorRow()
406 col = self.GetGridCursorCol()
412 col = self.GetGridCursorCol()
407 self.enterattr(row, col)
413 self.enterattr(row, col)
408 elif keycode == ord("E") and ctrl:
414 elif keycode == ord("E") and ctrl:
409 row = self.GetGridCursorRow()
415 row = self.GetGridCursorRow()
410 self.SetGridCursor(row, self.GetNumberCols()-1)
416 self.SetGridCursor(row, self.GetNumberCols()-1)
411 elif keycode == wx.WXK_HOME or (keycode == ord("A") and ctrl):
417 elif keycode == wx.WXK_HOME or (keycode == ord("A") and ctrl):
412 row = self.GetGridCursorRow()
418 row = self.GetGridCursorRow()
413 self.SetGridCursor(row, 0)
419 self.SetGridCursor(row, 0)
414 elif keycode == ord("C") and sh:
420 elif keycode == ord("C") and sh:
415 col = self.GetGridCursorCol()
421 col = self.GetGridCursorCol()
416 attr = self.table._displayattrs[col]
422 attr = self.table._displayattrs[col]
417 returnobj = []
423 returnobj = []
418 for i in xrange(self.GetNumberRows()):
424 for i in xrange(self.GetNumberRows()):
419 returnobj.append(self.table._displayattrs[col].value(self.table.items[i]))
425 returnobj.append(self.table._displayattrs[col].value(self.table.items[i]))
420 self.quit(returnobj)
426 self.quit(returnobj)
421 elif keycode in (wx.WXK_ESCAPE, ord("Q")) and not (ctrl or sh):
427 elif keycode in (wx.WXK_ESCAPE, ord("Q")) and not (ctrl or sh):
422 self.quit()
428 self.quit()
423 elif keycode == ord("<"):
429 elif keycode == ord("<"):
424 row = self.GetGridCursorRow()
430 row = self.GetGridCursorRow()
425 col = self.GetGridCursorCol()
431 col = self.GetGridCursorCol()
426 if not event.ShiftDown():
432 if not event.ShiftDown():
427 newcol = col - 1
433 newcol = col - 1
428 if newcol >= 0:
434 if newcol >= 0:
429 self.SetGridCursor(row, col - 1)
435 self.SetGridCursor(row, col - 1)
430 else:
436 else:
431 newcol = col + 1
437 newcol = col + 1
432 if newcol < self.GetNumberCols():
438 if newcol < self.GetNumberCols():
433 self.SetGridCursor(row, col + 1)
439 self.SetGridCursor(row, col + 1)
434 elif keycode == ord("D"):
440 elif keycode == ord("D"):
435 col = self.GetGridCursorCol()
441 col = self.GetGridCursorCol()
436 row = self.GetGridCursorRow()
442 row = self.GetGridCursorRow()
437 if not sh:
443 if not sh:
438 self.detail(row, col)
444 self.detail(row, col)
439 else:
445 else:
440 self.detail_attr(row, col)
446 self.detail_attr(row, col)
441 elif keycode == ord("F") and ctrl:
447 elif keycode == ord("F") and ctrl:
442 frame.enter_searchtext(event)
448 frame.enter_searchtext(event)
443 elif keycode == wx.WXK_F3:
449 elif keycode == wx.WXK_F3:
444 if sh:
450 if sh:
445 frame.find_previous(event)
451 frame.find_previous(event)
446 else:
452 else:
447 frame.find_next(event)
453 frame.find_next(event)
448 elif keycode == ord("V"):
454 elif keycode == ord("V"):
449 if sh:
455 if sh:
450 self.sortattrdesc()
456 self.sortattrdesc()
451 else:
457 else:
452 self.sortattrasc()
458 self.sortattrasc()
459 elif keycode == wx.WXK_DOWN:
460 row = self.GetGridCursorRow()
461 try:
462 item = self.table.items[row+1]
463 except IndexError:
464 item = self.table.items[row]
465 self.set_footer(item)
466 event.Skip()
467 elif keycode == wx.WXK_UP:
468 row = self.GetGridCursorRow()
469 if row >= 1:
470 item = self.table.items[row-1]
471 else:
472 item = self.table.items[row]
473 self.set_footer(item)
474 event.Skip()
475 elif keycode == wx.WXK_RIGHT:
476 row = self.GetGridCursorRow()
477 item = self.table.items[row]
478 self.set_footer(item)
479 event.Skip()
480 elif keycode == wx.WXK_LEFT:
481 row = self.GetGridCursorRow()
482 item = self.table.items[row]
483 self.set_footer(item)
484 event.Skip()
453 else:
485 else:
454 event.Skip()
486 event.Skip()
455
487
456 def delete_current_notebook(self):
488 def delete_current_notebook(self):
457 """
489 """
458 deletes the current notebook tab
490 deletes the current notebook tab
459 """
491 """
460 panel = self.GetParent()
492 panel = self.GetParent()
461 nb = panel.GetParent()
493 nb = panel.GetParent()
462 current = nb.GetSelection()
494 current = nb.GetSelection()
463 count = nb.GetPageCount()
495 count = nb.GetPageCount()
464 if count > 1:
496 if count > 1:
465 for i in xrange(count-1, current-1, -1):
497 for i in xrange(count-1, current-1, -1):
466 nb.DeletePage(i)
498 nb.DeletePage(i)
467 nb.GetCurrentPage().grid.SetFocus()
499 nb.GetCurrentPage().grid.SetFocus()
468 else:
500 else:
469 frame = nb.GetParent()
501 frame = nb.GetParent()
470 frame.SetStatusText("This is the last level!")
502 frame.SetStatusText("This is the last level!")
471
503
472 def _doenter(self, value, *attrs):
504 def _doenter(self, value, *attrs):
473 """
505 """
474 "enter" a special item resulting in a new notebook tab
506 "enter" a special item resulting in a new notebook tab
475 """
507 """
476 panel = self.GetParent()
508 panel = self.GetParent()
477 nb = panel.GetParent()
509 nb = panel.GetParent()
478 frame = nb.GetParent()
510 frame = nb.GetParent()
479 current = nb.GetSelection()
511 current = nb.GetSelection()
480 count = nb.GetPageCount()
512 count = nb.GetPageCount()
481 try: # if we want to enter something non-iterable, e.g. a function
513 try: # if we want to enter something non-iterable, e.g. a function
482 if current + 1 == count and value is not self.input: # we have an event in the last tab
514 if current + 1 == count and value is not self.input: # we have an event in the last tab
483 frame._add_notebook(value, *attrs)
515 frame._add_notebook(value, *attrs)
484 elif value != self.input: # we have to delete all tabs newer than [panel] first
516 elif value != self.input: # we have to delete all tabs newer than [panel] first
485 for i in xrange(count-1, current, -1): # some tabs don't close if we don't close in *reverse* order
517 for i in xrange(count-1, current, -1): # some tabs don't close if we don't close in *reverse* order
486 nb.DeletePage(i)
518 nb.DeletePage(i)
487 frame._add_notebook(value)
519 frame._add_notebook(value)
488 except TypeError, exc:
520 except TypeError, exc:
489 if exc.__class__.__module__ == "exceptions":
521 if exc.__class__.__module__ == "exceptions":
490 msg = "%s: %s" % (exc.__class__.__name__, exc)
522 msg = "%s: %s" % (exc.__class__.__name__, exc)
491 else:
523 else:
492 msg = "%s.%s: %s" % (exc.__class__.__module__, exc.__class__.__name__, exc)
524 msg = "%s.%s: %s" % (exc.__class__.__module__, exc.__class__.__name__, exc)
493 frame.SetStatusText(msg)
525 frame.SetStatusText(msg)
494
526
495 def enterattr(self, row, col):
527 def enterattr(self, row, col):
496 try:
528 try:
497 attr = self.table._displayattrs[col]
529 attr = self.table._displayattrs[col]
498 value = attr.value(self.table.items[row])
530 value = attr.value(self.table.items[row])
499 except Exception, exc:
531 except Exception, exc:
500 self.error_output(str(exc))
532 self.error_output(str(exc))
501 else:
533 else:
502 self._doenter(value)
534 self._doenter(value)
503
535
536 def set_footer(self, item):
537 frame = self.GetParent().GetParent().GetParent()
538 frame.SetStatusText(" ".join([str(text) for (style, text) in ipipe.xformat(item, "footer", 20)[2]]))
539
504 def enter(self, row):
540 def enter(self, row):
505 try:
541 try:
506 value = self.table.items[row]
542 value = self.table.items[row]
507 except Exception, exc:
543 except Exception, exc:
508 self.error_output(str(exc))
544 self.error_output(str(exc))
509 else:
545 else:
510 self._doenter(value)
546 self._doenter(value)
511
547
512 def detail(self, row, col):
548 def detail(self, row, col):
513 """
549 """
514 shows a detail-view of the current cell
550 shows a detail-view of the current cell
515 """
551 """
516 try:
552 try:
517 attr = self.table._displayattrs[col]
553 attr = self.table._displayattrs[col]
518 item = self.table.items[row]
554 item = self.table.items[row]
519 except Exception, exc:
555 except Exception, exc:
520 self.error_output(str(exc))
556 self.error_output(str(exc))
521 else:
557 else:
522 attrs = [ipipe.AttributeDetail(item, attr) for attr in ipipe.xattrs(item, "detail")]
558 attrs = [ipipe.AttributeDetail(item, attr) for attr in ipipe.xattrs(item, "detail")]
523 self._doenter(attrs)
559 self._doenter(attrs)
524
560
525 def detail_attr(self, row, col):
561 def detail_attr(self, row, col):
526 try:
562 try:
527 attr = self.table._displayattrs[col]
563 attr = self.table._displayattrs[col]
528 item = attr.value(self.table.items[row])
564 item = attr.value(self.table.items[row])
529 except Exception, exc:
565 except Exception, exc:
530 self.error_output(str(exc))
566 self.error_output(str(exc))
531 else:
567 else:
532 attrs = [ipipe.AttributeDetail(item, attr) for attr in ipipe.xattrs(item, "detail")]
568 attrs = [ipipe.AttributeDetail(item, attr) for attr in ipipe.xattrs(item, "detail")]
533 self._doenter(attrs)
569 self._doenter(attrs)
534
570
535 def quit(self, returnobj=None):
571 def quit(self, returnobj=None):
536 """
572 """
537 quit
573 quit
538 """
574 """
539 frame = self.GetParent().GetParent().GetParent()
575 frame = self.GetParent().GetParent().GetParent()
540 if frame.helpdialog:
576 if frame.helpdialog:
541 frame.helpdialog.Destroy()
577 frame.helpdialog.Destroy()
542 frame.parent.returnobj = returnobj
578 frame.parent.returnobj = returnobj
543 frame.Close()
579 frame.Close()
544 frame.Destroy()
580 frame.Destroy()
545
581
546 def cell_doubleclicked(self, event):
582 def cell_doubleclicked(self, event):
547 self.enterattr(event.GetRow(), event.GetCol())
583 self.enterattr(event.GetRow(), event.GetCol())
584 event.Skip()
548
585
586 def cell_leftclicked(self, event):
587 row = event.GetRow()
588 item = self.table.items[row]
589 self.set_footer(item)
590 event.Skip()
591
549 def pick(self, row):
592 def pick(self, row):
550 """
593 """
551 pick a single row and return to the IPython prompt
594 pick a single row and return to the IPython prompt
552 """
595 """
553 try:
596 try:
554 value = self.table.items[row]
597 value = self.table.items[row]
555 except Exception, exc:
598 except Exception, exc:
556 self.error_output(str(exc))
599 self.error_output(str(exc))
557 else:
600 else:
558 self.quit(value)
601 self.quit(value)
559
602
560 def pickrows(self, rows):
603 def pickrows(self, rows):
561 """
604 """
562 pick multiple rows and return to the IPython prompt
605 pick multiple rows and return to the IPython prompt
563 """
606 """
564 try:
607 try:
565 value = [self.table.items[row] for row in rows]
608 value = [self.table.items[row] for row in rows]
566 except Exception, exc:
609 except Exception, exc:
567 self.error_output(str(exc))
610 self.error_output(str(exc))
568 else:
611 else:
569 self.quit(value)
612 self.quit(value)
570
613
571 def pickrowsattr(self, rows, col):
614 def pickrowsattr(self, rows, col):
572 """"
615 """"
573 pick one column from multiple rows
616 pick one column from multiple rows
574 """
617 """
575 values = []
618 values = []
576 try:
619 try:
577 attr = self.table._displayattrs[col]
620 attr = self.table._displayattrs[col]
578 for row in rows:
621 for row in rows:
579 try:
622 try:
580 values.append(attr.value(self.table.items[row]))
623 values.append(attr.value(self.table.items[row]))
581 except (SystemExit, KeyboardInterrupt):
624 except (SystemExit, KeyboardInterrupt):
582 raise
625 raise
583 except Exception:
626 except Exception:
584 raise #pass
627 raise #pass
585 except Exception, exc:
628 except Exception, exc:
586 self.error_output(str(exc))
629 self.error_output(str(exc))
587 else:
630 else:
588 self.quit(values)
631 self.quit(values)
589
632
590 def pickattr(self, row, col):
633 def pickattr(self, row, col):
591 try:
634 try:
592 attr = self.table._displayattrs[col]
635 attr = self.table._displayattrs[col]
593 value = attr.value(self.table.items[row])
636 value = attr.value(self.table.items[row])
594 except Exception, exc:
637 except Exception, exc:
595 self.error_output(str(exc))
638 self.error_output(str(exc))
596 else:
639 else:
597 self.quit(value)
640 self.quit(value)
598
641
599
642
600 class IGridPanel(wx.Panel):
643 class IGridPanel(wx.Panel):
601 # Each IGridPanel contains an IGridGrid
644 # Each IGridPanel contains an IGridGrid
602 def __init__(self, parent, input, *attrs):
645 def __init__(self, parent, input, *attrs):
603 wx.Panel.__init__(self, parent, -1)
646 wx.Panel.__init__(self, parent, -1)
604 self.grid = IGridGrid(self, input, *attrs)
647 self.grid = IGridGrid(self, input, *attrs)
605 sizer = wx.BoxSizer(wx.VERTICAL)
648 sizer = wx.BoxSizer(wx.VERTICAL)
606 sizer.Add(self.grid, proportion=1, flag=wx.EXPAND | wx.ALL, border=10)
649 sizer.Add(self.grid, proportion=1, flag=wx.EXPAND | wx.ALL, border=10)
607 self.SetSizer(sizer)
650 self.SetSizer(sizer)
608 sizer.Fit(self)
651 sizer.Fit(self)
609 sizer.SetSizeHints(self)
652 sizer.SetSizeHints(self)
610
653
611
654
612 class IGridHTMLHelp(wx.Frame):
655 class IGridHTMLHelp(wx.Frame):
613 def __init__(self, parent, title, filename, size):
656 def __init__(self, parent, title, filename, size):
614 wx.Frame.__init__(self, parent, -1, title, size=size)
657 wx.Frame.__init__(self, parent, -1, title, size=size)
615 html = wx.html.HtmlWindow(self)
658 html = wx.html.HtmlWindow(self)
616 if "gtk2" in wx.PlatformInfo:
659 if "gtk2" in wx.PlatformInfo:
617 html.SetStandardFonts()
660 html.SetStandardFonts()
618 html.LoadFile(filename)
661 html.LoadFile(filename)
619
662
620
663
621 class IGridFrame(wx.Frame):
664 class IGridFrame(wx.Frame):
622 maxtitlelen = 30
665 maxtitlelen = 30
623
666
624 def __init__(self, parent, input):
667 def __init__(self, parent, input):
625 wx.Frame.__init__(self, None, title="IGrid", size=(640, 480))
668 title = " ".join([str(x[1]) for x in ipipe.xformat(input, "header", 20)[2]])
669 wx.Frame.__init__(self, None, title=title, size=(640, 480))
626 self.menubar = wx.MenuBar()
670 self.menubar = wx.MenuBar()
627 self.menucounter = 100
671 self.menucounter = 100
628 self.m_help = wx.Menu()
672 self.m_help = wx.Menu()
629 self.m_search = wx.Menu()
673 self.m_search = wx.Menu()
630 self.m_sort = wx.Menu()
674 self.m_sort = wx.Menu()
631 self.notebook = wx.Notebook(self, -1, style=0)
675 self.notebook = wx.Notebook(self, -1, style=0)
632 self.statusbar = self.CreateStatusBar(1, wx.ST_SIZEGRIP)
676 self.statusbar = self.CreateStatusBar(1, wx.ST_SIZEGRIP)
633 self.parent = parent
677 self.parent = parent
634 self._add_notebook(input)
678 self._add_notebook(input)
635 self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
679 self.Bind(wx.EVT_CLOSE, self.OnCloseWindow)
636 self.makemenu(self.m_sort, "&Sort (asc)", "Sort ascending", self.sortasc)
680 self.makemenu(self.m_sort, "&Sort (asc)", "Sort ascending", self.sortasc)
637 self.makemenu(self.m_sort, "Sort (&desc)", "Sort descending", self.sortdesc)
681 self.makemenu(self.m_sort, "Sort (&desc)", "Sort descending", self.sortdesc)
638 self.makemenu(self.m_help, "&Help", "Help", self.display_help)
682 self.makemenu(self.m_help, "&Help", "Help", self.display_help)
639 self.makemenu(self.m_help, "&Show help in browser", "Show help in browser", self.display_help_in_browser)
683 self.makemenu(self.m_help, "&Show help in browser", "Show help in browser", self.display_help_in_browser)
640 self.makemenu(self.m_search, "&Find text", "Find text", self.enter_searchtext)
684 self.makemenu(self.m_search, "&Find text", "Find text", self.enter_searchtext)
641 self.makemenu(self.m_search, "Find by &expression", "Find by expression", self.enter_searchexpression)
685 self.makemenu(self.m_search, "Find by &expression", "Find by expression", self.enter_searchexpression)
642 self.makemenu(self.m_search, "Find &next", "Find next", self.find_next)
686 self.makemenu(self.m_search, "Find &next", "Find next", self.find_next)
643 self.makemenu(self.m_search, "Find &previous", "Find previous", self.find_previous)
687 self.makemenu(self.m_search, "Find &previous", "Find previous", self.find_previous)
644 self.menubar.Append(self.m_search, "&Find")
688 self.menubar.Append(self.m_search, "&Find")
645 self.menubar.Append(self.m_sort, "&Sort")
689 self.menubar.Append(self.m_sort, "&Sort")
646 self.menubar.Append(self.m_help, "&Help")
690 self.menubar.Append(self.m_help, "&Help")
647 self.SetMenuBar(self.menubar)
691 self.SetMenuBar(self.menubar)
648 self.searchtext = ""
692 self.searchtext = ""
649 self.helpdialog = None
693 self.helpdialog = None
650
694
651 def sortasc(self, event):
695 def sortasc(self, event):
652 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
696 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
653 grid.sortattrasc()
697 grid.sortattrasc()
654
698
655 def sortdesc(self, event):
699 def sortdesc(self, event):
656 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
700 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
657 grid.sortattrdesc()
701 grid.sortattrdesc()
658
702
659 def find_previous(self, event):
703 def find_previous(self, event):
660 """
704 """
661 find previous occurrences
705 find previous occurrences
662 """
706 """
663 if self.searchtext:
707 if self.searchtext:
664 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
708 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
665 row = grid.GetGridCursorRow()
709 row = grid.GetGridCursorRow()
666 col = grid.GetGridCursorCol()
710 col = grid.GetGridCursorCol()
667 if col-1 >= 0:
711 if col-1 >= 0:
668 grid.search(self.searchtext, row, col-1, False)
712 grid.search(self.searchtext, row, col-1, False)
669 else:
713 else:
670 grid.search(self.searchtext, row-1, grid.table.GetNumberCols()-1, False)
714 grid.search(self.searchtext, row-1, grid.table.GetNumberCols()-1, False)
671 else:
715 else:
672 self.enter_searchtext(event)
716 self.enter_searchtext(event)
673
717
674 def find_next(self, event):
718 def find_next(self, event):
675 """
719 """
676 find the next occurrence
720 find the next occurrence
677 """
721 """
678 if self.searchtext:
722 if self.searchtext:
679 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
723 grid = self.notebook.GetPage(self.notebook.GetSelection()).grid
680 row = grid.GetGridCursorRow()
724 row = grid.GetGridCursorRow()
681 col = grid.GetGridCursorCol()
725 col = grid.GetGridCursorCol()
682 if col+1 < grid.table.GetNumberCols():
726 if col+1 < grid.table.GetNumberCols():
683 grid.search(self.searchtext, row, col+1)
727 grid.search(self.searchtext, row, col+1)
684 else:
728 else:
685 grid.search(self.searchtext, row+1, 0)
729 grid.search(self.searchtext, row+1, 0)
686 else:
730 else:
687 self.enter_searchtext(event)
731 self.enter_searchtext(event)
688
732
689 def display_help(self, event):
733 def display_help(self, event):
690 """
734 """
691 Display a help dialog
735 Display a help dialog
692 """
736 """
693 if self.helpdialog:
737 if self.helpdialog:
694 self.helpdialog.Destroy()
738 self.helpdialog.Destroy()
695 filename = os.path.join(os.path.dirname(__file__), "igrid_help.html")
739 filename = os.path.join(os.path.dirname(__file__), "igrid_help.html")
696 self.helpdialog = IGridHTMLHelp(None, title="Help", filename=filename, size=wx.Size(600,400))
740 self.helpdialog = IGridHTMLHelp(None, title="Help", filename=filename, size=wx.Size(600,400))
697 self.helpdialog.Show()
741 self.helpdialog.Show()
698
742
699 def display_help_in_browser(self, event):
743 def display_help_in_browser(self, event):
700 """
744 """
701 Show the help-HTML in a browser (as a ``HtmlWindow`` does not understand
745 Show the help-HTML in a browser (as a ``HtmlWindow`` does not understand
702 CSS this looks better)
746 CSS this looks better)
703 """
747 """
704 filename = urllib.pathname2url(os.path.abspath(os.path.join(os.path.dirname(__file__), "igrid_help.html")))
748 filename = urllib.pathname2url(os.path.abspath(os.path.join(os.path.dirname(__file__), "igrid_help.html")))
705 if not filename.startswith("file"):
749 if not filename.startswith("file"):
706 filename = "file:" + filename
750 filename = "file:" + filename
707 webbrowser.open(filename, new=1, autoraise=True)
751 webbrowser.open(filename, new=1, autoraise=True)
708
752
709 def enter_searchexpression(self, event):
753 def enter_searchexpression(self, event):
710 pass
754 pass
711
755
712 def makemenu(self, menu, label, help, cmd):
756 def makemenu(self, menu, label, help, cmd):
713 menu.Append(self.menucounter, label, help)
757 menu.Append(self.menucounter, label, help)
714 self.Bind(wx.EVT_MENU, cmd, id=self.menucounter)
758 self.Bind(wx.EVT_MENU, cmd, id=self.menucounter)
715 self.menucounter += 1
759 self.menucounter += 1
716
760
717 def _add_notebook(self, input, *attrs):
761 def _add_notebook(self, input, *attrs):
718 # Adds another notebook which has the starting object ``input``
762 # Adds another notebook which has the starting object ``input``
719 panel = IGridPanel(self.notebook, input, *attrs)
763 panel = IGridPanel(self.notebook, input, *attrs)
720 text = str(ipipe.xformat(input, "header", self.maxtitlelen)[2])
764 text = str(ipipe.xformat(input, "header", self.maxtitlelen)[2])
721 if len(text) >= self.maxtitlelen:
765 if len(text) >= self.maxtitlelen:
722 text = text[:self.maxtitlelen].rstrip(".") + "..."
766 text = text[:self.maxtitlelen].rstrip(".") + "..."
723 self.notebook.AddPage(panel, text, True)
767 self.notebook.AddPage(panel, text, True)
724 panel.grid.SetFocus()
768 panel.grid.SetFocus()
725 self.Layout()
769 self.Layout()
726
770
727 def OnCloseWindow(self, event):
771 def OnCloseWindow(self, event):
728 self.Destroy()
772 self.Destroy()
729
773
730 def enter_searchtext(self, event):
774 def enter_searchtext(self, event):
731 # Displays a dialog asking for the searchtext
775 # Displays a dialog asking for the searchtext
732 dlg = wx.TextEntryDialog(self, "Find:", "Find in list")
776 dlg = wx.TextEntryDialog(self, "Find:", "Find in list")
733 if dlg.ShowModal() == wx.ID_OK:
777 if dlg.ShowModal() == wx.ID_OK:
734 self.searchtext = dlg.GetValue()
778 self.searchtext = dlg.GetValue()
735 self.notebook.GetPage(self.notebook.GetSelection()).grid.search(self.searchtext, 0, 0)
779 self.notebook.GetPage(self.notebook.GetSelection()).grid.search(self.searchtext, 0, 0)
736 dlg.Destroy()
780 dlg.Destroy()
737
781
738
782
739 class igrid(ipipe.Display):
783 class igrid(ipipe.Display):
740 """
784 """
741 This is a wx-based display object that can be used instead of ``ibrowse``
785 This is a wx-based display object that can be used instead of ``ibrowse``
742 (which is curses-based) or ``idump`` (which simply does a print).
786 (which is curses-based) or ``idump`` (which simply does a print).
743 """
787 """
744 def display(self):
788 def display(self):
745 self.returnobj = None
789 self.returnobj = None
746 app = wx.App()
790 app = wx.App()
747 self.frame = IGridFrame(self, self.input)
791 self.frame = IGridFrame(self, self.input)
748 self.frame.Show()
792 self.frame.Show()
749 app.SetTopWindow(self.frame)
793 app.SetTopWindow(self.frame)
750 self.frame.Raise()
794 self.frame.Raise()
751 app.MainLoop()
795 app.MainLoop()
752 return self.returnobj
796 return self.returnobj
1 NO CONTENT: modified file
NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now