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_IMAGE = "fill-image"; 014 String FILL_OPACITY = "fill-opacity"; 015 String FONT_FAMILY = "font-family"; 016 String FONT_SIZE = "font-size"; 017 String FONT_STYLE = "font-style"; 018 String FONT_WEIGHT = "font-weight"; 019 String ICON_IMAGE = "icon-image"; 020 String ICON_HEIGHT = "icon-height"; 021 String ICON_OFFSET_X = "icon-offset-x"; 022 String ICON_OFFSET_Y = "icon-offset-y"; 023 String ICON_OPACITY = "icon-opacity"; 024 String ICON_ROTATION = "icon-rotation"; 025 String ICON_WIDTH = "icon-width"; 026 String LINECAP = "linecap"; 027 String LINEJOIN = "linejoin"; 028 String MAJOR_Z_INDEX = "major-z-index"; 029 String MITERLIMIT = "miterlimit"; 030 String MODIFIER = "modifier"; 031 String OBJECT_Z_INDEX = "object-z-index"; 032 String OFFSET = "offset"; 033 String OPACITY = "opacity"; 034 String REAL_WIDTH = "real-width"; 035 String REPEAT_IMAGE = "repeat-image"; 036 String REPEAT_IMAGE_ALIGN = "repeat-image-align"; 037 String REPEAT_IMAGE_HEIGHT = "repeat-image-height"; 038 String REPEAT_IMAGE_OFFSET = "repeat-image-offset"; 039 String REPEAT_IMAGE_OPACITY = "repeat-image-opacity"; 040 String REPEAT_IMAGE_PHASE = "repeat-image-phase"; 041 String REPEAT_IMAGE_SPACING = "repeat-image-spacing"; 042 String REPEAT_IMAGE_WIDTH = "repeat-image-width"; 043 String TEXT = "text"; 044 String TEXT_ANCHOR_HORIZONTAL = "text-anchor-horizontal"; 045 String TEXT_ANCHOR_VERTICAL = "text-anchor-vertical"; 046 String TEXT_COLOR = "text-color"; 047 String TEXT_HALO_COLOR = "text-halo-color"; 048 String TEXT_HALO_OPACITY = "text-halo-opacity"; 049 String TEXT_HALO_RADIUS = "text-halo-radius"; 050 String TEXT_OFFSET = "text-offset"; 051 String TEXT_OFFSET_X = "text-offset-x"; 052 String TEXT_OFFSET_Y = "text-offset-y"; 053 String TEXT_OPACITY = "text-opacity"; 054 String TEXT_POSITION = "text-position"; 055 String WIDTH = "width"; 056 String Z_INDEX = "z-index"; 057 058}