blob: 2e3b030bd0bf6c8b7a76d802ce69eea8152aaf74 [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
34import android.app.Activity;
alisiond295ec22013-05-17 10:12:13 -040035import android.app.Fragment;
alision9f7a6ec2013-05-24 16:26:26 -040036import android.content.Context;
37import android.os.Bundle;
alisiond295ec22013-05-17 10:12:13 -040038import android.view.LayoutInflater;
Alexandre Lision6e8931e2013-09-19 16:49:34 -040039import android.view.MotionEvent;
alisiond295ec22013-05-17 10:12:13 -040040import android.view.View;
alision9f7a6ec2013-05-24 16:26:26 -040041import android.view.View.OnClickListener;
Alexandre Lision6e8931e2013-09-19 16:49:34 -040042import android.view.View.OnTouchListener;
alisiond295ec22013-05-17 10:12:13 -040043import android.view.ViewGroup;
alision9f7a6ec2013-05-24 16:26:26 -040044import android.view.inputmethod.EditorInfo;
45import android.view.inputmethod.InputMethodManager;
46import android.widget.Button;
47import android.widget.ImageButton;
alisiond295ec22013-05-17 10:12:13 -040048
49import com.savoirfairelinux.sflphone.R;
alisiond295ec22013-05-17 10:12:13 -040050import com.savoirfairelinux.sflphone.service.ISipService;
alision9f7a6ec2013-05-24 16:26:26 -040051import com.savoirfairelinux.sflphone.views.ClearableEditText;
alisiond295ec22013-05-17 10:12:13 -040052
Alexandre Lision6e8931e2013-09-19 16:49:34 -040053public class DialingFragment extends Fragment implements OnTouchListener {
alision9f7a6ec2013-05-24 16:26:26 -040054
alision1005ba12013-06-19 13:52:44 -040055 private static final String TAG = DialingFragment.class.getSimpleName();
alision907bde72013-06-20 14:40:37 -040056
alision9f7a6ec2013-05-24 16:26:26 -040057 ClearableEditText textField;
alision9f7a6ec2013-05-24 16:26:26 -040058 private Callbacks mCallbacks = sDummyCallbacks;
59
60 /**
61 * A dummy implementation of the {@link Callbacks} interface that does nothing. Used only when this fragment is not attached to an activity.
62 */
63 private static Callbacks sDummyCallbacks = new Callbacks() {
64 @Override
alision907bde72013-06-20 14:40:37 -040065 public void onCallDialed(String to) {
alision9f7a6ec2013-05-24 16:26:26 -040066 }
67
68 @Override
69 public ISipService getService() {
70 // TODO Auto-generated method stub
71 return null;
72 }
73 };
74
75 /**
76 * The Activity calling this fragment has to implement this interface
77 *
78 */
79 public interface Callbacks {
alision907bde72013-06-20 14:40:37 -040080 void onCallDialed(String account);
alision9f7a6ec2013-05-24 16:26:26 -040081
82 public ISipService getService();
83
84 }
alisiond295ec22013-05-17 10:12:13 -040085
86 @Override
87 public void onAttach(Activity activity) {
88 super.onAttach(activity);
alision9f7a6ec2013-05-24 16:26:26 -040089
90 if (!(activity instanceof Callbacks)) {
91 throw new IllegalStateException("Activity must implement fragment's callbacks.");
92 }
93
94 mCallbacks = (Callbacks) activity;
alision58356b72013-06-03 17:13:36 -040095
alisiond295ec22013-05-17 10:12:13 -040096 }
97
98 @Override
99 public void onDetach() {
100 super.onDetach();
alision58356b72013-06-03 17:13:36 -0400101 mCallbacks = sDummyCallbacks;
alisiond295ec22013-05-17 10:12:13 -0400102 }
103
104 @Override
105 public void onCreate(Bundle savedInstanceState) {
106 super.onCreate(savedInstanceState);
alisiond295ec22013-05-17 10:12:13 -0400107 }
108
109 @Override
110 public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
111 View inflatedView = inflater.inflate(R.layout.frag_dialing, parent, false);
alision58356b72013-06-03 17:13:36 -0400112
alision9f7a6ec2013-05-24 16:26:26 -0400113 textField = (ClearableEditText) inflatedView.findViewById(R.id.textField);
114 ((ImageButton) inflatedView.findViewById(R.id.buttonCall)).setOnClickListener(new OnClickListener() {
115 @Override
116 public void onClick(View v) {
alision11e8e162013-05-28 10:33:14 -0400117
alision84813a12013-05-27 17:40:39 -0400118 String to = textField.getText().toString();
alision58356b72013-06-03 17:13:36 -0400119 if (to.contentEquals("")) {
Alexandre Lisionc51ccb12013-09-11 16:00:30 -0400120 textField.setError(getString(R.string.error_no_number_dialed));
alision58356b72013-06-03 17:13:36 -0400121 } else {
alision907bde72013-06-20 14:40:37 -0400122 mCallbacks.onCallDialed(to);
alision58356b72013-06-03 17:13:36 -0400123 }
alision9f7a6ec2013-05-24 16:26:26 -0400124 }
125 });
126
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400127 inflatedView.setOnTouchListener(this);
128
alision9f7a6ec2013-05-24 16:26:26 -0400129 ((Button) inflatedView.findViewById(R.id.alphabetic_keyboard)).setOnClickListener(new OnClickListener() {
130
131 @Override
132 public void onClick(View v) {
133 textField.setInputType(EditorInfo.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
alision11e8e162013-05-28 10:33:14 -0400134 InputMethodManager lManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
alision9f7a6ec2013-05-24 16:26:26 -0400135 lManager.showSoftInput(textField.getEdit_text(), 0);
136 }
137 });
138
139 ((Button) inflatedView.findViewById(R.id.numeric_keyboard)).setOnClickListener(new OnClickListener() {
140
141 @Override
142 public void onClick(View v) {
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400143 textField.setInputType(EditorInfo.TYPE_CLASS_PHONE);
alision11e8e162013-05-28 10:33:14 -0400144 InputMethodManager lManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
alision9f7a6ec2013-05-24 16:26:26 -0400145 lManager.showSoftInput(textField.getEdit_text(), 0);
146 }
147 });
alision85704182013-05-29 15:23:03 -0400148 return inflatedView;
149 }
alision58356b72013-06-03 17:13:36 -0400150
alision85704182013-05-29 15:23:03 -0400151 @Override
alision58356b72013-06-03 17:13:36 -0400152 public void onResume() {
alision85704182013-05-29 15:23:03 -0400153 super.onResume();
alisiond295ec22013-05-17 10:12:13 -0400154 }
155
156 @Override
157 public void onStart() {
158 super.onStart();
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400159 }
alisiond295ec22013-05-17 10:12:13 -0400160
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400161 @Override
162 public boolean onTouch(View v, MotionEvent event) {
163 InputMethodManager lManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
Alexandre Lision6e8931e2013-09-19 16:49:34 -0400164 textField.setError(null);
165 lManager.hideSoftInputFromWindow(textField.getWindowToken(), 0);
166 return false;
alisiond295ec22013-05-17 10:12:13 -0400167 }
168
alisiond295ec22013-05-17 10:12:13 -0400169}