/* 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.widget.RadioGroup import com.keylesspalace.tusky.R import com.keylesspalace.tusky.entity.Status class ComposeOptionsView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) : RadioGroup(context, attrs) { var listener: ComposeOptionsListener? = null init { inflate(context, R.layout.view_compose_options, this) 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.directRadioButton -> Status.Visibility.DIRECT else -> Status.Visibility.PUBLIC } listener?.onVisibilityChanged(visibility) } } 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.DIRECT -> R.id.directRadioButton else -> R.id.directRadioButton } check(selectedButton) } } interface ComposeOptionsListener { fun onVisibilityChanged(visibility: Status.Visibility) }