/* * Twidere - Twitter client for Android * * Copyright (C) 2012-2014 Mariotaku Lee * * 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package org.mariotaku.twidere.fragment import android.app.Dialog import android.content.DialogInterface import android.graphics.Color import android.os.Bundle import android.support.v4.content.ContextCompat import android.support.v7.app.AlertDialog import me.uucky.colorpicker.ColorPickerDialog import org.mariotaku.twidere.Constants.* import org.mariotaku.twidere.R import org.mariotaku.twidere.fragment.iface.IDialogFragmentCallback class ColorPickerDialogFragment : BaseDialogFragment(), DialogInterface.OnClickListener { private var mController: ColorPickerDialog.Controller? = null override fun onCancel(dialog: DialogInterface?) { super.onCancel(dialog) val a = activity if (a is Callback) { a.onCancelled() } } override fun onClick(dialog: DialogInterface, which: Int) { val a = activity if (a !is Callback || mController == null) return when (which) { DialogInterface.BUTTON_POSITIVE -> { val color = mController!!.color a.onColorSelected(color) } DialogInterface.BUTTON_NEUTRAL -> { a.onColorCleared() } } } override fun onCreateDialog(savedInstanceState: Bundle?): Dialog { val color: Int val args = arguments if (savedInstanceState != null) { color = savedInstanceState.getInt(EXTRA_COLOR, Color.WHITE) } else { color = args.getInt(EXTRA_COLOR, Color.WHITE) } val activity = activity val builder = AlertDialog.Builder(activity) builder.setView(me.uucky.colorpicker.R.layout.cp__dialog_color_picker) builder.setPositiveButton(android.R.string.ok, this) if (args.getBoolean(EXTRA_CLEAR_BUTTON, false)) { builder.setNeutralButton(R.string.clear, this) } builder.setNegativeButton(android.R.string.cancel, this) val dialog = builder.create() dialog.setOnShowListener { it as Dialog mController = ColorPickerDialog.Controller(it.context, it.window.decorView) val showAlphaSlider = args.getBoolean(EXTRA_ALPHA_SLIDER, true) for (presetColor in PRESET_COLORS) { mController!!.addColor(ContextCompat.getColor(context, presetColor)) } mController!!.setAlphaEnabled(showAlphaSlider) mController!!.setInitialColor(color) } return dialog } override fun onDismiss(dialog: DialogInterface?) { super.onDismiss(dialog) val a = activity if (a is Callback) { a.onDismissed() } } override fun onSaveInstanceState(outState: Bundle?) { if (mController != null) { outState!!.putInt(EXTRA_COLOR, mController!!.color) } super.onSaveInstanceState(outState) } interface Callback : IDialogFragmentCallback { fun onColorCleared() fun onColorSelected(color: Int) } }