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 8d5386a Rename CategoryCellFactory as BandRangeTable.
new 1e3c7cc Add a missing `class="sis"` attributes in `<table>` HTML
elements.
new 1d075eb Provide control on the colors used for rendering different
range of values (categories) of a GridCoverage.
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:
.../apache/sis/gui/coverage/CategoryColors.java | 165 ++++++++++
.../sis/gui/coverage/CategoryColorsCell.java | 364 +++++++++++++++++++++
.../java/org/apache/sis/gui/coverage/Controls.java | 12 +-
.../apache/sis/gui/coverage/CoverageCanvas.java | 23 ++
.../apache/sis/gui/coverage/CoverageControls.java | 110 +++----
.../apache/sis/gui/coverage/CoverageStyling.java | 158 +++++++++
.../org/apache/sis/internal/gui/ColorName.java | 87 +++++
.../org/apache/sis/internal/gui/GUIUtilities.java | 33 ++
.../sis/gui/coverage/CoverageStylingApp.java | 83 +++++
.../apache/sis/internal/gui/GUIUtilitiesTest.java | 27 ++
.../java/org/apache/sis/image/ImageProcessor.java | 2 +-
.../sis/internal/coverage/j2d/TileOpExecutor.java | 2 +-
.../main/java/org/apache/sis/portrayal/Canvas.java | 2 +-
.../sis/referencing/cs/CoordinateSystems.java | 2 +-
.../org/apache/sis/util/resources/Vocabulary.java | 15 +
.../sis/util/resources/Vocabulary.properties | 3 +
.../sis/util/resources/Vocabulary_fr.properties | 3 +
.../sis/storage/geotiff/ImageFileDirectory.java | 2 +-
18 files changed, 1018 insertions(+), 75 deletions(-)
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/coverage/CategoryColors.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/coverage/CategoryColorsCell.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/coverage/CoverageStyling.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/internal/gui/ColorName.java
create mode 100644
application/sis-javafx/src/test/java/org/apache/sis/gui/coverage/CoverageStylingApp.java