Signal-Android/src/org/thoughtcrime/securesms/preferences/PassphraseTimeoutPreference.java

146 lines
4.3 KiB
Java
Raw Normal View History

2013-02-09 17:38:33 -08:00
/**
2011-12-20 10:20:44 -08:00
* Copyright (C) 2011 Whisper Systems
2013-02-09 17:38:33 -08:00
*
2011-12-20 10:20:44 -08:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2013-02-09 17:38:33 -08:00
*
2011-12-20 10:20:44 -08:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.thoughtcrime.securesms.preferences;
import android.content.Context;
import android.content.DialogInterface;
2013-02-09 17:43:31 -08:00
import android.graphics.Color;
import android.os.Build;
2011-12-20 10:20:44 -08:00
import android.preference.DialogPreference;
import android.util.AttributeSet;
import android.view.View;
import android.widget.AdapterView;
import android.widget.SeekBar;
import android.widget.Spinner;
import android.widget.TextView;
2013-02-09 17:38:33 -08:00
import org.thoughtcrime.securesms.ApplicationPreferencesActivity;
import org.thoughtcrime.securesms.R;
import org.thoughtcrime.securesms.util.TextSecurePreferences;
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
/**
* Dialog preference for encryption passphrase timeout.
2013-02-09 17:38:33 -08:00
*
2011-12-20 10:20:44 -08:00
* @author Moxie Marlinspike
*/
public class PassphraseTimeoutPreference extends DialogPreference {
private Spinner scaleSpinner;
private SeekBar seekBar;
private TextView timeoutText;
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
public PassphraseTimeoutPreference(Context context, AttributeSet attrs) {
super(context, attrs);
this.setDialogLayoutResource(R.layout.passphrase_timeout_dialog);
2013-02-09 17:38:33 -08:00
this.setPositiveButtonText(android.R.string.ok);
this.setNegativeButtonText(android.R.string.cancel);
2011-12-20 10:20:44 -08:00
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
@Override
protected View onCreateDialogView() {
View dialog = super.onCreateDialogView();
this.scaleSpinner = (Spinner)dialog.findViewById(R.id.scale);
this.seekBar = (SeekBar)dialog.findViewById(R.id.seekbar);
this.timeoutText = (TextView)dialog.findViewById(R.id.timeout_text);
2013-02-09 17:43:31 -08:00
// Can't figure out how to style a DialogPreference.
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
this.timeoutText.setTextColor(Color.parseColor("#cccccc"));
}
2011-12-20 10:20:44 -08:00
initializeDefaults();
initializeListeners();
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
return dialog;
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
@Override
public void onClick(DialogInterface dialog, int which) {
if (which == DialogInterface.BUTTON_POSITIVE) {
int interval;
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
if (scaleSpinner.getSelectedItemPosition() == 0) {
interval = Math.max(seekBar.getProgress(), 1);
} else {
interval = Math.max(seekBar.getProgress(), 1) * 60;
}
2013-02-09 17:38:33 -08:00
TextSecurePreferences.setPassphraseTimeoutInterval(getContext(), interval);
2011-12-20 10:20:44 -08:00
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
super.onClick(dialog, which);
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
private void initializeDefaults() {
int timeout = TextSecurePreferences.getPassphraseTimeoutInterval(getContext());
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
if (timeout > 60) {
scaleSpinner.setSelection(1);
seekBar.setMax(24);
seekBar.setProgress(timeout / 60);
timeoutText.setText((timeout / 60) + "");
} else {
scaleSpinner.setSelection(0);
seekBar.setMax(60);
seekBar.setProgress(timeout);
timeoutText.setText(timeout + "");
}
}
private void initializeListeners() {
this.seekBar.setOnSeekBarChangeListener(new SeekbarChangedListener());
2013-02-09 17:38:33 -08:00
this.scaleSpinner.setOnItemSelectedListener(new ScaleSelectedListener());
2011-12-20 10:20:44 -08:00
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
private class ScaleSelectedListener implements AdapterView.OnItemSelectedListener {
2013-02-09 17:38:33 -08:00
@Override
2011-12-20 10:20:44 -08:00
public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2, long selected) {
if (selected == 0) {
seekBar.setMax(60);
} else {
seekBar.setMax(24);
}
}
2013-02-09 17:38:33 -08:00
@Override
2011-12-20 10:20:44 -08:00
public void onNothingSelected(AdapterView<?> arg0) {
2013-02-09 17:38:33 -08:00
}
2011-12-20 10:20:44 -08:00
}
private class SeekbarChangedListener implements SeekBar.OnSeekBarChangeListener {
2013-02-09 17:38:33 -08:00
@Override
2011-12-20 10:20:44 -08:00
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
2013-02-09 17:38:33 -08:00
if (progress < 1)
2011-12-20 10:20:44 -08:00
progress = 1;
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
timeoutText.setText(progress +"");
}
2013-02-09 17:38:33 -08:00
@Override
2011-12-20 10:20:44 -08:00
public void onStartTrackingTouch(SeekBar seekBar) {
}
2013-02-09 17:38:33 -08:00
@Override
2011-12-20 10:20:44 -08:00
public void onStopTrackingTouch(SeekBar seekBar) {
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
}
2013-02-09 17:38:33 -08:00
2011-12-20 10:20:44 -08:00
}