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

Last change on this file since 8085 was 8085, checked in by bastiK, 9 years ago

fixed #10216 Offsetting node icon in MapCSS

also: rework of rendering of disabled layers and objects

  • Property svn:eol-style set to native
File size: 1.2 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_IMAGE = "fill-image";
13 String FILL_OPACITY = "fill-opacity";
14 String ICON_IMAGE = "icon-image";
15 String MODIFIER = "modifier";
16 String OBJECT_Z_INDEX = "object-z-index";
17 String OFFSET = "offset";
18 String OPACITY = "opacity";
19 String REAL_WIDTH = "real-width";
20 String TEXT_POSITION = "text-position";
21 String TEXT = "text";
22 String WIDTH = "width";
23 String Z_INDEX = "z-index";
24 String REPEAT_IMAGE = "repeat-image";
25 String REPEAT_IMAGE_OFFSET = "repeat-image-offset";
26 String REPEAT_IMAGE_SPACING = "repeat-image-spacing";
27 String REPEAT_IMAGE_PHASE = "repeat-image-phase";
28 String REPEAT_IMAGE_ALIGN = "repeat-image-align";
29
30 int ICON_IMAGE_IDX = 0;
31 int ICON_WIDTH_IDX = 1;
32 int ICON_HEIGHT_IDX = 2;
33 int ICON_OPACITY_IDX = 3;
34 int ICON_OFFSET_X_IDX = 4;
35 int ICON_OFFSET_Y_IDX = 5;
36}
Note: See TracBrowser for help on using the repository browser.