/*
Copyright 2010-2012 Cesar Valiente Gordo
This file is part of QuiteSleep.
QuiteSleep 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.
QuiteSleep 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.
You should have received a copy of the GNU General Public License
along with QuiteSleep. If not, see <http://www.gnu.org/licenses/>.
*/
package es.cesar.quitesleep.ui.dialogs.fragments;
import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.os.Bundle;
import com.actionbarsherlock.app.SherlockDialogFragment;
import es.cesar.quitesleep.R;
import es.cesar.quitesleep.application.QuiteSleepApp;
import es.cesar.quitesleep.components.interfaces.ICallbacks;
import es.cesar.quitesleep.operations.DialogOperations;
import es.cesar.quitesleep.settings.ConfigAppValues;
/**
*
* @author Cesar Valiente Gordo
* @mail cesar.valiente@gmail.com
*
*/
@SuppressLint("ValidFragment")
public class SmsEmailFragmentDialog extends SherlockDialogFragment {
private final String CLASS_NAME = getClass().getName();
private String mTitleLabel, mMessageLabel;
private ConfigAppValues.DialogType mDialogType;
private ICallbacks.SaveData mListener;
/**
* Gets a new instance of {@link SmsEmailFragmentDialog}
*
* @param dialogType
* @return
*/
public static SmsEmailFragmentDialog newInstance(
final ConfigAppValues.DialogType dialogType,
final ICallbacks.SaveData listener) {
return new SmsEmailFragmentDialog(dialogType, listener);
}
/**
* Constructor
*
* @param dialogType
*/
public SmsEmailFragmentDialog(final ConfigAppValues.DialogType dialogType,
final ICallbacks.SaveData listener) {
this.mDialogType = dialogType;
this.mListener = listener;
}
@Override
public Dialog onCreateDialog(final Bundle savedInstanceState) {
setLabels();
AlertDialog.Builder builder = new AlertDialog.Builder(
getSherlockActivity());
builder.setIcon(R.drawable.dialog_warning)
.setTitle(mTitleLabel)
.setMessage(mMessageLabel)
.setPositiveButton(R.string.warningdialog_ok_label,
new OnClickListener() {
@Override
public void onClick(final DialogInterface dialog,
final int which) {
mListener.saveEmailSMSConfig();
if (mDialogType == ConfigAppValues.DialogType.SMS_DIALOG) {
DialogOperations.checkSmsService(
QuiteSleepApp.getContext(), true);
} else if (mDialogType == ConfigAppValues.DialogType.MAIL_DIALOG) {
DialogOperations.checkMailService(
QuiteSleepApp.getContext(), true);
}
}
});
return builder.create();
}
/**
* Sets the labels used in the dialog
*/
private void setLabels() {
if (mDialogType == ConfigAppValues.DialogType.MAIL_DIALOG) {
mTitleLabel = QuiteSleepApp.getContext().getString(
R.string.warningdialog_caution_label);
mMessageLabel = QuiteSleepApp.getContext().getString(
R.string.warningdialog_mail_label);
} else if (mDialogType == ConfigAppValues.DialogType.SMS_DIALOG) {
mTitleLabel = QuiteSleepApp.getContext().getString(
R.string.warningdialog_caution_label);
mMessageLabel = QuiteSleepApp.getContext().getString(
R.string.warningdialog_sms_label);
}
}
}