2015-07-30 20:14:55 +02:00
|
|
|
package juloo.keyboard2;
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
import android.content.Context;
|
2015-08-08 17:57:25 +02:00
|
|
|
import android.content.Intent;
|
2015-08-08 16:47:22 +02:00
|
|
|
import android.content.SharedPreferences;
|
2015-07-30 20:14:55 +02:00
|
|
|
import android.inputmethodservice.InputMethodService;
|
2021-05-09 00:56:59 +02:00
|
|
|
import android.os.Build.VERSION;
|
2021-04-18 23:31:59 +02:00
|
|
|
import android.os.IBinder;
|
2015-08-08 16:47:22 +02:00
|
|
|
import android.preference.PreferenceManager;
|
2022-02-07 00:55:32 +01:00
|
|
|
import android.text.InputType;
|
|
|
|
import android.view.ContextThemeWrapper;
|
2015-10-11 15:30:39 +02:00
|
|
|
import android.view.inputmethod.EditorInfo;
|
2021-12-28 17:47:18 +01:00
|
|
|
import android.view.inputmethod.InputConnection;
|
2021-05-09 00:09:10 +02:00
|
|
|
import android.view.inputmethod.InputMethodInfo;
|
2016-12-11 22:45:58 +01:00
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2021-04-15 23:56:34 +02:00
|
|
|
import android.view.inputmethod.InputMethodSubtype;
|
2015-07-31 20:48:19 +02:00
|
|
|
import android.view.KeyEvent;
|
2015-07-30 20:14:55 +02:00
|
|
|
import android.view.View;
|
2015-08-08 22:24:19 +02:00
|
|
|
import android.view.ViewGroup;
|
2022-01-20 21:22:09 +01:00
|
|
|
import android.view.ViewParent;
|
2022-03-15 11:49:32 +01:00
|
|
|
import android.util.Log;
|
|
|
|
import android.util.LogPrinter;
|
2022-05-01 00:00:15 +02:00
|
|
|
import java.util.Arrays;
|
2021-05-09 00:09:10 +02:00
|
|
|
import java.util.List;
|
2022-03-13 00:14:18 +01:00
|
|
|
import java.util.HashSet;
|
|
|
|
import java.util.Set;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
|
|
|
public class Keyboard2 extends InputMethodService
|
2022-09-19 22:06:22 +02:00
|
|
|
implements SharedPreferences.OnSharedPreferenceChangeListener,
|
|
|
|
Autocapitalisation.Callback
|
2015-07-30 20:14:55 +02:00
|
|
|
{
|
2022-03-15 11:49:32 +01:00
|
|
|
static private final String TAG = "Keyboard2";
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
private Keyboard2View _keyboardView;
|
2021-04-15 23:56:34 +02:00
|
|
|
private int _currentTextLayout;
|
2021-12-19 19:44:27 +01:00
|
|
|
private ViewGroup _emojiPane = null;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
private Config _config;
|
2022-10-15 16:12:25 +02:00
|
|
|
private Autocapitalisation _autocap;
|
2015-10-29 12:49:40 +01:00
|
|
|
|
2022-03-15 11:49:32 +01:00
|
|
|
private boolean _debug_logs = false;
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
private KeyboardData getLayout(int resId)
|
|
|
|
{
|
2022-02-07 00:55:32 +01:00
|
|
|
return KeyboardData.load(getResources(), resId);
|
2021-04-15 23:56:34 +02:00
|
|
|
}
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
@Override
|
|
|
|
public void onCreate()
|
|
|
|
{
|
|
|
|
super.onCreate();
|
|
|
|
PreferenceManager.setDefaultValues(this, R.xml.settings, false);
|
|
|
|
PreferenceManager.getDefaultSharedPreferences(this).registerOnSharedPreferenceChangeListener(this);
|
2021-12-28 17:47:18 +01:00
|
|
|
Config.initGlobalConfig(this, new KeyEventHandler(this.new Receiver()));
|
2021-12-28 16:47:19 +01:00
|
|
|
_config = Config.globalConfig();
|
2022-01-30 23:29:50 +01:00
|
|
|
_config.refresh(this);
|
2021-12-30 00:26:05 +01:00
|
|
|
_keyboardView = (Keyboard2View)inflate_view(R.layout.keyboard);
|
2021-12-19 19:44:27 +01:00
|
|
|
_keyboardView.reset();
|
2022-03-15 11:49:32 +01:00
|
|
|
_debug_logs = getResources().getBoolean(R.bool.debug_logs);
|
2022-10-15 16:12:25 +02:00
|
|
|
_autocap = new Autocapitalisation(getMainLooper(), this);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-10-29 12:49:40 +01:00
|
|
|
|
2022-09-19 22:06:22 +02:00
|
|
|
public void update_shift_state(boolean should_enable, boolean should_disable)
|
2022-07-24 20:02:48 +02:00
|
|
|
{
|
2022-09-19 22:06:22 +02:00
|
|
|
if (should_enable)
|
2022-07-24 20:02:48 +02:00
|
|
|
_keyboardView.set_shift_state(true);
|
2022-09-19 22:06:22 +02:00
|
|
|
else if (should_disable)
|
2022-07-24 20:02:48 +02:00
|
|
|
_keyboardView.set_shift_state(false);
|
|
|
|
}
|
|
|
|
|
2021-05-09 00:09:10 +02:00
|
|
|
private List<InputMethodSubtype> getEnabledSubtypes(InputMethodManager imm)
|
|
|
|
{
|
|
|
|
String pkg = getPackageName();
|
|
|
|
for (InputMethodInfo imi : imm.getEnabledInputMethodList())
|
|
|
|
if (imi.getPackageName().equals(pkg))
|
|
|
|
return imm.getEnabledInputMethodSubtypeList(imi, true);
|
2022-05-01 00:00:15 +02:00
|
|
|
return Arrays.asList();
|
2021-05-09 00:09:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void refreshSubtypeLayout(InputMethodSubtype subtype)
|
2021-04-15 23:56:34 +02:00
|
|
|
{
|
2022-01-15 20:56:08 +01:00
|
|
|
int l = _config.layout;
|
2021-05-09 01:07:43 +02:00
|
|
|
if (l == -1)
|
|
|
|
{
|
|
|
|
String s = subtype.getExtraValueOf("default_layout");
|
|
|
|
if (s != null)
|
|
|
|
l = Config.layoutId_of_string(s);
|
2022-02-19 21:48:48 +01:00
|
|
|
else
|
|
|
|
l = R.xml.qwerty;
|
2021-05-09 01:07:43 +02:00
|
|
|
}
|
|
|
|
_currentTextLayout = l;
|
2021-05-09 00:09:10 +02:00
|
|
|
}
|
|
|
|
|
2022-06-06 00:23:45 +02:00
|
|
|
private void extra_keys_of_subtype(Set<KeyValue> dst, InputMethodSubtype subtype)
|
2021-05-09 00:09:10 +02:00
|
|
|
{
|
2022-01-09 12:47:47 +01:00
|
|
|
String extra_keys = subtype.getExtraValueOf("extra_keys");
|
2022-03-13 00:14:18 +01:00
|
|
|
if (extra_keys == null)
|
|
|
|
return;
|
|
|
|
String[] ks = extra_keys.split("\\|");
|
|
|
|
for (int i = 0; i < ks.length; i++)
|
2022-06-06 00:23:45 +02:00
|
|
|
dst.add(KeyValue.getKeyByName(ks[i]));
|
2021-05-09 00:09:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void refreshAccentsOption(InputMethodManager imm, InputMethodSubtype subtype)
|
|
|
|
{
|
2022-06-06 00:23:45 +02:00
|
|
|
HashSet<KeyValue> extra_keys = new HashSet<KeyValue>();
|
2022-03-16 13:09:10 +01:00
|
|
|
List<InputMethodSubtype> enabled_subtypes = getEnabledSubtypes(imm);
|
2021-05-09 00:09:10 +02:00
|
|
|
switch (_config.accents)
|
2021-04-28 00:23:52 +02:00
|
|
|
{
|
2022-06-06 00:55:16 +02:00
|
|
|
// '3' was "all accents", now unused
|
|
|
|
case 1: case 3:
|
2022-03-13 00:14:18 +01:00
|
|
|
extra_keys_of_subtype(extra_keys, subtype);
|
2022-03-16 13:09:10 +01:00
|
|
|
for (InputMethodSubtype s : enabled_subtypes)
|
2022-03-13 00:14:18 +01:00
|
|
|
extra_keys_of_subtype(extra_keys, s);
|
2021-05-09 00:09:10 +02:00
|
|
|
break;
|
2022-03-13 00:14:18 +01:00
|
|
|
case 2:
|
|
|
|
extra_keys_of_subtype(extra_keys, subtype);
|
|
|
|
break;
|
2021-05-09 00:09:10 +02:00
|
|
|
case 4: break;
|
|
|
|
default: throw new IllegalArgumentException();
|
2021-04-28 00:23:52 +02:00
|
|
|
}
|
2022-09-19 11:41:18 +02:00
|
|
|
_config.extra_keys_subtype = extra_keys;
|
2022-03-16 13:09:10 +01:00
|
|
|
if (enabled_subtypes.size() > 1)
|
|
|
|
_config.shouldOfferSwitchingToNextInputMethod = true;
|
2021-04-28 00:23:52 +02:00
|
|
|
}
|
|
|
|
|
2021-05-09 00:56:59 +02:00
|
|
|
private void refreshSubtypeLegacyFallback()
|
|
|
|
{
|
|
|
|
// Fallback for the accents option: Only respect the "None" case
|
|
|
|
switch (_config.accents)
|
|
|
|
{
|
2022-09-19 11:41:18 +02:00
|
|
|
case 1: case 2: case 3: _config.extra_keys_subtype = null; break;
|
|
|
|
case 4: _config.extra_keys_subtype = new HashSet<KeyValue>(); break;
|
2021-05-09 00:56:59 +02:00
|
|
|
}
|
|
|
|
// Fallback for the layout option: Use qwerty in the "system settings" case
|
|
|
|
_currentTextLayout = (_config.layout == -1) ? R.xml.qwerty : _config.layout;
|
|
|
|
}
|
|
|
|
|
2021-04-28 00:23:52 +02:00
|
|
|
private void refreshSubtypeImm()
|
|
|
|
{
|
|
|
|
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
|
|
|
|
_config.shouldOfferSwitchingToNextInputMethod = imm.shouldOfferSwitchingToNextInputMethod(getConnectionToken());
|
2021-05-09 00:56:59 +02:00
|
|
|
if (VERSION.SDK_INT < 12)
|
|
|
|
{
|
|
|
|
// Subtypes won't work well under API level 12 (getExtraValueOf)
|
|
|
|
refreshSubtypeLegacyFallback();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
InputMethodSubtype subtype = imm.getCurrentInputMethodSubtype();
|
2022-09-24 23:34:50 +02:00
|
|
|
if (subtype == null)
|
|
|
|
{
|
|
|
|
// On some rare cases, [subtype] is null.
|
|
|
|
refreshSubtypeLegacyFallback();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
refreshSubtypeLayout(subtype);
|
|
|
|
refreshAccentsOption(imm, subtype);
|
|
|
|
}
|
2021-05-09 00:56:59 +02:00
|
|
|
}
|
2022-04-03 17:15:12 +02:00
|
|
|
_config.shouldOfferSwitchingToProgramming =
|
|
|
|
_config.programming_layout != -1 &&
|
|
|
|
_currentTextLayout != _config.programming_layout;
|
2021-04-15 23:56:34 +02:00
|
|
|
}
|
|
|
|
|
2022-01-09 20:26:06 +01:00
|
|
|
private String actionLabel_of_imeAction(int action)
|
|
|
|
{
|
2022-01-23 19:19:38 +01:00
|
|
|
int res;
|
2022-01-09 20:26:06 +01:00
|
|
|
switch (action)
|
|
|
|
{
|
2022-01-23 19:19:38 +01:00
|
|
|
case EditorInfo.IME_ACTION_NEXT: res = R.string.key_action_next; break;
|
|
|
|
case EditorInfo.IME_ACTION_DONE: res = R.string.key_action_done; break;
|
|
|
|
case EditorInfo.IME_ACTION_GO: res = R.string.key_action_go; break;
|
|
|
|
case EditorInfo.IME_ACTION_PREVIOUS: res = R.string.key_action_prev; break;
|
|
|
|
case EditorInfo.IME_ACTION_SEARCH: res = R.string.key_action_search; break;
|
|
|
|
case EditorInfo.IME_ACTION_SEND: res = R.string.key_action_send; break;
|
2022-01-30 12:17:31 +01:00
|
|
|
case EditorInfo.IME_ACTION_UNSPECIFIED:
|
2022-01-09 20:26:06 +01:00
|
|
|
case EditorInfo.IME_ACTION_NONE:
|
|
|
|
default: return null;
|
|
|
|
}
|
2022-01-23 19:19:38 +01:00
|
|
|
return getResources().getString(res);
|
2022-01-09 20:26:06 +01:00
|
|
|
}
|
|
|
|
|
2022-07-24 20:02:48 +02:00
|
|
|
private void refresh_action_label(EditorInfo info)
|
2022-01-09 20:26:06 +01:00
|
|
|
{
|
|
|
|
// First try to look at 'info.actionLabel', if it isn't set, look at
|
|
|
|
// 'imeOptions'.
|
|
|
|
if (info.actionLabel != null)
|
|
|
|
{
|
|
|
|
_config.actionLabel = info.actionLabel.toString();
|
|
|
|
_config.actionId = info.actionId;
|
2022-01-10 00:27:22 +01:00
|
|
|
_config.swapEnterActionKey = false;
|
2022-01-09 20:26:06 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int action = info.imeOptions & EditorInfo.IME_MASK_ACTION;
|
|
|
|
_config.actionLabel = actionLabel_of_imeAction(action); // Might be null
|
|
|
|
_config.actionId = action;
|
2022-01-10 00:27:22 +01:00
|
|
|
_config.swapEnterActionKey =
|
2022-01-30 12:17:31 +01:00
|
|
|
(info.imeOptions & EditorInfo.IME_FLAG_NO_ENTER_ACTION) == 0;
|
2022-01-09 20:26:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-30 23:29:50 +01:00
|
|
|
private void refreshConfig()
|
|
|
|
{
|
|
|
|
int prev_theme = _config.theme;
|
|
|
|
_config.refresh(this);
|
|
|
|
refreshSubtypeImm();
|
|
|
|
// Refreshing the theme config requires re-creating the views
|
|
|
|
if (prev_theme != _config.theme)
|
|
|
|
{
|
|
|
|
_keyboardView = (Keyboard2View)inflate_view(R.layout.keyboard);
|
|
|
|
_emojiPane = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-15 11:49:32 +01:00
|
|
|
private void log_editor_info(EditorInfo info)
|
|
|
|
{
|
|
|
|
LogPrinter p = new LogPrinter(Log.DEBUG, TAG);
|
|
|
|
info.dump(p, "");
|
|
|
|
if (info.extras != null)
|
|
|
|
Log.d(TAG, "extras: "+info.extras.toString());
|
|
|
|
Log.d(TAG, "swapEnterActionKey: "+_config.swapEnterActionKey);
|
|
|
|
Log.d(TAG, "actionLabel: "+_config.actionLabel);
|
|
|
|
}
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
@Override
|
|
|
|
public void onStartInputView(EditorInfo info, boolean restarting)
|
|
|
|
{
|
2022-01-30 23:29:50 +01:00
|
|
|
refreshConfig();
|
2022-07-24 20:02:48 +02:00
|
|
|
refresh_action_label(info);
|
2021-12-19 19:44:27 +01:00
|
|
|
if ((info.inputType & InputType.TYPE_CLASS_NUMBER) != 0)
|
2021-04-15 23:56:34 +02:00
|
|
|
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
|
2022-03-05 20:21:37 +01:00
|
|
|
else
|
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
2022-10-15 16:12:25 +02:00
|
|
|
_autocap.started(info, getCurrentInputConnection());
|
2021-12-30 00:26:05 +01:00
|
|
|
setInputView(_keyboardView);
|
2022-03-15 11:49:32 +01:00
|
|
|
if (_debug_logs)
|
|
|
|
log_editor_info(info);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-10-11 15:30:39 +02:00
|
|
|
|
2022-01-20 21:22:09 +01:00
|
|
|
@Override
|
|
|
|
public void setInputView(View v)
|
|
|
|
{
|
|
|
|
ViewParent parent = v.getParent();
|
|
|
|
if (parent != null && parent instanceof ViewGroup)
|
|
|
|
((ViewGroup)parent).removeView(v);
|
|
|
|
super.setInputView(v);
|
|
|
|
}
|
|
|
|
|
2021-04-15 23:56:34 +02:00
|
|
|
@Override
|
|
|
|
public void onCurrentInputMethodSubtypeChanged(InputMethodSubtype subtype)
|
|
|
|
{
|
2021-05-09 00:09:10 +02:00
|
|
|
refreshSubtypeImm();
|
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
2021-04-15 23:56:34 +02:00
|
|
|
}
|
|
|
|
|
2022-07-24 20:02:48 +02:00
|
|
|
@Override
|
|
|
|
public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd)
|
|
|
|
{
|
|
|
|
super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, candidatesStart, candidatesEnd);
|
2022-09-19 22:06:22 +02:00
|
|
|
_autocap.selection_updated(oldSelStart, newSelStart);
|
2022-07-24 20:02:48 +02:00
|
|
|
}
|
|
|
|
|
2021-05-01 22:47:22 +02:00
|
|
|
@Override
|
|
|
|
public void onFinishInputView(boolean finishingInput)
|
|
|
|
{
|
|
|
|
super.onFinishInputView(finishingInput);
|
|
|
|
_keyboardView.reset();
|
|
|
|
}
|
|
|
|
|
2021-12-19 19:44:27 +01:00
|
|
|
@Override
|
|
|
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key)
|
|
|
|
{
|
2022-01-30 23:29:50 +01:00
|
|
|
refreshConfig();
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-10-01 17:11:52 +02:00
|
|
|
|
2022-10-16 00:42:28 +02:00
|
|
|
@Override
|
|
|
|
public boolean onEvaluateFullscreenMode()
|
|
|
|
{
|
|
|
|
/* Entirely disable fullscreen mode. */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
/** Not static */
|
|
|
|
public class Receiver implements KeyEventHandler.IReceiver
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
public void switchToNextInputMethod()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
|
2022-01-23 19:40:45 +01:00
|
|
|
imm.showInputMethodPicker();
|
|
|
|
// deprecated in version 28: imm.switchToNextInputMethod(getConnectionToken(), false);
|
|
|
|
// added in version 28: switchToNextInputMethod(false);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2021-12-28 17:47:18 +01:00
|
|
|
|
|
|
|
public void setPane_emoji()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
|
|
|
if (_emojiPane == null)
|
2021-12-30 00:26:05 +01:00
|
|
|
_emojiPane = (ViewGroup)inflate_view(R.layout.emoji_pane);
|
2021-12-19 19:44:27 +01:00
|
|
|
setInputView(_emojiPane);
|
|
|
|
}
|
2021-12-28 17:47:18 +01:00
|
|
|
|
|
|
|
public void setPane_normal()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2021-12-28 17:47:18 +01:00
|
|
|
setInputView(_keyboardView);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2021-12-28 17:47:18 +01:00
|
|
|
|
2022-01-09 20:26:06 +01:00
|
|
|
public void performAction()
|
|
|
|
{
|
|
|
|
InputConnection conn = getCurrentInputConnection();
|
|
|
|
if (conn == null)
|
|
|
|
return;
|
|
|
|
conn.performEditorAction(_config.actionId);
|
|
|
|
}
|
|
|
|
|
2022-04-03 17:15:12 +02:00
|
|
|
public void switchMain()
|
2021-12-19 19:44:27 +01:00
|
|
|
{
|
2022-04-03 17:15:12 +02:00
|
|
|
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void switchNumeric()
|
|
|
|
{
|
|
|
|
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
|
|
|
|
}
|
|
|
|
|
2022-07-09 17:30:26 +02:00
|
|
|
public void switchGreekmath()
|
|
|
|
{
|
|
|
|
_keyboardView.setKeyboard(getLayout(R.xml.greekmath));
|
|
|
|
}
|
|
|
|
|
2022-04-03 17:15:12 +02:00
|
|
|
public void switchProgramming()
|
|
|
|
{
|
|
|
|
if (_config.programming_layout == -1)
|
|
|
|
return;
|
|
|
|
KeyboardData layout =
|
2022-05-29 12:27:46 +02:00
|
|
|
getLayout(_config.programming_layout).mapKeys(new KeyboardData.MapKeyValues() {
|
2022-06-24 20:26:27 +02:00
|
|
|
public KeyValue apply(KeyValue key, boolean localized)
|
2022-04-16 23:36:54 +02:00
|
|
|
{
|
2022-06-24 20:26:27 +02:00
|
|
|
if (key.getKind() == KeyValue.Kind.Event
|
2022-06-05 19:30:53 +02:00
|
|
|
&& key.getEvent() == KeyValue.Event.SWITCH_PROGRAMMING)
|
2022-04-16 23:36:54 +02:00
|
|
|
return KeyValue.getKeyByName("switch_text");
|
|
|
|
return key;
|
|
|
|
}
|
2022-04-03 17:15:12 +02:00
|
|
|
});
|
|
|
|
_keyboardView.setKeyboard(layout);
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2022-02-22 19:32:16 +01:00
|
|
|
public void sendKeyEvent(int eventAction, int eventCode, int meta)
|
2021-12-28 17:47:18 +01:00
|
|
|
{
|
|
|
|
InputConnection conn = getCurrentInputConnection();
|
|
|
|
if (conn == null)
|
|
|
|
return;
|
2022-02-22 19:32:16 +01:00
|
|
|
conn.sendKeyEvent(new KeyEvent(1, 1, eventAction, eventCode, 0, meta));
|
2022-07-24 23:32:14 +02:00
|
|
|
if (eventAction == KeyEvent.ACTION_UP)
|
|
|
|
_autocap.event_sent(eventCode);
|
2021-12-28 17:47:18 +01:00
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void showKeyboardConfig()
|
|
|
|
{
|
|
|
|
Intent intent = new Intent(Keyboard2.this, SettingsActivity.class);
|
|
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
startActivity(intent);
|
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void commitText(String text)
|
|
|
|
{
|
|
|
|
getCurrentInputConnection().commitText(text, 1);
|
2022-07-24 20:02:48 +02:00
|
|
|
_autocap.typed(text);
|
2021-12-28 17:47:18 +01:00
|
|
|
}
|
2015-08-03 15:58:13 +02:00
|
|
|
|
2021-12-28 17:47:18 +01:00
|
|
|
public void commitChar(char c)
|
|
|
|
{
|
|
|
|
sendKeyChar(c);
|
2022-07-24 20:02:48 +02:00
|
|
|
_autocap.typed(c);
|
2021-12-28 17:47:18 +01:00
|
|
|
}
|
2021-12-19 19:44:27 +01:00
|
|
|
}
|
2021-04-18 23:31:59 +02:00
|
|
|
|
|
|
|
private IBinder getConnectionToken()
|
|
|
|
{
|
|
|
|
return getWindow().getWindow().getAttributes().token;
|
|
|
|
}
|
2021-12-30 00:26:05 +01:00
|
|
|
|
|
|
|
private View inflate_view(int layout)
|
|
|
|
{
|
|
|
|
return View.inflate(new ContextThemeWrapper(this, _config.theme), layout, null);
|
|
|
|
}
|
2015-07-30 20:14:55 +02:00
|
|
|
}
|