blob: a446a3a1cf768b352e550dd899f9616fa38593b1 [file] [log] [blame]
alision11e8e162013-05-28 10:33:14 -04001/*
alision2ec64f92013-06-17 17:28:58 -04002 * Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
alision11e8e162013-05-28 10:33:14 -04003 *
4 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Additional permission under GNU GPL version 3 section 7:
21 *
22 * If you modify this program, or any covered work, by linking or
23 * combining it with the OpenSSL project's OpenSSL library (or a
24 * modified version of that library), containing parts covered by the
25 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26 * grants you additional permission to convey the resulting work.
27 * Corresponding Source for a non-source form of such a combination
28 * shall include the source code for the parts of OpenSSL used as well
29 * as that of the covered work.
30 */
31
alisiond295ec22013-05-17 10:12:13 -040032package com.savoirfairelinux.sflphone.fragments;
33
Alexandre Lision31f46fc2013-09-26 11:19:54 -040034import java.util.Locale;
35
alisiond295ec22013-05-17 10:12:13 -040036import android.app.Activity;
alisiond295ec22013-05-17 10:12:13 -040037import android.app.Fragment;
alision9f7a6ec2013-05-24 16:26:26 -040038import android.content.Context;
39import android.os.Bundle;
Alexandre Lision64dc8c02013-09-25 15:32:25 -040040import android.os.RemoteException;
Alexandre Lision31f46fc2013-09-26 11:19:54 -040041import android.text.Editable;
42import android.text.TextWatcher;
Alexandre Lision64dc8c02013-09-25 15:32:25 -040043import android.util.Log;
44import android.view.KeyEvent;
alisiond295ec22013-05-17 10:12:13 -040045import android.view.LayoutInflater;
Alexandre Lision6e8931e2013-09-19 16:49:34 -040046import android.view.MotionEvent;
alisiond295ec22013-05-17 10:12:13 -040047import android.view.View;
alision9f7a6ec2013-05-24 16:26:26 -040048import android.view.View.OnClickListener;
Alexandre Lision64dc8c02013-09-25 15:32:25 -040049import android.view.View.OnKeyListener;
Alexandre Lision6e8931e2013-09-19 16:49:34 -040050import android.view.View.OnTouchListener;
alisiond295ec22013-05-17 10:12:13 -040051import android.view.ViewGroup;
alision9f7a6ec2013-05-24 16:26:26 -040052import android.view.inputmethod.EditorInfo;
53import android.view.inputmethod.InputMethodManager;
54import android.widget.Button;
55import android.widget.ImageButton;
alisiond295ec22013-05-17 10:12:13 -040056
57import com.savoirfairelinux.sflphone.R;
alisiond295ec22013-05-17 10:12:13 -040058import com.savoirfairelinux.sflphone.service.ISipService;
alision9f7a6ec2013-05-24 16:26:26 -040059import com.savoirfairelinux.sflphone.views.ClearableEditText;
alisiond295ec22013-05-17 10:12:13 -040060
Alexandre Lision6e8931e2013-09-19 16:49:34 -040061public class DialingFragment extends Fragment implements OnTouchListener {
alision9f7a6ec2013-05-24 16:26:26 -040062
alision1005ba12013-06-19 13:52:44 -040063 private static final String TAG = DialingFragment.class.getSimpleName();
alision907bde72013-06-20 14:40:37 -040064
alision9f7a6ec2013-05-24 16:26:26 -040065 ClearableEditText textField;
alision9f7a6ec2013-05-24 16:26:26 -040066 private Callbacks mCallbacks = sDummyCallbacks;
67
68 /**
69 * A dummy implementation of the {@link Callbacks} interface that does nothing. Used only when this fragment is not attached to an activity.
70 */
71 private static Callbacks sDummyCallbacks = new Callbacks() {
72 @Override
alision907bde72013-06-20 14:40:37 -040073 public void onCallDialed(String to) {
alision9f7a6ec2013-05-24 16:26:26 -040074 }
75
76 @Override
77 public ISipService getService() {
78 // TODO Auto-generated method stub
79 return null;
80 }
81 };
82
83 /**
84 * The Activity calling this fragment has to implement this interface
85 *
86 */
87 public interface Callbacks {
alision907bde72013-06-20 14:40:37 -040088 void onCallDialed(String account);
alision9f7a6ec2013-05-24 16:26:26 -040089
90 public ISipService getService();
91
92 }
alisiond295ec22013-05-17 10:12:13 -040093
94 @Override
95 public void onAttach(Activity activity) {
96 super.onAttach(activity);
alision9f7a6ec2013-05-24 16:26:26 -040097
98 if (!(activity instanceof Callbacks)) {
99 throw new IllegalStateException("Activity must implement fragment's callbacks.");
100 }
101
102 mCallbacks = (Callbacks) activity;
alision58356b72013-06-03 17:13:36 -0400103
alisiond295ec22013-05-17 10:12:13 -0400104 }
105
106 @Override
107 public void onDetach() {
108 super.onDetach();
alision58356b72013-06-03 17:13:36 -0400109 mCallbacks = sDummyCallbacks;
alisiond295ec22013-05-17 10:12:13 -0400110 }
111
112 @Override
113 public void onCreate(Bundle savedInstanceState) {
114 super.onCreate(savedInstanceState);
alisiond295ec22013-05-17 10:12:13 -0400115 }
116
117 @Override
118 public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
119 View inflatedView = inflater.inflate(R.layout.frag_dialing, parent, false);
alision58356b72013-06-03 17:13:36 -0400120
alision9f7a6ec2013-05-24 16:26:26 -0400121 textField = (ClearableEditText) inflatedView.findViewById(R.id.textField);
122 ((ImageButton) inflatedView.findViewById(R.id.buttonCall)).setOnClickListener(new OnClickListener() {
123 @Override
124 public void onClick(View v) {
alision11e8e162013-05-28 10:33:14 -0400125
alision84813a12013-05-27 17:40:39 -0400126 String to = textField.getText().toString();
alision58356b72013-06-03 17:13:36 -0400127 if (to.contentEquals("")) {
Alexandre Lisionc2bd7b62013-09-30 10:45:00 -0400128 textField.setError(getString(R.string.dial_error_no_number_dialed));
alision58356b72013-06-03 17:13:36 -0400129 } else {
alision907bde72013-06-20 14:40:37 -0400130 mCallbacks.onCallDialed(to);
alision58356b72013-06-03 17:13:36 -0400131 }
alision9f7a6ec2013-05-24 16:26:26 -0400132 }
133 });
134
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400135 inflatedView.setOnTouchListener(this);
136
alision9f7a6ec2013-05-24 16:26:26 -0400137 ((Button) inflatedView.findViewById(R.id.alphabetic_keyboard)).setOnClickListener(new OnClickListener() {
138
139 @Override
140 public void onClick(View v) {
141 textField.setInputType(EditorInfo.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
alision11e8e162013-05-28 10:33:14 -0400142 InputMethodManager lManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
alision9f7a6ec2013-05-24 16:26:26 -0400143 lManager.showSoftInput(textField.getEdit_text(), 0);
144 }
145 });
146
147 ((Button) inflatedView.findViewById(R.id.numeric_keyboard)).setOnClickListener(new OnClickListener() {
148
149 @Override
150 public void onClick(View v) {
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400151 textField.setInputType(EditorInfo.TYPE_CLASS_PHONE);
alision11e8e162013-05-28 10:33:14 -0400152 InputMethodManager lManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
alision9f7a6ec2013-05-24 16:26:26 -0400153 lManager.showSoftInput(textField.getEdit_text(), 0);
154 }
155 });
alision85704182013-05-29 15:23:03 -0400156 return inflatedView;
157 }
alision58356b72013-06-03 17:13:36 -0400158
alision85704182013-05-29 15:23:03 -0400159 @Override
alision58356b72013-06-03 17:13:36 -0400160 public void onResume() {
alision85704182013-05-29 15:23:03 -0400161 super.onResume();
Alexandre Lision31f46fc2013-09-26 11:19:54 -0400162 textField.setTextWatcher(dtmfKeyListener);
alisiond295ec22013-05-17 10:12:13 -0400163 }
164
165 @Override
Alexandre Lision64dc8c02013-09-25 15:32:25 -0400166 public void onPause() {
167 super.onPause();
Alexandre Lision31f46fc2013-09-26 11:19:54 -0400168 textField.unsetTextWatcher();
Alexandre Lision64dc8c02013-09-25 15:32:25 -0400169 }
170
Alexandre Lision31f46fc2013-09-26 11:19:54 -0400171 TextWatcher dtmfKeyListener = new TextWatcher() {
Alexandre Lision64dc8c02013-09-25 15:32:25 -0400172
173 @Override
Alexandre Lision31f46fc2013-09-26 11:19:54 -0400174 public void afterTextChanged(Editable s) {
175 }
176
177 @Override
178 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
179 }
180
181 @Override
182 public void onTextChanged(CharSequence s, int start, int before, int count) {
183 if (count - before > 1 || count == 0)
184 return; // pasted a number (not implemented yet)
185
186 try {
187 String toSend = Character.toString(s.charAt(start));
Alexandre Lision31f46fc2013-09-26 11:19:54 -0400188 toSend.toUpperCase(Locale.getDefault());
189 mCallbacks.getService().playDtmf(toSend);
190 } catch (RemoteException e) {
191 e.printStackTrace();
Alexandre Lision64dc8c02013-09-25 15:32:25 -0400192 }
Alexandre Lision64dc8c02013-09-25 15:32:25 -0400193 }
194 };
195
196 @Override
alisiond295ec22013-05-17 10:12:13 -0400197 public void onStart() {
198 super.onStart();
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400199 }
alisiond295ec22013-05-17 10:12:13 -0400200
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400201 @Override
202 public boolean onTouch(View v, MotionEvent event) {
203 InputMethodManager lManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400204 textField.setError(null);
205 lManager.hideSoftInputFromWindow(textField.getWindowToken(), 0);
206 return false;
alisiond295ec22013-05-17 10:12:13 -0400207 }
208
alisiond295ec22013-05-17 10:12:13 -0400209}