mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
ca2f051cc1
If any shift state variants of alphabet keyboard layout is not specified in KeyboardSet.Element, it will be automatically generated from base alphabet keyboard definition. This change also * Eliminates KeyboardShiftState object from Keyboard. * Removes various set shift state methods from Keyboard. * Removes KeyboardSet.Element.elementAutoGenerate attribute. * Separates "sticky" Key.backgroundType to "stickyOff" and "stickyOn" * Add preserveCase flag to smiley, .com, and labeled special keys. * Rename KeyboardShiftState class to AlphabetShiftState. * Rename some attributes from *UppercaseLetter* to *ShiftedLetterHint*. * Introduce shiftedLetterActivated to Key.keyLabelFlags Change-Id: I01a0a8efeeaa76820ae728a5bdfa8d02b6ce74b7
167 lines
6.2 KiB
XML
167 lines
6.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
/*
|
|
**
|
|
** Copyright 2011, The Android Open Source Project
|
|
**
|
|
** 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
|
|
**
|
|
** http://www.apache.org/licenses/LICENSE-2.0
|
|
**
|
|
** 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.
|
|
*/
|
|
-->
|
|
|
|
<merge
|
|
xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
|
|
>
|
|
<!-- Base key style for the key which may have settings key as popup key -->
|
|
<switch>
|
|
<case
|
|
latin:clobberSettingsKey="true"
|
|
>
|
|
<key-style
|
|
latin:styleName="f2PopupStyle"
|
|
latin:backgroundType="functional" />
|
|
</case>
|
|
<default>
|
|
<key-style
|
|
latin:styleName="f2PopupStyle"
|
|
latin:keyLabelFlags="hasPopupHint"
|
|
latin:moreKeys="\@icon/settingsKey|\@integer/key_settings"
|
|
latin:backgroundType="functional" />
|
|
</default>
|
|
</switch>
|
|
<switch>
|
|
<case
|
|
latin:keyboardSetElement="alphabetManualShifted|alphabetShiftLockShifted"
|
|
>
|
|
<key-style
|
|
latin:styleName="hasShiftedLetterHintStyle"
|
|
latin:keyLabelFlags="hasShiftedLetterHint|shiftedLetterActivated" />
|
|
</case>
|
|
<default>
|
|
<key-style
|
|
latin:styleName="hasShiftedLetterHintStyle"
|
|
latin:keyLabelFlags="hasShiftedLetterHint" />
|
|
</default>
|
|
</switch>
|
|
<!-- Functional key styles -->
|
|
<switch>
|
|
<case
|
|
latin:keyboardSetElement="alphabetManualShifted|alphabetAutomaticShifted"
|
|
>
|
|
<key-style
|
|
latin:styleName="shiftKeyStyle"
|
|
latin:code="@integer/key_shift"
|
|
latin:keyIcon="iconShiftKeyShifted"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="stickyOff" />
|
|
</case>
|
|
<case
|
|
latin:keyboardSetElement="alphabetShiftLocked|alphabetShiftLockShifted"
|
|
>
|
|
<key-style
|
|
latin:styleName="shiftKeyStyle"
|
|
latin:code="@integer/key_shift"
|
|
latin:keyIcon="iconShiftKeyShifted"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="stickyOn" />
|
|
</case>
|
|
<default>
|
|
<key-style
|
|
latin:styleName="shiftKeyStyle"
|
|
latin:code="@integer/key_shift"
|
|
latin:keyIcon="iconShiftKey"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="stickyOff" />
|
|
</default>
|
|
</switch>
|
|
<key-style
|
|
latin:styleName="deleteKeyStyle"
|
|
latin:code="@integer/key_delete"
|
|
latin:keyIcon="iconDeleteKey"
|
|
latin:keyActionFlags="isRepeatable|noKeyPreview"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="returnKeyStyle"
|
|
latin:code="@integer/key_return"
|
|
latin:keyIcon="iconReturnKey"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="spaceKeyStyle"
|
|
latin:code="@integer/key_space"
|
|
latin:keyActionFlags="noKeyPreview" />
|
|
<key-style
|
|
latin:styleName="nonSpecialBackgroundSpaceKeyStyle"
|
|
latin:code="@integer/key_space"
|
|
latin:keyActionFlags="noKeyPreview" />
|
|
<key-style
|
|
latin:styleName="smileyKeyStyle"
|
|
latin:keyLabel=":-)"
|
|
latin:keyOutputText=":-) "
|
|
latin:keyLabelFlags="hasPopupHint|preserveCase"
|
|
latin:moreKeys="@string/more_keys_for_smiley"
|
|
latin:maxMoreKeysColumn="5" />
|
|
<key-style
|
|
latin:styleName="shortcutKeyStyle"
|
|
latin:code="@integer/key_shortcut"
|
|
latin:keyIcon="iconShortcutKey"
|
|
latin:keyIconDisabled="iconDisabledShortcutKey"
|
|
latin:keyActionFlags="noKeyPreview|altCodeWhileTyping"
|
|
latin:parentStyle="f2PopupStyle" />
|
|
<key-style
|
|
latin:styleName="settingsKeyStyle"
|
|
latin:code="@integer/key_settings"
|
|
latin:keyIcon="iconSettingsKey"
|
|
latin:keyActionFlags="noKeyPreview|altCodeWhileTyping"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="tabKeyStyle"
|
|
latin:code="@integer/key_tab"
|
|
latin:keyIcon="iconTabKey"
|
|
latin:keyIconPreview="iconPreviewTabKey"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="toSymbolKeyStyle"
|
|
latin:code="@integer/key_switch_alpha_symbol"
|
|
latin:keyLabel="@string/label_to_symbol_key"
|
|
latin:keyLabelFlags="preserveCase"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="toAlphaKeyStyle"
|
|
latin:code="@integer/key_switch_alpha_symbol"
|
|
latin:keyLabel="@string/label_to_alpha_key"
|
|
latin:keyLabelFlags="preserveCase"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="toMoreSymbolKeyStyle"
|
|
latin:code="@integer/key_shift"
|
|
latin:keyLabel="@string/label_to_more_symbol_for_tablet_key"
|
|
latin:keyLabelFlags="preserveCase"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="backFromMoreSymbolKeyStyle"
|
|
latin:code="@integer/key_shift"
|
|
latin:keyLabel="@string/label_to_symbol_key"
|
|
latin:keyLabelFlags="preserveCase"
|
|
latin:keyActionFlags="noKeyPreview"
|
|
latin:backgroundType="functional" />
|
|
<key-style
|
|
latin:styleName="comKeyStyle"
|
|
latin:keyLabel="@string/keylabel_for_popular_domain"
|
|
latin:keyLabelFlags="fontNormal|hasPopupHint|preserveCase"
|
|
latin:keyOutputText="@string/keylabel_for_popular_domain"
|
|
latin:moreKeys="@string/more_keys_for_popular_domain" />
|
|
</merge>
|