X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=tim%2Fprune%2Fconfig%2FConfig.java;h=cd23dbdc724ba5c738666774a1f186c9458b6cc5;hb=92dad5df664287acb51728e9ea599f150765d34a;hp=892133273ece60eb7431b3ba60172a125b5628ad;hpb=0a2480df5845e2d7190dfdec9b2653b1609e853d;p=GpsPrune.git diff --git a/tim/prune/config/Config.java b/tim/prune/config/Config.java index 8921332..cd23dbd 100644 --- a/tim/prune/config/Config.java +++ b/tim/prune/config/Config.java @@ -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; }