This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a change to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git
from 7a507877d4 Use a little bit more of modern Java features in the GUI
module.
new 261492c18d Add a convenience `MemoryGridCoverageResource` constructor
taking only a `GridCoverage` argument.
new f583861e3d Initial rewrite of the system for showing data in separated
windows. The new `MapWindows` class is intended to replace `WindowManager`.
This first draft can show many `MapCanvas` in a mosaic.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../org/apache/sis/portrayal/CanvasFollower.java | 1 +
.../sis/storage/MemoryGridCoverageResource.java | 20 +-
.../sis/storage/base/URIDataStoreProvider.java | 3 +
.../org/apache/sis/storage/CoverageSubsetTest.java | 2 +-
.../storage/MemoryGridCoverageResourceTest.java | 2 +-
.../aggregate/BandAggregateGridResourceTest.java | 2 +-
.../sis/storage/aggregate/OpaqueGridResource.java | 2 +-
.../coveragejson/CoverageJsonStoreTest.java | 2 +-
.../main/org/apache/sis/gui/DataViewer.java | 23 +-
.../apache/sis/gui/coverage/CoverageCanvas.java | 40 +-
.../org/apache/sis/gui/dataset/PathAction.java | 10 +-
.../org/apache/sis/gui/dataset/ResourceCell.java | 122 ++--
.../apache/sis/gui/dataset/ResourceExplorer.java | 19 +-
.../org/apache/sis/gui/dataset/ResourceTree.java | 23 +-
.../apache/sis/gui/internal/BackgroundThreads.java | 2 +
.../apache/sis/gui/internal/ExceptionReporter.java | 4 +-
.../main/org/apache/sis/gui/internal/FontGIS.java | 2 +-
.../org/apache/sis/gui/internal/GUIUtilities.java | 10 +-
.../sis/gui/internal/ImmutableObjectProperty.java | 2 +
.../org/apache/sis/gui/internal/Resources.java | 22 +-
.../main/org/apache/sis/gui/map/MapCanvas.java | 100 +++-
.../main/org/apache/sis/gui/map/MapCanvasAWT.java | 14 +-
.../main/org/apache/sis/gui/map/MapMenu.java | 5 +-
.../main/org/apache/sis/gui/map/MapWindows.java | 185 ++++++
.../main/org/apache/sis/gui/map/MultiCanvas.java | 644 +++++++++++++++++++++
.../main/org/apache/sis/gui/map/StatusBar.java | 32 +-
.../org/apache/sis/gui/map/ValuesUnderCursor.java | 9 +-
.../main/org/apache/sis/gui/package-info.java | 2 +-
.../apache/sis/gui/coverage/CoverageCanvasApp.java | 27 +-
.../test/org/apache/sis/gui/map/MapWindowsApp.java | 111 ++++
30 files changed, 1275 insertions(+), 167 deletions(-)
create mode 100644
optional/src/org.apache.sis.gui/main/org/apache/sis/gui/map/MapWindows.java
create mode 100644
optional/src/org.apache.sis.gui/main/org/apache/sis/gui/map/MultiCanvas.java
create mode 100644
optional/src/org.apache.sis.gui/test/org/apache/sis/gui/map/MapWindowsApp.java