1 |
|
2003-05-27 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/mainwindow.py: Remove the Table/Hide menu item. Its |
4 |
|
effect can be achieved by simply closing the window showing the |
5 |
|
table. |
6 |
|
(MainWindow.TableHide): Removed. |
7 |
|
(main_menu): Removed "table_hide" |
8 |
|
|
9 |
|
2003-05-27 Frank Koormann <[email protected]> |
10 |
|
|
11 |
|
Fix legend tree display problems under Win32 |
12 |
|
|
13 |
|
* Thuban/UI/legend.py: BMP_SIZE_W = 15 |
14 |
|
(LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title. |
15 |
|
(LegendTree.__FillTreeLayer): Explicitely set SelectedImage. |
16 |
|
|
17 |
|
* Resources/Bitmaps/legend_icon_map.xpm: New icon for legend. |
18 |
|
|
19 |
|
2003-05-27 Jan-Oliver Wagner <[email protected]> |
20 |
|
|
21 |
|
* Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter |
22 |
|
'after' now allows to insert separators almost anywhere in the menu. |
23 |
|
|
24 |
|
2003-05-27 Frank Koormann <[email protected]> |
25 |
|
|
26 |
|
* Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the |
27 |
|
"S" of selection box label to hint on hot key (Alt-S). Works under |
28 |
|
Win32 but is ignored under GTK. |
29 |
|
|
30 |
|
2003-05-26 Frank Koormann <[email protected]> |
31 |
|
|
32 |
|
* Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout): |
33 |
|
Center Choices. |
34 |
|
|
35 |
|
2003-05-26 Bernhard Herzog <[email protected]> |
36 |
|
|
37 |
|
Remove the Precision methods again. They're too DBF specific to be |
38 |
|
part of the table interface and they're only used in table_to_dbf |
39 |
|
anyway. |
40 |
|
|
41 |
|
* Thuban/Model/transientdb.py (TransientTableBase.Width):Use a |
42 |
|
fixed precision of 12 for doubles. |
43 |
|
(TransientTableBase.Precision): Removed |
44 |
|
(AutoTransientTable.Width): Delegate to self.table. |
45 |
|
|
46 |
|
* Thuban/Model/table.py (DBFTable.Precision) |
47 |
|
(MemoryTable.Precision): Removed. |
48 |
|
(MemoryTable.Width): Use a fixed precision of 12 for doubles. |
49 |
|
(table_to_dbf): Use a fixed precision of 12 for floats unless the |
50 |
|
column object specifies something else. |
51 |
|
|
52 |
|
* test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New. |
53 |
|
test for table_to_dbf |
54 |
|
|
55 |
|
2003-05-26 Bernhard Herzog <[email protected]> |
56 |
|
|
57 |
|
* test/test_transientdb.py |
58 |
|
(TestTransientTable.run_iceland_political_tests): Fix a comment. |
59 |
|
|
60 |
|
2003-05-26 Bernhard Herzog <[email protected]> |
61 |
|
|
62 |
|
* Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real |
63 |
|
implementation. Mark parts of the file format strings for |
64 |
|
localization. |
65 |
|
|
66 |
|
* Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf |
67 |
|
file and add the table to the tables managed by the session |
68 |
|
|
69 |
|
* test/test_session.py (TestSessionSimple.test_open_table_file): |
70 |
|
New. test case for OpenTableFile |
71 |
|
|
72 |
|
2003-05-26 Jan-Oliver Wagner <[email protected]> |
73 |
|
|
74 |
|
* Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py, |
75 |
|
Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py, |
76 |
|
Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py: |
77 |
|
Replace the true/false of wxWindows by True/False of Python 2.2.1. |
78 |
|
|
79 |
|
2003-05-26 Jan-Oliver Wagner <[email protected]> |
80 |
|
|
81 |
|
* Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is |
82 |
|
already a selection present, update the grid accordingly. |
83 |
|
|
84 |
|
* Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog |
85 |
|
resizeable and increase its initial size. |
86 |
|
|
87 |
|
2003-05-26 Frank Koormann <[email protected]> |
88 |
|
|
89 |
|
Table export functionality |
90 |
|
|
91 |
|
* Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width): |
92 |
|
Return width (in characters) for a column. |
93 |
|
(DBFTable.Precision, MemoryTable.Precision): Return decimal precision. |
94 |
|
(table_to_dbf): Write table to dbf file. |
95 |
|
(table_to_csv): Write table to csv file. |
96 |
|
|
97 |
|
* Thuban/Model/transientdb.py (TransientTableBase.Width, |
98 |
|
TransientTableBase.Precision): Return column width and precision. |
99 |
|
|
100 |
|
* Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf |
101 |
|
or table_to_csv depending on file selection. |
102 |
|
|
103 |
|
* test/test_dbf_table.py: |
104 |
|
Test table_to_dbf (extension of former part of test). |
105 |
|
|
106 |
|
* test/test_csv_table.py: |
107 |
|
Test table_to_csv. |
108 |
|
|
109 |
|
2003-05-23 Jan-Oliver Wagner <[email protected]> |
110 |
|
|
111 |
|
* Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings. |
112 |
|
Use QueryTableFrame instead of TableFrame. |
113 |
|
|
114 |
|
* Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the |
115 |
|
table window with 'Layer Table:' instead of 'Table:'. |
116 |
|
|
117 |
|
2003-05-23 Jan-Oliver Wagner <[email protected]> |
118 |
|
|
119 |
|
Give all tables a title via mix-in TitledObject.LayerShowTable |
120 |
|
|
121 |
|
* Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue' |
122 |
|
only if it exists. |
123 |
|
|
124 |
|
* Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject |
125 |
|
and call its init-method with a default title. Remove Title() method. |
126 |
|
|
127 |
|
* Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable, |
128 |
|
AutoTransientTable): mix-in TitledObject and call its init-method with |
129 |
|
a default title. Remove Title() method. |
130 |
|
|
131 |
|
2003-05-23 Bernhard Herzog <[email protected]> |
132 |
|
|
133 |
|
* Thuban/Model/session.py (Session.AddShapeStore): Define |
134 |
|
AddShapeStore analogously to AddTable. |
135 |
|
|
136 |
|
* test/test_session.py (TestSessionSimple.test_add_shapestore): |
137 |
|
New. Test for AddShapeStore |
138 |
|
|
139 |
|
2003-05-23 Jan-Oliver Wagner <[email protected]> |
140 |
|
|
141 |
|
Introducing QueryTableFrame and a very coarse ShowTable implementation. |
142 |
|
|
143 |
|
* Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the |
144 |
|
class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame. |
145 |
|
The latter implements the selection GUI without dependency on a layer. |
146 |
|
LayerTableFrame now is derived from QueryTableFrame and connects |
147 |
|
to a layer. |
148 |
|
|
149 |
|
* Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse |
150 |
|
implementation that still needs work. |
151 |
|
|
152 |
|
* Thuban/Model/layer.py (Layer.TreeInfo): Added filename. |
153 |
|
|
154 |
|
2003-05-22 Frank Koormann <[email protected]> |
155 |
|
|
156 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.__init__): |
157 |
|
Added "outer_join = False" as optional parameter. |
158 |
|
(TransientJoinedTable.create): If outer join is true, perform a |
159 |
|
"LEFT OUTER JOIN" instead of "JOIN", which preserves all records of |
160 |
|
the left table. Records not matching are filled with 0 / None. |
161 |
|
|
162 |
|
* Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join. |
163 |
|
(JoinDialog.OnJoin): Consider outer join check box. |
164 |
|
|
165 |
|
2003-05-22 Bernhard Herzog <[email protected]> |
166 |
|
|
167 |
|
* Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a |
168 |
|
somewhat safer way. Storing the traceback in a local variable can |
169 |
|
lead to memory leaks |
170 |
|
|
171 |
|
2003-05-22 Bernhard Herzog <[email protected]> |
172 |
|
|
173 |
|
* Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call |
174 |
|
the wxMessageDialog's Destroy() method. |
175 |
|
|
176 |
|
2003-05-22 Frank Koormann <[email protected]> |
177 |
|
|
178 |
|
* Thuban/UI/join.py (JoinDialog.__init__): Make use of |
179 |
|
TransientTable.Title() |
180 |
|
|
181 |
|
2003-05-22 Frank Koormann <[email protected]> |
182 |
|
|
183 |
|
Join Dialog, initial version. |
184 |
|
|
185 |
|
* Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print. |
186 |
|
|
187 |
|
* Thuban/UI/join.py (JoinDialog): Functional implementation of |
188 |
|
former framework. Renamed Table1/Table2 to LeftTable/RightTable |
189 |
|
in all occurences. |
190 |
|
|
191 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.__doc__): |
192 |
|
Typo fixed. |
193 |
|
|
194 |
|
2003-05-22 Bernhard Herzog <[email protected]> |
195 |
|
|
196 |
|
Give the tables titles so that the GUI can display more meaningful |
197 |
|
names. For now the titles are fixed but depend on e.g. filenames |
198 |
|
or the titles of the joined tables. |
199 |
|
|
200 |
|
* Thuban/Model/transientdb.py (TransientTable.Title) |
201 |
|
(TransientJoinedTable.Title, AutoTransientTable.Title): New. |
202 |
|
|
203 |
|
* Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New. |
204 |
|
|
205 |
|
* test/test_transientdb.py |
206 |
|
(TestTransientTable.test_auto_transient_table_title): New. Test |
207 |
|
for the Title method |
208 |
|
(TestTransientTable.test_transient_joined_table) |
209 |
|
(TestTransientTable.test_transient_table): Add test for the Title |
210 |
|
methods |
211 |
|
|
212 |
|
* test/test_memory_table.py (TestMemoryTable.test_title): New. |
213 |
|
Test for the Title method |
214 |
|
|
215 |
|
* test/test_dbf_table.py (TestDBFTable.test_title): New. Test for |
216 |
|
the Title method |
217 |
|
|
218 |
|
2003-05-22 Bernhard Herzog <[email protected]> |
219 |
|
|
220 |
|
* test/test_layer.py (TestLayer.setUp, TestLayer.tearDown): |
221 |
|
Provide a better way to destroy the layers |
222 |
|
(TestLayer.test_base_layer, TestLayer.test_arc_layer) |
223 |
|
(TestLayer.test_point_layer, TestLayer.test_empty_layer) |
224 |
|
(TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use |
225 |
|
the new way to destroy the layers. |
226 |
|
(TestLayer.test_derived_store): New. Test for using a layer with a |
227 |
|
DerivedShapeStore |
228 |
|
|
229 |
|
* Thuban/Model/layer.py (Layer.SetShapeStore): Only set the |
230 |
|
filename if the shape store actually has one. |
231 |
|
|
232 |
|
2003-05-22 Bernhard Herzog <[email protected]> |
233 |
|
|
234 |
|
* Thuban/Model/table.py (DBFTable.FileName): New. Accessor method |
235 |
|
for the filename |
236 |
|
|
237 |
|
* test/test_dbf_table.py (TestDBFTable.test_filename): New. Test |
238 |
|
for the FileName method |
239 |
|
(TestDBFTableWriting.test_write): Fix spelling of filename |
240 |
|
|
241 |
|
2003-05-22 Thomas Koester <[email protected]> |
242 |
|
|
243 |
|
* Thuban/Model/range.py, test/test_range.py: Brought over new Range |
244 |
|
from SciParam that now really is immutable. |
245 |
|
|
246 |
|
2003-05-22 Frank Koormann <[email protected]> |
247 |
|
|
248 |
|
Layer Top/Bottom placement added to legend. |
249 |
|
|
250 |
|
* Thuban/UI/legend.py |
251 |
|
(LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods |
252 |
|
bound to tool events. |
253 |
|
(LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom): |
254 |
|
New, methods binding the event methods with the map methods. |
255 |
|
|
256 |
|
* Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place |
257 |
|
layer at top/bottom of layer stack. |
258 |
|
|
259 |
|
* Resources/Bitmaps/top_layer.xpm: New button icon. |
260 |
|
|
261 |
|
* Resources/Bitmaps/bottom_layer.xpm: New button icon. |
262 |
|
|
263 |
2003-05-22 Bernhard Herzog <[email protected]> |
2003-05-22 Bernhard Herzog <[email protected]> |
264 |
|
|
265 |
* Thuban/Model/session.py (Session.RemoveTable): New method to |
* Thuban/Model/session.py (Session.RemoveTable): New method to |