/* Copyright 2018 Conny Duck * * This file is a part of Tusky. * * 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. * * Tusky 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 Tusky; if not, * see . */ package com.keylesspalace.tusky.components.compose.view import android.content.Context import android.util.AttributeSet import android.view.LayoutInflater import android.view.View import android.widget.RadioGroup import com.keylesspalace.tusky.R import com.keylesspalace.tusky.databinding.ViewComposeOptionsBinding import com.keylesspalace.tusky.entity.Status class ComposeOptionsView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) : RadioGroup(context, attrs) { val binding = ViewComposeOptionsBinding.inflate(LayoutInflater.from(context), this) var listener: ComposeOptionsListener? = null init { setOnCheckedChangeListener { _, checkedId -> val visibility = when (checkedId) { R.id.publicRadioButton -> Status.Visibility.PUBLIC R.id.unlistedRadioButton -> Status.Visibility.UNLISTED R.id.privateRadioButton -> Status.Visibility.PRIVATE R.id.unleakableRadioButton -> Status.Visibility.UNLEAKABLE R.id.directRadioButton -> Status.Visibility.DIRECT else -> Status.Visibility.PUBLIC } listener?.onVisibilityChanged(visibility) } } fun allowUnleakable(allowed: Boolean = true) { binding.unleakableRadioButton.visibility = when (allowed) { true -> View.VISIBLE else -> View.GONE } } fun setStatusVisibility(visibility: Status.Visibility) { val selectedButton = when (visibility) { Status.Visibility.PUBLIC -> R.id.publicRadioButton Status.Visibility.UNLISTED -> R.id.unlistedRadioButton Status.Visibility.PRIVATE -> R.id.privateRadioButton Status.Visibility.UNLEAKABLE -> R.id.unleakableRadioButton Status.Visibility.DIRECT -> R.id.directRadioButton else -> R.id.directRadioButton } check(selectedButton) } } interface ComposeOptionsListener { fun onVisibilityChanged(visibility: Status.Visibility) }