blob: ad18e8bf6bf29aeb382215e9c19d39d754d5ea56 [file] [log] [blame]
Alexandre Savardcf15b942012-10-31 16:27:46 -04001/*
2 * Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
3 *
4 * Author: Alexandre Savard <alexandre.savard@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 */
31package com.savoirfairelinux.sflphone.utils;
32
33import android.content.Context;
34import android.os.RemoteException;
35import android.util.Log;
36import android.util.AttributeSet;
37import android.view.View;
38import android.widget.Button;
39
40import com.savoirfairelinux.sflphone.client.AccountSelectionDialog;
41import com.savoirfairelinux.sflphone.service.ISipService;
42
43import java.util.ArrayList;
44
Alexandre Savardbb6f1872012-11-01 17:25:55 -040045public class AccountSelectionButton extends Button implements AccountManagementUI
Alexandre Savardcf15b942012-10-31 16:27:46 -040046{
47 private static final String TAG = "AccountSelectionButton";
Alexandre Savardcf15b942012-10-31 16:27:46 -040048 private Context mContext;
Alexandre Savardbb6f1872012-11-01 17:25:55 -040049 private ArrayList<String> mList = new ArrayList<String>();
Alexandre Savardaf0f3c62012-11-01 18:35:56 -040050 private AccountList mAccountList = null;
Alexandre Savardcf15b942012-10-31 16:27:46 -040051
52 public AccountSelectionButton(Context context) {
53 super(context);
Alexandre Savardbb6f1872012-11-01 17:25:55 -040054 mContext = context;
55 init();
Alexandre Savardcf15b942012-10-31 16:27:46 -040056 }
57
58 public AccountSelectionButton(Context context, AttributeSet attrs) {
59 super(context, attrs);
Alexandre Savardbb6f1872012-11-01 17:25:55 -040060 mContext = context;
61 init();
Alexandre Savardcf15b942012-10-31 16:27:46 -040062 }
63
64 public AccountSelectionButton(Context context, AttributeSet attrs, int defStyle) {
65 super(context, attrs, defStyle);
Alexandre Savardbb6f1872012-11-01 17:25:55 -040066 mContext = context;
67 init();
Alexandre Savardcf15b942012-10-31 16:27:46 -040068 }
69
Alexandre Savardbb6f1872012-11-01 17:25:55 -040070 private void init() {
Alexandre Savard5ea84ae2012-10-31 16:41:44 -040071 final AccountSelectionButton b = this;
Alexandre Savardcf15b942012-10-31 16:27:46 -040072
73 setOnClickListener(new View.OnClickListener() {
74 public void onClick(View v) {
Alexandre Savardbb6f1872012-11-01 17:25:55 -040075 AccountSelectionDialog accountSelectionDialog = new AccountSelectionDialog(mContext, mList, b);
Alexandre Savarda76fa3d2012-11-01 14:01:57 -040076 accountSelectionDialog.show();
Alexandre Savardcf15b942012-10-31 16:27:46 -040077 }
78 });
79 }
Alexandre Savarda76fa3d2012-11-01 14:01:57 -040080
Alexandre Savardaf0f3c62012-11-01 18:35:56 -040081 public void setAccountList(AccountList accountList) {
82 mAccountList = accountList;
83 }
84
85 public void accountSelectedNotifyAccountList(String accountID) {
86 if(mAccountList != null) {
87 mAccountList.accountSelected(accountID, this);
88 }
89 }
90
91 public void setSelectedAccount(String accountID) {
92 setText(accountID);
93 }
94
Alexandre Savardbb6f1872012-11-01 17:25:55 -040095 public void accountAdded(ArrayList<String> newList) {
96 Log.i(TAG, "Account added");
97 mList = newList;
Alexandre Savarda76fa3d2012-11-01 14:01:57 -040098
Alexandre Savardbb6f1872012-11-01 17:25:55 -040099 if(newList.size() == 1) {
100 setText(newList.get(0));
Alexandre Savarda76fa3d2012-11-01 14:01:57 -0400101 }
Alexandre Savardbb6f1872012-11-01 17:25:55 -0400102 }
Alexandre Savarda76fa3d2012-11-01 14:01:57 -0400103
Alexandre Savardbb6f1872012-11-01 17:25:55 -0400104 public void accountRemoved() {
105
106 }
107
108 public void accountUpdated() {
109
Alexandre Savarda76fa3d2012-11-01 14:01:57 -0400110 }
Alexandre Savardcf15b942012-10-31 16:27:46 -0400111}