Unexpected-Keyboard/srcs/juloo.keyboard2/Keyboard2.java

154 lines
4.6 KiB
Java
Raw Normal View History

2015-07-30 20:14:55 +02:00
package juloo.keyboard2;
2015-10-01 17:11:52 +02:00
import android.content.res.Configuration;
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;
2015-10-01 17:11:52 +02:00
import android.os.Bundle;
2015-10-11 15:30:39 +02:00
import android.text.InputType;
2015-08-08 16:47:22 +02:00
import android.preference.PreferenceManager;
2015-10-11 15:30:39 +02:00
import android.view.inputmethod.EditorInfo;
import android.view.KeyEvent;
2015-07-30 20:14:55 +02:00
import android.view.View;
import android.view.ViewGroup;
2015-07-30 20:14:55 +02:00
2015-10-23 14:22:43 +02:00
/*
** TODO: move config values in a Config object
*/
2015-07-30 20:14:55 +02:00
public class Keyboard2 extends InputMethodService
2015-08-08 16:47:22 +02:00
implements SharedPreferences.OnSharedPreferenceChangeListener
2015-07-30 20:14:55 +02:00
{
2015-10-23 14:22:43 +02:00
private Keyboard2View _keyboardView;
private ViewGroup _emojiPane = null;
2015-10-11 15:30:39 +02:00
private KeyboardData _textKeyboard = null;
private KeyboardData _numericKeyboard = null;
2015-07-30 20:14:55 +02:00
@Override
public void onCreate()
{
super.onCreate();
2015-08-08 16:47:22 +02:00
PreferenceManager.setDefaultValues(this, R.xml.settings, false);
2015-08-08 17:57:25 +02:00
PreferenceManager.getDefaultSharedPreferences(this).registerOnSharedPreferenceChangeListener(this);
2015-10-11 15:30:39 +02:00
updateConfig();
2015-10-23 14:22:43 +02:00
_keyboardView = (Keyboard2View)getLayoutInflater().inflate(R.layout.keyboard, null);
_keyboardView.reset_prefs(this);
}
private View getEmojiPane()
{
if (_emojiPane == null)
{
}
return (_emojiPane);
}
2015-07-30 20:14:55 +02:00
@Override
public View onCreateInputView()
{
2015-10-23 14:22:43 +02:00
// return (new EmojiGridView(this)); // TMP
ViewGroup parent = (ViewGroup)_keyboardView.getParent();
if (parent != null)
2015-10-23 14:22:43 +02:00
parent.removeView(_keyboardView);
return (_keyboardView);
2015-07-30 20:14:55 +02:00
}
2015-10-11 15:30:39 +02:00
@Override
public void onStartInputView(EditorInfo info, boolean restarting)
{
if ((info.inputType & InputType.TYPE_CLASS_NUMBER) != 0)
2015-10-23 14:22:43 +02:00
_keyboardView.setKeyboard(_numericKeyboard);
2015-10-11 15:30:39 +02:00
else
2015-10-23 14:22:43 +02:00
_keyboardView.setKeyboard(_textKeyboard);
2015-10-11 15:30:39 +02:00
}
@Override
2015-08-08 17:57:25 +02:00
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key)
{
2015-10-11 15:30:39 +02:00
updateConfig();
2015-10-23 14:22:43 +02:00
_keyboardView.reset_prefs(this);
}
2015-10-01 17:11:52 +02:00
@Override
public void onAppPrivateCommand(String command, Bundle data)
{
}
@Override
public void onConfigurationChanged(Configuration newConfig)
{
2015-10-23 14:22:43 +02:00
_keyboardView.reset();
2015-10-01 17:11:52 +02:00
}
2015-10-11 15:30:39 +02:00
private void updateConfig()
{
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
String keyboardLayout = prefs.getString("keyboard_layout", null);
int xmlRes = 0;
if (keyboardLayout != null)
xmlRes = getResources().getIdentifier(keyboardLayout, "xml", getPackageName());
if (xmlRes == 0)
xmlRes = R.xml.azerty;
_textKeyboard = new KeyboardData(getResources().getXml(xmlRes));
_numericKeyboard = new KeyboardData(getResources().getXml(R.xml.numeric));
}
2015-08-01 23:54:38 +02:00
public void handleKeyUp(KeyValue key, int flags)
2015-08-01 16:33:30 +02:00
{
2015-10-23 14:22:43 +02:00
int eventCode = key.getEventCode();
char keyChar = key.getChar(flags);
2015-08-02 19:56:23 +02:00
if (getCurrentInputConnection() == null)
return ;
2015-10-23 14:22:43 +02:00
if (eventCode == KeyValue.EVENT_CONFIG)
{
2015-08-08 17:57:25 +02:00
Intent intent = new Intent(this, SettingsActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
2015-10-23 14:22:43 +02:00
else if (eventCode == KeyValue.EVENT_SWITCH_TEXT)
_keyboardView.setKeyboard(_textKeyboard);
else if (eventCode == KeyValue.EVENT_SWITCH_NUMERIC)
_keyboardView.setKeyboard(_numericKeyboard);
else if ((flags & (KeyValue.FLAG_CTRL | KeyValue.FLAG_ALT)) != 0)
2015-08-03 15:58:13 +02:00
handleMetaKeyUp(key, flags);
2015-10-23 14:22:43 +02:00
// else if (eventCode == KeyEvent.KEYCODE_DEL)
2015-10-17 00:54:28 +02:00
// handleDelKey(1, 0);
2015-10-23 14:22:43 +02:00
// else if (eventCode == KeyEvent.KEYCODE_FORWARD_DEL)
2015-10-17 00:54:28 +02:00
// handleDelKey(0, 1);
2015-10-23 14:22:43 +02:00
else if (keyChar == KeyValue.CHAR_NONE && eventCode != KeyValue.EVENT_NONE)
2015-08-03 15:58:13 +02:00
handleMetaKeyUp(key, flags);
2015-10-23 14:22:43 +02:00
else if (keyChar != KeyValue.CHAR_NONE)
sendKeyChar(keyChar);
2015-08-03 15:58:13 +02:00
}
2015-10-17 00:54:28 +02:00
// private void handleDelKey(int before, int after)
// {
// CharSequence selection = getCurrentInputConnection().getSelectedText(0);
2015-08-03 15:58:13 +02:00
2015-10-17 00:54:28 +02:00
// if (selection != null && selection.length() > 0)
// getCurrentInputConnection().commitText("", 1);
// else
// getCurrentInputConnection().deleteSurroundingText(before, after);
// }
2015-08-03 15:58:13 +02:00
private void handleMetaKeyUp(KeyValue key, int flags)
{
int metaState = 0;
KeyEvent event;
if (key.getEventCode() == KeyValue.EVENT_NONE)
return ;
if ((flags & KeyValue.FLAG_CTRL) != 0)
metaState |= KeyEvent.META_CTRL_LEFT_ON | KeyEvent.META_CTRL_ON;
if ((flags & KeyValue.FLAG_ALT) != 0)
metaState |= KeyEvent.META_ALT_LEFT_ON | KeyEvent.META_ALT_ON;
if ((flags & KeyValue.FLAG_SHIFT) != 0)
metaState |= KeyEvent.META_SHIFT_LEFT_ON | KeyEvent.META_SHIFT_ON;
event = new KeyEvent(1, 1, KeyEvent.ACTION_DOWN, key.getEventCode(), 1, metaState);
getCurrentInputConnection().sendKeyEvent(event);
getCurrentInputConnection().sendKeyEvent(KeyEvent.changeAction(event, KeyEvent.ACTION_UP));
2015-08-01 16:33:30 +02:00
}
2015-07-30 20:14:55 +02:00
}