1 |
|
2003-04-09 Jonathan Coles <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/classgen.py: Modifications to allow simple |
4 |
|
addition and selection of new color schemes. |
5 |
|
(MonochromaticRamp): New. Generates a ramp between two colors. |
6 |
|
(RedRamp): New. Generates a ramp of all red. |
7 |
|
(GreenRamp): New. Generates a ramp of all green. |
8 |
|
(BlueRamp): New. Generates a ramp of all blue. |
9 |
|
|
10 |
|
2003-04-09 Jonathan Coles <[email protected]> |
11 |
|
|
12 |
|
* Thuban/Model/classification.py (Classification.__deepcopy__): |
13 |
|
Need to copy over field and fieldType attributes. |
14 |
|
|
15 |
|
* Thuban/Model/table.py (Table.field_range): New. Retrive the |
16 |
|
maximum and minimum values over the entire table for a given |
17 |
|
field. |
18 |
|
(Table.GetUniqueValues): New. Retrieve all the unique values |
19 |
|
in the table for a given field. |
20 |
|
|
21 |
|
* Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel. |
22 |
|
(GenUniquePanel): New. Controls to allow the user to select |
23 |
|
which unique field values they would like in the classification. |
24 |
|
(CustomRampPanel): Code that was in ClassGenDialog that allows |
25 |
|
the user to select the properties for a custom ramp. |
26 |
|
(ClassGenerator.GenUniformDistribution): Was called GenerateRanges. |
27 |
|
|
28 |
|
* Thuban/UI/classifier.py: Removed a lot of debugging code. |
29 |
|
(Classifier._SetClassification): Callback method so that the |
30 |
|
class generator can set the classification in the grid. |
31 |
|
(ClassGroupPropertiesCtrl): New. Encapsulates the drawing and |
32 |
|
editing of a group properties class into a wxWindows control. |
33 |
|
|
34 |
|
* Thuban/UI/dock.py: It was decided that if the user closes |
35 |
|
a dockable window the window should simply hide itself. That |
36 |
|
way if the user wants to show the dock again it appears in the |
37 |
|
same place as it was when it was closed. |
38 |
|
(DockableWindow.Destroy): Call renamed method OnDockDestroy(). |
39 |
|
(DockableWindow._OnButtonClose): Hide the window instead of |
40 |
|
destroying it. |
41 |
|
(DockableWindow._OnClose): Hide the window instead of |
42 |
|
destroying it. |
43 |
|
|
44 |
|
* Thuban/UI/legend.py (LegendTree): Use a private method to |
45 |
|
consistently set the font and style of the text. Fixes RTbug #1786. |
46 |
|
|
47 |
|
* Thuban/UI/mainwindow.py: Import just the Classifier class. |
48 |
|
|
49 |
|
2003-04-07 Bernhard Herzog <[email protected]> |
50 |
|
|
51 |
|
* Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item |
52 |
|
to the map module |
53 |
|
|
54 |
|
2003-04-07 Bernhard Herzog <[email protected]> |
55 |
|
|
56 |
|
* Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in |
57 |
|
favor of ToggleSessionTree |
58 |
|
(MainWindow.ToggleSessionTree): New method to toggle visibility of |
59 |
|
the session tree. |
60 |
|
(MainWindow.SessionTreeShown): New method to return whether the |
61 |
|
session tree is currently shown. |
62 |
|
(MainWindow.ToggleLegend): New method to toggle visibility of the |
63 |
|
legend |
64 |
|
(MainWindow.ShowLegend): Implement in terms of ToggleLegend and |
65 |
|
LegendShown |
66 |
|
(MainWindow.LegendShown): New method to return whether the legend |
67 |
|
is currently shown. |
68 |
|
(_method_command): Add checked parameter so we can define check |
69 |
|
menu items |
70 |
|
(_has_tree_window_shown, _has_legend_shown): Use the appropriate |
71 |
|
mainwindow methods. |
72 |
|
(show_session_tree, show_legend commands): Removed. |
73 |
|
(toggle_session_tree, toggle_legend commands): New commands to |
74 |
|
toggle the visibility of the dialogs |
75 |
|
|
76 |
2003-04-07 Jonathan Coles <[email protected]> |
2003-04-07 Jonathan Coles <[email protected]> |
77 |
|
|
78 |
* Thuban/UI/classgen.py: Fix Windows problem. |
* Thuban/UI/classgen.py: Fix Windows problem. |