2009-03-13 22:11:42 +00:00
|
|
|
/*
|
2013-01-08 06:41:46 +00:00
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
2011-01-19 08:44:39 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at
|
2010-01-28 18:09:44 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2010-01-28 18:09:44 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations under
|
|
|
|
* the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.android.inputmethod.latin;
|
|
|
|
|
2013-01-08 06:41:46 +00:00
|
|
|
public final class Settings {
|
2011-12-09 07:41:05 +00:00
|
|
|
// In the same order as xml/prefs.xml
|
2011-12-09 08:58:51 +00:00
|
|
|
public static final String PREF_GENERAL_SETTINGS = "general_settings";
|
2011-12-09 07:41:05 +00:00
|
|
|
public static final String PREF_AUTO_CAP = "auto_cap";
|
2010-12-09 12:06:26 +00:00
|
|
|
public static final String PREF_VIBRATE_ON = "vibrate_on";
|
|
|
|
public static final String PREF_SOUND_ON = "sound_on";
|
2011-12-09 08:58:51 +00:00
|
|
|
public static final String PREF_POPUP_ON = "popup_on";
|
|
|
|
public static final String PREF_VOICE_MODE = "voice_mode";
|
|
|
|
public static final String PREF_CORRECTION_SETTINGS = "correction_settings";
|
2011-12-09 07:41:05 +00:00
|
|
|
public static final String PREF_CONFIGURE_DICTIONARIES_KEY = "configure_dictionaries_key";
|
2010-12-11 08:06:24 +00:00
|
|
|
public static final String PREF_AUTO_CORRECTION_THRESHOLD = "auto_correction_threshold";
|
2011-12-09 07:41:05 +00:00
|
|
|
public static final String PREF_SHOW_SUGGESTIONS_SETTING = "show_suggestions_setting";
|
2011-12-09 08:58:51 +00:00
|
|
|
public static final String PREF_MISC_SETTINGS = "misc_settings";
|
2012-05-18 12:28:09 +00:00
|
|
|
public static final String PREF_LAST_USER_DICTIONARY_WRITE_TIME =
|
|
|
|
"last_user_dictionary_write_time";
|
2011-12-09 07:41:05 +00:00
|
|
|
public static final String PREF_ADVANCED_SETTINGS = "pref_advanced_settings";
|
2012-07-27 06:32:29 +00:00
|
|
|
public static final String PREF_KEY_USE_CONTACTS_DICT = "pref_key_use_contacts_dict";
|
2012-12-04 06:24:55 +00:00
|
|
|
public static final String PREF_KEY_USE_DOUBLE_SPACE_PERIOD =
|
|
|
|
"pref_key_use_double_space_period";
|
2012-09-20 01:32:56 +00:00
|
|
|
public static final String PREF_SHOW_LANGUAGE_SWITCH_KEY =
|
|
|
|
"pref_show_language_switch_key";
|
2012-02-18 01:46:01 +00:00
|
|
|
public static final String PREF_INCLUDE_OTHER_IMES_IN_LANGUAGE_SWITCH_LIST =
|
|
|
|
"pref_include_other_imes_in_language_switch_list";
|
2012-04-18 13:13:29 +00:00
|
|
|
public static final String PREF_CUSTOM_INPUT_STYLES = "custom_input_styles";
|
2011-05-11 11:51:07 +00:00
|
|
|
public static final String PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY =
|
|
|
|
"pref_key_preview_popup_dismiss_delay";
|
2012-04-05 11:49:37 +00:00
|
|
|
public static final String PREF_BIGRAM_PREDICTIONS = "next_word_prediction";
|
2012-11-09 03:44:40 +00:00
|
|
|
public static final String PREF_GESTURE_SETTINGS = "gesture_typing_settings";
|
2012-07-20 08:49:06 +00:00
|
|
|
public static final String PREF_GESTURE_INPUT = "gesture_input";
|
2011-12-09 08:58:51 +00:00
|
|
|
public static final String PREF_VIBRATION_DURATION_SETTINGS =
|
2011-09-28 11:11:05 +00:00
|
|
|
"pref_vibration_duration_settings";
|
2011-10-11 07:39:11 +00:00
|
|
|
public static final String PREF_KEYPRESS_SOUND_VOLUME =
|
|
|
|
"pref_keypress_sound_volume";
|
2012-07-27 06:32:29 +00:00
|
|
|
public static final String PREF_GESTURE_PREVIEW_TRAIL = "pref_gesture_preview_trail";
|
2012-10-02 01:30:03 +00:00
|
|
|
public static final String PREF_GESTURE_FLOATING_PREVIEW_TEXT =
|
|
|
|
"pref_gesture_floating_preview_text";
|
2011-12-09 07:41:05 +00:00
|
|
|
|
|
|
|
public static final String PREF_INPUT_LANGUAGE = "input_language";
|
|
|
|
public static final String PREF_SELECTED_LANGUAGES = "selected_languages";
|
|
|
|
public static final String PREF_DEBUG_SETTINGS = "debug_settings";
|
2011-10-27 15:33:15 +00:00
|
|
|
}
|