# HG changeset patch # User Felix Wolfsteller # Date 1324364148 0 # Node ID e8aec81af22b828730aef758e8935a28c36ec25a # Parent fa63366ba115d41d7a1be8a5514170e537bc072c Cosmetics. flys-client/trunk@3478 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r fa63366ba115 -r e8aec81af22b flys-client/ChangeLog --- a/flys-client/ChangeLog Tue Dec 20 06:54:49 2011 +0000 +++ b/flys-client/ChangeLog Tue Dec 20 06:55:48 2011 +0000 @@ -1,3 +1,21 @@ +2011-12-20 Felix Wolfsteller + + Cosmetics. + + * src/main/java/de/intevation/flys/client/client/ui/chart/ChartOutputTab.java, + src/main/java/de/intevation/flys/client/client/ui/ThemePanel.java: + Minor, picky cosmetics. + +2011-12-20 Felix Wolfsteller + + Changed area-creation gui (menu) to cover three basic area modes + under, over and between. Feed new area.facet data understood by + area artifact to discern which diagram we are talking about. + + * src/main/java/de/intevation/flys/client/client/ui/chart/CrossSectionChartThemePanel.java: + Create different context menu to create area artifacts, feed + area.facet data item to area artifact. + 2011-12-19 Felix Wolfsteller Restore functionality of hand-sorted properties in style dialog, diff -r fa63366ba115 -r e8aec81af22b flys-client/src/main/java/de/intevation/flys/client/client/ui/ThemePanel.java --- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/ThemePanel.java Tue Dec 20 06:54:49 2011 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/ThemePanel.java Tue Dec 20 06:55:48 2011 +0000 @@ -360,6 +360,7 @@ } + /** The properties menu item (opens style editor on click). */ protected MenuItem createPropertiesItem(final ListGridRecord[] records) { MenuItem properties = new MenuItem(MSG.properties()); diff -r fa63366ba115 -r e8aec81af22b flys-client/src/main/java/de/intevation/flys/client/client/ui/chart/ChartOutputTab.java --- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/chart/ChartOutputTab.java Tue Dec 20 06:54:49 2011 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/chart/ChartOutputTab.java Tue Dec 20 06:55:48 2011 +0000 @@ -57,11 +57,9 @@ public static final int THEMEPANEL_MIN_WIDTH = 200; - /** The service that is used to fetch chart information. */ protected ChartInfoServiceAsync info = GWT.create(ChartInfoService.class); - /** The ChartInfo object that provides information about the current * chart. */ protected ChartInfo chartInfo; @@ -74,7 +72,6 @@ protected ChartThemePanel ctp; - /** The canvas that wraps the chart toolbar. */ protected Canvas tbarPanel; @@ -86,7 +83,6 @@ protected Img chart; - /** Chart zoom options. */ protected int[] xrange; protected int[] yrange; @@ -604,7 +600,7 @@ Map attr = new HashMap(); Canvas chart = getChartPanel(); - attr.put("width", chart.getWidth().toString()); + attr.put("width", chart.getWidth().toString()); attr.put("height", chart.getHeight().toString()); double[] zoom = getZoomValues();