2015-07-30 20:14:55 +02:00
|
|
|
package juloo.keyboard2;
|
|
|
|
|
|
|
|
import android.inputmethodservice.InputMethodService;
|
|
|
|
import android.util.Log;
|
2015-07-31 20:48:19 +02:00
|
|
|
import android.view.KeyEvent;
|
2015-07-30 20:14:55 +02:00
|
|
|
import android.view.View;
|
|
|
|
|
|
|
|
public class Keyboard2 extends InputMethodService
|
|
|
|
{
|
2015-08-08 15:26:23 +02:00
|
|
|
private KeyboardData _keyboardData; // TODO: settings
|
2015-08-03 20:01:05 +02:00
|
|
|
private Keyboard2View _inputView = null;
|
2015-07-30 20:14:55 +02:00
|
|
|
|
2015-07-31 20:48:19 +02:00
|
|
|
@Override
|
|
|
|
public void onCreate()
|
|
|
|
{
|
|
|
|
super.onCreate();
|
2015-08-03 20:01:05 +02:00
|
|
|
setKeyboard(R.xml.azerty);
|
2015-07-31 20:48:19 +02:00
|
|
|
}
|
|
|
|
|
2015-07-30 20:14:55 +02:00
|
|
|
@Override
|
|
|
|
public View onCreateInputView()
|
|
|
|
{
|
|
|
|
_inputView = (Keyboard2View)getLayoutInflater().inflate(R.layout.input, null);
|
2015-07-31 20:48:19 +02:00
|
|
|
_inputView.setKeyboard(this, _keyboardData);
|
2015-07-30 20:14:55 +02:00
|
|
|
return (_inputView);
|
|
|
|
}
|
|
|
|
|
2015-08-03 20:01:05 +02:00
|
|
|
private void setKeyboard(int res)
|
|
|
|
{
|
|
|
|
_keyboardData = new KeyboardData(getResources().getXml(res));
|
|
|
|
if (_inputView != null)
|
|
|
|
_inputView.setKeyboard(this, _keyboardData);
|
|
|
|
}
|
|
|
|
|
2015-08-01 23:54:38 +02:00
|
|
|
public void handleKeyUp(KeyValue key, int flags)
|
2015-08-01 16:33:30 +02:00
|
|
|
{
|
2015-08-02 19:56:23 +02:00
|
|
|
if (getCurrentInputConnection() == null)
|
2015-08-02 21:32:11 +02:00
|
|
|
return ;
|
2015-08-03 20:01:05 +02:00
|
|
|
if (key.getEventCode() == KeyValue.EVENT_CONFIG)
|
|
|
|
{
|
|
|
|
// TODO improve this shit
|
|
|
|
final CharSequence layouts[] = new CharSequence[]{"Azerty", "Qwerty"};
|
|
|
|
final int layout_res[] = new int[]{R.xml.azerty, R.xml.qwerty};
|
|
|
|
final Keyboard2 self = this;
|
|
|
|
android.app.AlertDialog dialog = new android.app.AlertDialog.Builder(this)
|
|
|
|
.setTitle("Change keyboard layout")
|
|
|
|
.setItems(layouts, new android.content.DialogInterface.OnClickListener()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void onClick(android.content.DialogInterface dialog, int which)
|
|
|
|
{
|
|
|
|
self.setKeyboard(layout_res[which]);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.create();
|
|
|
|
android.view.WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
|
|
|
|
lp.token = _inputView.getWindowToken();
|
|
|
|
lp.type = android.view.WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
|
|
|
|
dialog.getWindow().setAttributes(lp);
|
|
|
|
dialog.getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
|
|
|
|
dialog.show();
|
|
|
|
}
|
|
|
|
else if ((flags & (KeyValue.FLAG_CTRL | KeyValue.FLAG_ALT)) != 0)
|
2015-08-03 15:58:13 +02:00
|
|
|
handleMetaKeyUp(key, flags);
|
2015-08-02 21:32:11 +02:00
|
|
|
else if (key.getEventCode() == KeyEvent.KEYCODE_DEL)
|
2015-08-03 15:58:13 +02:00
|
|
|
handleDelKey(1, 0);
|
2015-08-02 21:32:11 +02:00
|
|
|
else if (key.getEventCode() == KeyEvent.KEYCODE_FORWARD_DEL)
|
2015-08-03 15:58:13 +02:00
|
|
|
handleDelKey(0, 1);
|
2015-08-02 21:32:11 +02:00
|
|
|
else if (key.getChar(false) == KeyValue.CHAR_NONE && key.getEventCode() != KeyValue.EVENT_NONE)
|
2015-08-03 15:58:13 +02:00
|
|
|
handleMetaKeyUp(key, flags);
|
2015-08-03 15:11:11 +02:00
|
|
|
else if (key.getChar(false) != KeyValue.CHAR_NONE)
|
2015-08-02 21:32:11 +02:00
|
|
|
sendKeyChar(key.getChar((flags & KeyValue.FLAG_SHIFT) != 0));
|
2015-08-03 15:58:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleDelKey(int before, int after)
|
|
|
|
{
|
|
|
|
CharSequence selection = getCurrentInputConnection().getSelectedText(0);
|
|
|
|
|
|
|
|
if (selection != null && selection.length() > 0)
|
|
|
|
getCurrentInputConnection().commitText("", 1);
|
|
|
|
else
|
|
|
|
getCurrentInputConnection().deleteSurroundingText(before, after);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|