mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-03 05:10:14 +00:00
158 lines
6.4 KiB
Kotlin
158 lines
6.4 KiB
Kotlin
// SPDX-License-Identifier: GPL-3.0-only
|
|
package helium314.keyboard.settings.dialogs
|
|
|
|
import androidx.compose.foundation.clickable
|
|
import androidx.compose.foundation.layout.Arrangement
|
|
import androidx.compose.foundation.layout.Column
|
|
import androidx.compose.foundation.layout.Row
|
|
import androidx.compose.foundation.lazy.LazyColumn
|
|
import androidx.compose.foundation.lazy.items
|
|
import androidx.compose.foundation.text.KeyboardOptions
|
|
import androidx.compose.material3.Text
|
|
import androidx.compose.material3.TextField
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.runtime.getValue
|
|
import androidx.compose.runtime.mutableStateOf
|
|
import androidx.compose.runtime.saveable.rememberSaveable
|
|
import androidx.compose.runtime.setValue
|
|
import androidx.compose.ui.Alignment
|
|
import androidx.compose.ui.Modifier
|
|
import androidx.compose.ui.platform.LocalContext
|
|
import androidx.compose.ui.res.stringResource
|
|
import androidx.compose.ui.text.input.KeyboardType
|
|
import androidx.compose.ui.text.input.TextFieldValue
|
|
import androidx.compose.ui.tooling.preview.Preview
|
|
import androidx.compose.ui.unit.dp
|
|
import helium314.keyboard.keyboard.internal.KeyboardIconsSet
|
|
import helium314.keyboard.keyboard.internal.keyboard_parser.floris.KeyCode.checkAndConvertCode
|
|
import helium314.keyboard.latin.R
|
|
import helium314.keyboard.latin.settings.Settings
|
|
import helium314.keyboard.latin.utils.ToolbarKey
|
|
import helium314.keyboard.latin.utils.getCodeForToolbarKey
|
|
import helium314.keyboard.latin.utils.getCodeForToolbarKeyLongClick
|
|
import helium314.keyboard.latin.utils.getStringResourceOrName
|
|
import helium314.keyboard.latin.utils.prefs
|
|
import helium314.keyboard.latin.utils.readCustomKeyCodes
|
|
import helium314.keyboard.latin.utils.writeCustomKeyCodes
|
|
import helium314.keyboard.settings.screens.GetIcon
|
|
|
|
@Composable
|
|
fun ToolbarKeysCustomizer(
|
|
key: String,
|
|
onDismissRequest: () -> Unit
|
|
) {
|
|
val ctx = LocalContext.current
|
|
val prefs = ctx.prefs()
|
|
var showKeyCustomizer: ToolbarKey? by rememberSaveable { mutableStateOf(null) }
|
|
var showDeletePrefConfirmDialog by rememberSaveable { mutableStateOf(false) }
|
|
ThreeButtonAlertDialog(
|
|
onDismissRequest = onDismissRequest,
|
|
cancelButtonText = stringResource(R.string.dialog_close),
|
|
confirmButtonText = null,
|
|
onConfirmed = { },
|
|
neutralButtonText = if (readCustomKeyCodes(prefs).isNotEmpty()) stringResource(R.string.button_default) else null,
|
|
onNeutral = { showDeletePrefConfirmDialog = true },
|
|
title = { Text(stringResource(R.string.customize_toolbar_key_codes)) },
|
|
content = {
|
|
LazyColumn(
|
|
verticalArrangement = Arrangement.spacedBy(4.dp)
|
|
) {
|
|
items(ToolbarKey.entries) {
|
|
Row(
|
|
verticalAlignment = Alignment.CenterVertically,
|
|
modifier = Modifier.clickable { showKeyCustomizer = it }.fillParentMaxWidth()
|
|
) {
|
|
KeyboardIconsSet.instance.GetIcon(it.name)
|
|
Text(it.name.lowercase().getStringResourceOrName("", ctx))
|
|
}
|
|
}
|
|
}
|
|
},
|
|
)
|
|
if (showKeyCustomizer != null) {
|
|
val shownKey = showKeyCustomizer
|
|
if (shownKey != null)
|
|
ToolbarKeyCustomizer(shownKey) { showKeyCustomizer = null }
|
|
}
|
|
if (showDeletePrefConfirmDialog)
|
|
ConfirmationDialog(
|
|
onDismissRequest = { showDeletePrefConfirmDialog = false },
|
|
onConfirmed = {
|
|
showDeletePrefConfirmDialog = false
|
|
onDismissRequest()
|
|
prefs.edit().remove(key).apply()
|
|
},
|
|
content = { Text(stringResource(R.string.customize_toolbar_key_code_reset_message)) }
|
|
)
|
|
}
|
|
|
|
@Composable
|
|
private fun ToolbarKeyCustomizer(
|
|
key: ToolbarKey,
|
|
onDismissRequest: () -> Unit
|
|
) {
|
|
val ctx = LocalContext.current
|
|
val prefs = ctx.prefs()
|
|
var code by rememberSaveable(stateSaver = TextFieldValue.Saver) { mutableStateOf(TextFieldValue(getCodeForToolbarKey(key).toString())) }
|
|
var longPressCode by rememberSaveable(stateSaver = TextFieldValue.Saver) { mutableStateOf(TextFieldValue(getCodeForToolbarKeyLongClick(key).toString())) }
|
|
ThreeButtonAlertDialog(
|
|
onDismissRequest = onDismissRequest,
|
|
onConfirmed = {
|
|
val codes = readCustomKeyCodes(prefs)
|
|
codes[key] = checkCode(code) to checkCode(longPressCode)
|
|
writeCustomKeyCodes(prefs, codes)
|
|
},
|
|
checkOk = { checkCode(code) != null && checkCode(longPressCode) != null },
|
|
neutralButtonText = if (readCustomKeyCodes(prefs).containsKey(key))
|
|
stringResource(R.string.button_default)
|
|
else null,
|
|
onNeutral = {
|
|
onDismissRequest()
|
|
val keys = readCustomKeyCodes(prefs)
|
|
keys.remove(key)
|
|
writeCustomKeyCodes(prefs, keys)
|
|
},
|
|
title = { Text(key.name.lowercase().getStringResourceOrName("", ctx)) },
|
|
content = {
|
|
Column {
|
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
|
Text(stringResource(R.string.key_code), Modifier.weight(0.5f))
|
|
TextField(
|
|
value = code,
|
|
onValueChange = { code = it },
|
|
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number),
|
|
modifier = Modifier.weight(0.5f)
|
|
)
|
|
}
|
|
Row(verticalAlignment = Alignment.CenterVertically) {
|
|
Text(stringResource(R.string.long_press_code), Modifier.weight(0.5f))
|
|
TextField(
|
|
value = longPressCode,
|
|
onValueChange = { longPressCode = it },
|
|
keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number),
|
|
modifier = Modifier.weight(0.5f)
|
|
)
|
|
}
|
|
}
|
|
},
|
|
)
|
|
}
|
|
|
|
@Preview
|
|
@Composable
|
|
fun PreviewToolbarKeyCustomizer() {
|
|
Settings.init(LocalContext.current)
|
|
ToolbarKeyCustomizer(ToolbarKey.CUT) { }
|
|
}
|
|
|
|
@Preview
|
|
@Composable
|
|
fun PreviewToolbarKeysCustomizer() {
|
|
Settings.init(LocalContext.current)
|
|
KeyboardIconsSet.instance.loadIcons(LocalContext.current)
|
|
ToolbarKeysCustomizer("") { }
|
|
}
|
|
|
|
private fun checkCode(code: TextFieldValue) = runCatching {
|
|
code.text.toIntOrNull()?.takeIf { it.checkAndConvertCode() <= Char.MAX_VALUE.code }
|
|
}.getOrNull()
|