mirror of
https://github.com/SimpleMobileTools/Simple-Keyboard.git
synced 2025-04-03 05:01:30 +02:00
57 lines
2.4 KiB
Kotlin
57 lines
2.4 KiB
Kotlin
package com.simplemobiletools.keyboard.helpers
|
|
|
|
import android.content.Context
|
|
import com.simplemobiletools.commons.helpers.BaseConfig
|
|
import java.util.*
|
|
|
|
class Config(context: Context) : BaseConfig(context) {
|
|
companion object {
|
|
fun newInstance(context: Context) = Config(context)
|
|
}
|
|
|
|
var vibrateOnKeypress: Boolean
|
|
get() = prefs.getBoolean(VIBRATE_ON_KEYPRESS, true)
|
|
set(vibrateOnKeypress) = prefs.edit().putBoolean(VIBRATE_ON_KEYPRESS, vibrateOnKeypress).apply()
|
|
|
|
var showPopupOnKeypress: Boolean
|
|
get() = prefs.getBoolean(SHOW_POPUP_ON_KEYPRESS, true)
|
|
set(showPopupOnKeypress) = prefs.edit().putBoolean(SHOW_POPUP_ON_KEYPRESS, showPopupOnKeypress).apply()
|
|
|
|
var enableSentencesCapitalization: Boolean
|
|
get() = prefs.getBoolean(SENTENCES_CAPITALIZATION, false)
|
|
set(enableCapitalization) = prefs.edit().putBoolean(SENTENCES_CAPITALIZATION, enableCapitalization).apply()
|
|
|
|
var showKeyBorders: Boolean
|
|
get() = prefs.getBoolean(SHOW_KEY_BORDERS, false)
|
|
set(showKeyBorders) = prefs.edit().putBoolean(SHOW_KEY_BORDERS, showKeyBorders).apply()
|
|
|
|
var lastExportedClipsFolder: String
|
|
get() = prefs.getString(LAST_EXPORTED_CLIPS_FOLDER, "")!!
|
|
set(lastExportedClipsFolder) = prefs.edit().putString(LAST_EXPORTED_CLIPS_FOLDER, lastExportedClipsFolder).apply()
|
|
|
|
var keyboardLanguage: Int
|
|
get() = prefs.getInt(KEYBOARD_LANGUAGE, getDefaultLanguage())
|
|
set(keyboardLanguage) = prefs.edit().putInt(KEYBOARD_LANGUAGE, keyboardLanguage).apply()
|
|
|
|
var keyboardHeightMultiplier: Int
|
|
get() = prefs.getInt(HEIGHT_MULTIPLIER, 1)
|
|
set(keyboardHeightMultiplier) = prefs.edit().putInt(HEIGHT_MULTIPLIER, keyboardHeightMultiplier).apply()
|
|
|
|
var showClipboardContent: Boolean
|
|
get() = prefs.getBoolean(SHOW_CLIPBOARD_CONTENT, true)
|
|
set(showClipboardContent) = prefs.edit().putBoolean(SHOW_CLIPBOARD_CONTENT, showClipboardContent).apply()
|
|
|
|
var showNumbersRow: Boolean
|
|
get() = prefs.getBoolean(SHOW_NUMBERS_ROW, false)
|
|
set(showNumbersRow) = prefs.edit().putBoolean(SHOW_NUMBERS_ROW, showNumbersRow).apply()
|
|
|
|
private fun getDefaultLanguage(): Int {
|
|
val conf = context.resources.configuration
|
|
return if (conf.locale.toString().toLowerCase(Locale.getDefault()).startsWith("ru_")) {
|
|
LANGUAGE_RUSSIAN
|
|
} else {
|
|
LANGUAGE_ENGLISH_QWERTY
|
|
}
|
|
}
|
|
}
|