From 25e289c231241a12f68c2d8b2ab4bce43dd598ec Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Sun, 31 May 2009 01:16:07 +0000 Subject: Adding in class that broke the build git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@248 df292f66-193f-0410-a5fc-6d59da041ff2 --- src/org/connectbot/util/PreferenceConstants.java | 67 ++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/org/connectbot/util/PreferenceConstants.java (limited to 'src') diff --git a/src/org/connectbot/util/PreferenceConstants.java b/src/org/connectbot/util/PreferenceConstants.java new file mode 100644 index 0000000..fb2f49b --- /dev/null +++ b/src/org/connectbot/util/PreferenceConstants.java @@ -0,0 +1,67 @@ +/* + ConnectBot: simple, powerful, open-source SSH client for Android + Copyright (C) 2007-2008 Kenny Root, Jeffrey Sharkey + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +*/ +package org.connectbot.util; + +/** + * @author Kenny Root + * + */ +public class PreferenceConstants { + public static final String MEMKEYS = "memkeys"; + public static final String UPDATE = "update"; + + public static final String UPDATE_DAILY = "Daily"; + public static final String UPDATE_WEEKLY = "Weekly"; + public static final String UPDATE_NEVER = "Never"; + + public static final String LAST_CHECKED = "lastchecked"; + + public static final String SCROLLBACK = "scrollback"; + + public static final String EMULATION = "emulation"; + + public static final String ROTATION = "rotation"; + + public static final String ROTATION_DEFAULT = "Default"; + public static final String ROTATION_LANDSCAPE = "Force landscape"; + public static final String ROTATION_PORTRAIT = "Force portrait"; + public static final String ROTATION_AUTOMATIC = "Automatic"; + + public static final String FULLSCREEN = "fullscreen"; + + public static final String KEYMODE = "keymode"; + + public static final String KEYMODE_RIGHT = "Use right-side keys"; + public static final String KEYMODE_LEFT = "Use left-side keys"; + + public static final String CAMERA = "camera"; + + public static final String CAMERA_CTRLA_SPACE = "Ctrl+A then Space"; + public static final String CAMERA_CTRLA = "Ctrl+A"; + public static final String CAMERA_ESC = "Esc"; + + public static final String KEEP_ALIVE = "keepalive"; + + public static final String WIFI_LOCK = "wifilock"; + + public static final String BUMPY_ARROWS = "bumpyarrows"; + + public static final String EULA = "eula"; + + public static final String SORT_BY_COLOR = "sortByColor"; +} -- cgit v1.2.3