001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.mappaint;
003
004public interface StyleKeys {
005
006    String COLOR = "color";
007    String DASHES = "dashes";
008    String DASHES_BACKGROUND_COLOR = "dashes-background-color";
009    String DASHES_BACKGROUND_OPACITY = "dashes-background-opacity";
010    String DASHES_OFFSET = "dashes-offset";
011    String FILL_COLOR = "fill-color";
012    String FILL_EXTENT = "fill-extent";
013    String FILL_EXTENT_THRESHOLD = "fill-extent-threshold";
014    String FILL_IMAGE = "fill-image";
015    String FILL_OPACITY = "fill-opacity";
016    String FONT_FAMILY = "font-family";
017    String FONT_SIZE = "font-size";
018    String FONT_STYLE = "font-style";
019    String FONT_WEIGHT = "font-weight";
020    String ICON_IMAGE = "icon-image";
021    String ICON_HEIGHT = "icon-height";
022    String ICON_OFFSET_X = "icon-offset-x";
023    String ICON_OFFSET_Y = "icon-offset-y";
024    String ICON_OPACITY = "icon-opacity";
025    String ICON_ROTATION = "icon-rotation";
026    String ICON_WIDTH = "icon-width";
027    String LINECAP = "linecap";
028    String LINEJOIN = "linejoin";
029    String MAJOR_Z_INDEX = "major-z-index";
030    String MITERLIMIT = "miterlimit";
031    String MODIFIER = "modifier";
032    String OBJECT_Z_INDEX = "object-z-index";
033    String OFFSET = "offset";
034    String OPACITY = "opacity";
035    String REAL_WIDTH = "real-width";
036    String REPEAT_IMAGE = "repeat-image";
037    String REPEAT_IMAGE_ALIGN = "repeat-image-align";
038    String REPEAT_IMAGE_HEIGHT = "repeat-image-height";
039    String REPEAT_IMAGE_OFFSET = "repeat-image-offset";
040    String REPEAT_IMAGE_OPACITY = "repeat-image-opacity";
041    String REPEAT_IMAGE_PHASE = "repeat-image-phase";
042    String REPEAT_IMAGE_SPACING = "repeat-image-spacing";
043    String REPEAT_IMAGE_WIDTH = "repeat-image-width";
044    String TEXT = "text";
045    String TEXT_ANCHOR_HORIZONTAL = "text-anchor-horizontal";
046    String TEXT_ANCHOR_VERTICAL = "text-anchor-vertical";
047    String TEXT_COLOR = "text-color";
048    String TEXT_HALO_COLOR = "text-halo-color";
049    String TEXT_HALO_OPACITY = "text-halo-opacity";
050    String TEXT_HALO_RADIUS = "text-halo-radius";
051    String TEXT_OFFSET = "text-offset";
052    String TEXT_OFFSET_X = "text-offset-x";
053    String TEXT_OFFSET_Y = "text-offset-y";
054    String TEXT_OPACITY = "text-opacity";
055    String TEXT_POSITION = "text-position";
056    String WIDTH = "width";
057    String Z_INDEX = "z-index";
058
059}