blob: b6d3305139d53647ad655de0e3069f72dabdfcbd [file] [log] [blame]
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -05001/*
Alexandre Lisionc1024c02014-01-06 11:12:53 -05002 * Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -05003 *
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
32package org.sflphone.account;
33
34import org.sflphone.model.Account;
35
36import android.preference.CheckBoxPreference;
37import android.preference.Preference;
38import android.preference.Preference.OnPreferenceChangeListener;
39import android.preference.PreferenceScreen;
40import android.util.Log;
41
42public class SRTPManager {
43 PreferenceScreen mScreen;
44 private Account mAccount;
45
46 public void onCreate(PreferenceScreen preferenceScreen, Account acc) {
47 mScreen = preferenceScreen;
48 mAccount = acc;
49
50 setDetails();
51 }
52
53 private void setDetails() {
54 for (int i = 0; i < mScreen.getPreferenceCount(); ++i) {
55 ((CheckBoxPreference) mScreen.getPreference(i)).setChecked(mAccount.getSrtpDetails().getDetailBoolean(mScreen.getPreference(i).getKey()));
56 }
57 }
58
59 public void setSDESListener() {
60 mScreen.findPreference("SRTP.rtpFallback").setOnPreferenceChangeListener(toggleFallbackListener);
61 }
62
63 private OnPreferenceChangeListener toggleFallbackListener = new OnPreferenceChangeListener() {
64
65 @Override
66 public boolean onPreferenceChange(Preference preference, Object newValue) {
67 mAccount.getSrtpDetails().setDetailString(AccountDetailSrtp.CONFIG_SRTP_RTP_FALLBACK, Boolean.toString((Boolean) newValue));
68 mAccount.notifyObservers();
69 return true;
70 }
71 };
72
73 public void setZRTPListener() {
74 for (int i = 0; i < mScreen.getPreferenceCount(); ++i) {
75 mScreen.getPreference(i).setOnPreferenceChangeListener(zrtpListener);
76 }
77 }
78
79 private OnPreferenceChangeListener zrtpListener = new OnPreferenceChangeListener() {
80
81 @Override
82 public boolean onPreferenceChange(Preference preference, Object newValue) {
83 Log.i("SRTP", "Setting " + preference.getKey() + " to" + (Boolean) newValue);
84 mAccount.getSrtpDetails().setDetailString(preference.getKey(), Boolean.toString((Boolean) newValue));
85 mAccount.notifyObservers();
86 return true;
87 }
88 };
89
90}