1 |
|
2003-04-15 Jonathan Coles <[email protected]> |
2 |
|
|
3 |
|
* extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used |
4 |
|
to improve rendering performance by initializing the variables |
5 |
|
that are not change each time draw_polygon_shape() is called. |
6 |
|
The values are stored in a global struct draw_info. |
7 |
|
(draw_polygon_shape): Removed initialization code that is |
8 |
|
now in draw_polygon_init(). |
9 |
|
|
10 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make |
11 |
|
drawing initialization call to draw_polygon_init() |
12 |
|
(MapRenderer.draw_polygon_shape): Use new signature of |
13 |
|
draw_polygon_shape. |
14 |
|
|
15 |
|
* Thuban/UI/classgen.py (GenUniformPanel): Fix spin control |
16 |
|
weirdness by setting the range to (1, maxint). |
17 |
|
|
18 |
|
* Thuban/Model/classification.py (ClassGroupProperties): Make |
19 |
|
instance variables private and optimize comparison operator |
20 |
|
by first checking if the color references are the same. |
21 |
|
(ClassGroupSingleton): Make instance variables private. |
22 |
|
(ClassGroupRange): Make instance variables private. |
23 |
|
|
24 |
|
* HOWTO-Release: Filled in missing steps for releasing packages. |
25 |
|
|
26 |
|
2003-04-15 Bernhard Herzog <[email protected]> |
27 |
|
|
28 |
|
First stab at internationalized messages: |
29 |
|
|
30 |
|
* Thuban/__init__.py (_): Implement the translation function for |
31 |
|
real using the python gettext module. |
32 |
|
|
33 |
|
* Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't |
34 |
|
translate empty strings. |
35 |
|
|
36 |
|
* Thuban/UI/application.py (ThubanApplication.read_startup_files): |
37 |
|
Add a missing space to a warning message |
38 |
|
|
39 |
|
* po/README: New. Notes about the management of the translation |
40 |
|
files. |
41 |
|
|
42 |
|
* po/Makefile: New. Makefile to help manage the translation files. |
43 |
|
|
44 |
|
* po/es.po: New. Spanish translation by Daniel Calvelo Aros |
45 |
|
|
46 |
|
* MANIFEST.in: Include the *.mo files in Resources/Locale and the |
47 |
|
translations and support files in po/ |
48 |
|
|
49 |
|
* setup.py (data_files): Add the *.mo files to the data_files too |
50 |
|
|
51 |
|
* README: Add note about the translations when building from CVS |
52 |
|
|
53 |
|
2003-04-14 Jonathan Coles <[email protected]> |
54 |
|
|
55 |
|
* Thuban/UI/dock.py: Fixes some window resizing problems most |
56 |
|
noticable under windows. Always assume the button bitmaps will |
57 |
|
be there. Code clean up. |
58 |
|
(DockabelWindow.Dock, DockableWindow.UnDock): Force all the |
59 |
|
images for the dock/undock button to the same images. |
60 |
|
Work around for RTbug #1801. |
61 |
|
|
62 |
|
* Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should |
63 |
|
be allowed to grow within the sizer. Fixes a bug under Windows |
64 |
|
where the toolbar wasn't being drawn. |
65 |
|
|
66 |
|
2003-04-14 Frank Koormann <[email protected]> |
67 |
|
|
68 |
|
* Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm: |
69 |
|
Updated design to try to make the button functionality more |
70 |
|
transparent. |
71 |
|
|
72 |
2003-04-14 Jonathan Coles <[email protected]> |
2003-04-14 Jonathan Coles <[email protected]> |
73 |
|
|
74 |
* Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to |
* Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to |