summaryrefslogtreecommitdiff
path: root/src/com/android/calculator2/EventListener.java
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:49 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:49 -0800
commit852aa32e662b10b68ca4af100ef424b6229b07ac (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/com/android/calculator2/EventListener.java
parent4338780ffabc32d9095af330aabd483510cd7d70 (diff)
downloadExactCalculator-852aa32e662b10b68ca4af100ef424b6229b07ac.tar.gz
auto import from //depot/cupcake/@135843
Diffstat (limited to 'src/com/android/calculator2/EventListener.java')
-rw-r--r--src/com/android/calculator2/EventListener.java129
1 files changed, 0 insertions, 129 deletions
diff --git a/src/com/android/calculator2/EventListener.java b/src/com/android/calculator2/EventListener.java
deleted file mode 100644
index 0274a8b..0000000
--- a/src/com/android/calculator2/EventListener.java
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * Copyright (C) 2008 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.
- */
-
-package com.android.calculator2;
-
-import android.view.View;
-import android.view.KeyEvent;
-import android.view.View.OnClickListener;
-import android.view.View.OnLongClickListener;
-import android.view.View.OnKeyListener;
-import android.widget.Button;
-
-class EventListener implements View.OnKeyListener,
- View.OnClickListener,
- View.OnLongClickListener {
- Logic mHandler;
- PanelSwitcher mPanelSwitcher;
-
- void setHandler(Logic handler, PanelSwitcher panelSwitcher) {
- mHandler = handler;
- mPanelSwitcher = panelSwitcher;
- }
-
- //@Override
- public void onClick(View view) {
- int id = view.getId();
- switch (id) {
- case R.id.del:
- mHandler.onDelete();
- break;
-
- case R.id.equal:
- mHandler.onEnter();
- break;
-
- /*
- case R.id.clear:
- mHandler.onClear();
- break;
- */
-
- default:
- if (view instanceof Button) {
- String text = ((Button) view).getText().toString();
- if (text.length() >= 2) {
- // add paren after sin, cos, ln, etc. from buttons
- text += '(';
- }
- mHandler.insert(text);
- if (mPanelSwitcher != null &&
- mPanelSwitcher.getCurrentIndex() == Calculator.ADVANCED_PANEL) {
- mPanelSwitcher.moveRight();
- }
- }
- }
- }
-
- //@Override
- public boolean onLongClick(View view) {
- int id = view.getId();
- if (id == R.id.del) {
- mHandler.onClear();
- return true;
- }
- return false;
- }
-
- //@Override
- public boolean onKey(View view, int keyCode, KeyEvent keyEvent) {
- int action = keyEvent.getAction();
-
- if (keyCode == KeyEvent.KEYCODE_DPAD_LEFT ||
- keyCode == KeyEvent.KEYCODE_DPAD_RIGHT) {
- boolean eat = mHandler.eatHorizontalMove(keyCode == KeyEvent.KEYCODE_DPAD_LEFT);
- return eat;
- }
-
- //Work-around for spurious key event from IME, bug #1639445
- if (action == KeyEvent.ACTION_MULTIPLE && keyCode == KeyEvent.KEYCODE_UNKNOWN) {
- return true; // eat it
- }
-
- //Calculator.log("KEY " + keyCode + "; " + action);
- if (keyCode != KeyEvent.KEYCODE_DPAD_CENTER &&
- keyCode != KeyEvent.KEYCODE_DPAD_UP &&
- keyCode != KeyEvent.KEYCODE_DPAD_DOWN &&
- keyCode != KeyEvent.KEYCODE_ENTER) {
- return false;
- }
-
- /*
- We should act on KeyEvent.ACTION_DOWN, but strangely
- sometimes the DOWN event isn't received, only the UP.
- So the workaround is to act on UP...
- http://b/issue?id=1022478
- */
-
- if (action == KeyEvent.ACTION_UP) {
- switch (keyCode) {
- case KeyEvent.KEYCODE_ENTER:
- case KeyEvent.KEYCODE_DPAD_CENTER:
- mHandler.onEnter();
- break;
-
- case KeyEvent.KEYCODE_DPAD_UP:
- mHandler.onUp();
- break;
-
- case KeyEvent.KEYCODE_DPAD_DOWN:
- mHandler.onDown();
- break;
- }
- }
- return true;
- }
-}