mobile/android/base/CustomEditText.java

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
michael@0 2 * This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 package org.mozilla.gecko;
michael@0 7
michael@0 8 import org.mozilla.gecko.widget.ThemedEditText;
michael@0 9
michael@0 10 import android.content.Context;
michael@0 11 import android.util.AttributeSet;
michael@0 12 import android.view.KeyEvent;
michael@0 13 import android.view.View;
michael@0 14
michael@0 15 public class CustomEditText extends ThemedEditText {
michael@0 16 private OnKeyPreImeListener mOnKeyPreImeListener;
michael@0 17 private OnSelectionChangedListener mOnSelectionChangedListener;
michael@0 18 private OnWindowFocusChangeListener mOnWindowFocusChangeListener;
michael@0 19
michael@0 20 public CustomEditText(Context context, AttributeSet attrs) {
michael@0 21 super(context, attrs);
michael@0 22 mOnKeyPreImeListener = null;
michael@0 23 }
michael@0 24
michael@0 25 public interface OnKeyPreImeListener {
michael@0 26 public boolean onKeyPreIme(View v, int keyCode, KeyEvent event);
michael@0 27 }
michael@0 28
michael@0 29 public void setOnKeyPreImeListener(OnKeyPreImeListener listener) {
michael@0 30 mOnKeyPreImeListener = listener;
michael@0 31 }
michael@0 32
michael@0 33 @Override
michael@0 34 public boolean onKeyPreIme(int keyCode, KeyEvent event) {
michael@0 35 if (mOnKeyPreImeListener != null)
michael@0 36 return mOnKeyPreImeListener.onKeyPreIme(this, keyCode, event);
michael@0 37
michael@0 38 return false;
michael@0 39 }
michael@0 40
michael@0 41 public interface OnSelectionChangedListener {
michael@0 42 public void onSelectionChanged(int selStart, int selEnd);
michael@0 43 }
michael@0 44
michael@0 45 public void setOnSelectionChangedListener(OnSelectionChangedListener listener) {
michael@0 46 mOnSelectionChangedListener = listener;
michael@0 47 }
michael@0 48
michael@0 49 @Override
michael@0 50 protected void onSelectionChanged(int selStart, int selEnd) {
michael@0 51 if (mOnSelectionChangedListener != null)
michael@0 52 mOnSelectionChangedListener.onSelectionChanged(selStart, selEnd);
michael@0 53
michael@0 54 super.onSelectionChanged(selStart, selEnd);
michael@0 55 }
michael@0 56
michael@0 57 public interface OnWindowFocusChangeListener {
michael@0 58 public void onWindowFocusChanged(boolean hasFocus);
michael@0 59 }
michael@0 60
michael@0 61 public void setOnWindowFocusChangeListener(OnWindowFocusChangeListener listener) {
michael@0 62 mOnWindowFocusChangeListener = listener;
michael@0 63 }
michael@0 64
michael@0 65 @Override
michael@0 66 public void onWindowFocusChanged(boolean hasFocus) {
michael@0 67 super.onWindowFocusChanged(hasFocus);
michael@0 68 if (mOnWindowFocusChangeListener != null)
michael@0 69 mOnWindowFocusChangeListener.onWindowFocusChanged(hasFocus);
michael@0 70 }
michael@0 71
michael@0 72 @Override
michael@0 73 public void setPrivateMode(boolean isPrivate) {
michael@0 74 super.setPrivateMode(isPrivate);
michael@0 75
michael@0 76 // android:textColorHighlight cannot support a ColorStateList.
michael@0 77 int colorId = isPrivate ? R.color.url_bar_text_highlight_pb : R.color.url_bar_text_highlight;
michael@0 78 setHighlightColor(getContext().getResources().getColor(colorId));
michael@0 79 }
michael@0 80 }

mercurial