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