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 |
# |
# |
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 |
18 |
|
|
19 |
|
from Thuban import _ |
20 |
|
|
21 |
# FIXME: the wx_value_type_map should be moved from tableview to a |
# FIXME: the wx_value_type_map should be moved from tableview to a |
22 |
# separate module |
# separate module |
23 |
from tableview import wx_value_type_map |
from tableview import wx_value_type_map |
31 |
def __init__(self, parent, id): |
def __init__(self, parent, id): |
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 = {} |
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] |
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 |
177 |
|
|
178 |
# Called when the grid needs to display labels |
# Called when the grid needs to display labels |
179 |
def GetColLabelValue(self, col): |
def GetColLabelValue(self, col): |
180 |
return "Value" |
return _("Value") |
181 |
|
|
182 |
def GetRowLabelValue(self, row): |
def GetRowLabelValue(self, row): |
183 |
if row < self.num_rows: |
if row < self.num_rows: |