source: josm/trunk/src/org/openstreetmap/josm/gui/mappaint/StyleKeys.java@ 9099

Last change on this file since 9099 was 9099, checked in by bastiK, 8 years ago

mapcss partial fill: move threshold parameter ([9063]) into the mapcss style
(new property fill-extent-threshold)

  • add support for this parameter when area is unclosed
  • smaller extent for unclosed areas

(see #12104)

  • Property svn:eol-style set to native
File size: 2.3 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint;
3
4public interface StyleKeys {
5
6 String COLOR = "color";
7 String DASHES = "dashes";
8 String DASHES_BACKGROUND_COLOR = "dashes-background-color";
9 String DASHES_BACKGROUND_OPACITY = "dashes-background-opacity";
10 String DASHES_OFFSET = "dashes-offset";
11 String FILL_COLOR = "fill-color";
12 String FILL_EXTENT = "fill-extent";
13 String FILL_EXTENT_THRESHOLD = "fill-extent-threshold";
14 String FILL_IMAGE = "fill-image";
15 String FILL_OPACITY = "fill-opacity";
16 String FONT_FAMILY = "font-family";
17 String FONT_SIZE = "font-size";
18 String FONT_STYLE = "font-style";
19 String FONT_WEIGHT = "font-weight";
20 String ICON_IMAGE = "icon-image";
21 String ICON_HEIGHT = "icon-height";
22 String ICON_OFFSET_X = "icon-offset-x";
23 String ICON_OFFSET_Y = "icon-offset-y";
24 String ICON_OPACITY = "icon-opacity";
25 String ICON_ROTATION = "icon-rotation";
26 String ICON_WIDTH = "icon-width";
27 String LINECAP = "linecap";
28 String LINEJOIN = "linejoin";
29 String MAJOR_Z_INDEX = "major-z-index";
30 String MITERLIMIT = "miterlimit";
31 String MODIFIER = "modifier";
32 String OBJECT_Z_INDEX = "object-z-index";
33 String OFFSET = "offset";
34 String OPACITY = "opacity";
35 String REAL_WIDTH = "real-width";
36 String REPEAT_IMAGE = "repeat-image";
37 String REPEAT_IMAGE_ALIGN = "repeat-image-align";
38 String REPEAT_IMAGE_HEIGHT = "repeat-image-height";
39 String REPEAT_IMAGE_OFFSET = "repeat-image-offset";
40 String REPEAT_IMAGE_OPACITY = "repeat-image-opacity";
41 String REPEAT_IMAGE_PHASE = "repeat-image-phase";
42 String REPEAT_IMAGE_SPACING = "repeat-image-spacing";
43 String REPEAT_IMAGE_WIDTH = "repeat-image-width";
44 String TEXT = "text";
45 String TEXT_ANCHOR_HORIZONTAL = "text-anchor-horizontal";
46 String TEXT_ANCHOR_VERTICAL = "text-anchor-vertical";
47 String TEXT_COLOR = "text-color";
48 String TEXT_HALO_COLOR = "text-halo-color";
49 String TEXT_HALO_OPACITY = "text-halo-opacity";
50 String TEXT_HALO_RADIUS = "text-halo-radius";
51 String TEXT_OFFSET = "text-offset";
52 String TEXT_OFFSET_X = "text-offset-x";
53 String TEXT_OFFSET_Y = "text-offset-y";
54 String TEXT_OPACITY = "text-opacity";
55 String TEXT_POSITION = "text-position";
56 String WIDTH = "width";
57 String Z_INDEX = "z-index";
58
59}
Note: See TracBrowser for help on using the repository browser.