]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/config/Config.java
Version 19, May 2018
[GpsPrune.git] / tim / prune / config / Config.java
index 892133273ece60eb7431b3ba60172a125b5628ad..cd23dbdc724ba5c738666774a1f186c9458b6cc5 100644 (file)
@@ -63,6 +63,8 @@ public abstract class Config
        public static final String KEY_MAPSOURCE_LIST = "prune.mapsourcelist";
        /** Key for show map flag */
        public static final String KEY_SHOW_MAP = "prune.showmap";
+       /** Key for window position */
+       public static final String KEY_WINDOW_BOUNDS = "prune.windowbounds";
        /** Key for path to disk cache */
        public static final String KEY_DISK_CACHE = "prune.diskcache";
        /** Key for working online flag */
@@ -97,6 +99,12 @@ public abstract class Config
        public static final String KEY_TERRAIN_GRID_SIZE = "prune.terraingridsize";
        /** Key for altitude tolerance */
        public static final String KEY_ALTITUDE_TOLERANCE = "prune.altitudetolerance";
+       /** Key for waypoint icons to use */
+       public static final String KEY_WAYPOINT_ICONS = "prune.waypointicons";
+       /** Size of waypoint icons to use */
+       public static final String KEY_WAYPOINT_ICON_SIZE = "prune.waypointiconsize";
+       /** Id of selected timezone */
+       public static final String KEY_TIMEZONE_ID = "prune.timezoneid";
 
 
        /** Initialise the default properties */
@@ -192,6 +200,7 @@ public abstract class Config
                props.put(KEY_HEIGHT_EXAGGERATION, "100"); // 100%, no exaggeration
                props.put(KEY_TERRAIN_GRID_SIZE, "50");
                props.put(KEY_ALTITUDE_TOLERANCE, "0"); // 0, all exact as before
+               props.put(KEY_WAYPOINT_ICON_SIZE, "1"); // medium size
                return props;
        }