/[thuban]/branches/WIP-pyshapelib-bramz/Thuban/UI/controls.py
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/Thuban/UI/controls.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 374 by jan, Mon Jan 27 14:20:02 2003 UTC revision 1035 by jan, Mon May 26 17:03:08 2003 UTC
# Line 1  Line 1 
1  # Copyright (c) 2001, 2002 by Intevation GmbH  # Copyright (c) 2001, 2002, 2003 by Intevation GmbH
2  # Authors:  # Authors:
3  # Bernhard Herzog <[email protected]>  # Bernhard Herzog <[email protected]>
4  #  #
# Line 11  Line 11 
11  __version__ = "$Revision$"  __version__ = "$Revision$"
12    
13  from wxPython.wx import wxListCtrl, wxLC_REPORT, wxLIST_AUTOSIZE_USEHEADER, \  from wxPython.wx import wxListCtrl, wxLC_REPORT, wxLIST_AUTOSIZE_USEHEADER, \
14       EVT_LIST_ITEM_SELECTED, true, false       EVT_LIST_ITEM_SELECTED
15  from wxPython.grid import wxPyGridTableBase, wxGrid, wxGRID_VALUE_STRING, \  from wxPython.grid import wxPyGridTableBase, wxGrid, wxGRID_VALUE_STRING, \
16       wxGridTableMessage, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, \       wxGridTableMessage, wxGRIDTABLE_NOTIFY_ROWS_APPENDED, \
17       wxGRIDTABLE_NOTIFY_ROWS_DELETED, wxGRIDTABLE_REQUEST_VIEW_GET_VALUES       wxGRIDTABLE_NOTIFY_ROWS_DELETED, wxGRIDTABLE_REQUEST_VIEW_GET_VALUES
# Line 32  class RecordListCtrl(wxListCtrl): Line 32  class RecordListCtrl(wxListCtrl):
32          wxListCtrl.__init__(self, parent, id, style = wxLC_REPORT)          wxListCtrl.__init__(self, parent, id, style = wxLC_REPORT)
33    
34          self.InsertColumn(0, _("Field"))          self.InsertColumn(0, _("Field"))
35          self.SetColumnWidth(0, wxLIST_AUTOSIZE_USEHEADER)          self.SetColumnWidth(0, 200)
36          self.InsertColumn(1, _("Value"))          self.InsertColumn(1, _("Value"))
37          self.SetColumnWidth(1, wxLIST_AUTOSIZE_USEHEADER)          self.SetColumnWidth(1, 100)
38    
39          # vaues maps row numbers to the corresponding python values          # vaues maps row numbers to the corresponding python values
40          self.values = {}          self.values = {}
# Line 45  class RecordListCtrl(wxListCtrl): Line 45  class RecordListCtrl(wxListCtrl):
45          values = {}          values = {}
46    
47          if shape is not None:          if shape is not None:
             num_cols = table.field_count()  
   
48              names = []              names = []
49              for i in range(num_cols):              for col in table.Columns():
50                  type, name, length, decc = table.field_info(i)                  names.append(col.name)
51                  names.append(name)              record = table.ReadRowAsDict(shape)
             record = table.read_record(shape)  
52    
53              for i in range(len(names)):              for i in range(len(names)):
54                  name = names[i]                  name = names[i]
# Line 104  class RecordTable(wxPyGridTableBase): Line 101  class RecordTable(wxPyGridTableBase):
101          if record_index is not None:          if record_index is not None:
102              self.table = table              self.table = table
103              self.record_index = record_index              self.record_index = record_index
104              self.record = table.read_record(record_index)              self.record = table.ReadRowAsDict(record_index)
105    
106              # we have one row for each field in the table              # we have one row for each field in the table
107              self.num_rows = table.field_count()              self.num_rows = table.NumColumns()
108    
109              # extract the field types and names of the row we're showing.              # extract the field types and names of the row we're showing.
110              self.rows = []              self.rows = []
111              for i in range(self.num_rows):              for i in range(self.num_rows):
112                  type, name, len, decc = table.field_info(i)                  col = table.Column(i)
113                  self.rows.append((name, wx_value_type_map[type], len, decc))                  self.rows.append((col.name, wx_value_type_map[col.type]))
114              self.notify_get_values()              self.notify_get_values()
115          else:          else:
116              # make the grid empty              # make the grid empty
# Line 222  class RecordGridCtrl(wxGrid): Line 219  class RecordGridCtrl(wxGrid):
219          # of the table and will destroy it when done. Otherwise you          # of the table and will destroy it when done. Otherwise you
220          # would need to keep a reference to it and call it's Destroy          # would need to keep a reference to it and call it's Destroy
221          # method later.          # method later.
222          self.SetTable(self.table, true)          self.SetTable(self.table, True)
223    
224          #self.SetMargins(0,0)          #self.SetMargins(0,0)
225          self.AutoSizeColumn(0, true)          self.AutoSizeColumn(0, True)
226    
227          #self.SetSelectionMode(wxGrid.wxGridSelectRows)          #self.SetSelectionMode(wxGrid.wxGridSelectRows)
228    

Legend:
Removed from v.374  
changed lines
  Added in v.1035

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26