2018-04-13 22:37:21 +02:00
|
|
|
/* 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 <http://www.gnu.org/licenses>. */
|
|
|
|
|
|
|
|
package com.keylesspalace.tusky.view
|
|
|
|
|
|
|
|
import android.content.Context
|
|
|
|
import android.graphics.Color
|
|
|
|
import android.util.AttributeSet
|
2018-12-17 15:25:35 +01:00
|
|
|
import com.google.android.material.button.MaterialButton
|
2018-04-13 22:37:21 +02:00
|
|
|
import com.keylesspalace.tusky.R
|
|
|
|
import com.keylesspalace.tusky.entity.Status
|
|
|
|
import com.mikepenz.google_material_typeface_library.GoogleMaterial
|
|
|
|
import com.mikepenz.iconics.IconicsDrawable
|
|
|
|
|
|
|
|
class TootButton
|
|
|
|
@JvmOverloads constructor(
|
|
|
|
context: Context,
|
|
|
|
attrs: AttributeSet? = null,
|
|
|
|
defStyleAttr: Int = 0
|
2018-12-17 15:25:35 +01:00
|
|
|
) : MaterialButton(context, attrs, defStyleAttr) {
|
2018-04-13 22:37:21 +02:00
|
|
|
|
|
|
|
private val smallStyle: Boolean = context.resources.getBoolean(R.bool.show_small_toot_button)
|
|
|
|
|
|
|
|
init {
|
|
|
|
if(smallStyle) {
|
2018-12-17 15:25:35 +01:00
|
|
|
setIconResource(R.drawable.ic_send_24dp)
|
2018-04-13 22:37:21 +02:00
|
|
|
} else {
|
|
|
|
setText(R.string.action_send)
|
2018-12-17 15:25:35 +01:00
|
|
|
iconGravity = ICON_GRAVITY_TEXT_START
|
2018-04-13 22:37:21 +02:00
|
|
|
}
|
2018-12-17 15:25:35 +01:00
|
|
|
val padding = resources.getDimensionPixelSize(R.dimen.toot_button_horizontal_padding)
|
|
|
|
setPadding(padding, 0, padding, 0)
|
2018-04-13 22:37:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fun setStatusVisibility(visibility: Status.Visibility) {
|
|
|
|
if(!smallStyle) {
|
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
icon = when (visibility) {
|
2018-04-13 22:37:21 +02:00
|
|
|
Status.Visibility.PUBLIC -> {
|
|
|
|
setText(R.string.action_send_public)
|
2018-12-17 15:25:35 +01:00
|
|
|
null
|
2018-04-13 22:37:21 +02:00
|
|
|
}
|
|
|
|
Status.Visibility.UNLISTED -> {
|
|
|
|
setText(R.string.action_send)
|
2018-12-17 15:25:35 +01:00
|
|
|
null
|
2018-04-13 22:37:21 +02:00
|
|
|
}
|
|
|
|
Status.Visibility.PRIVATE,
|
|
|
|
Status.Visibility.DIRECT -> {
|
2018-12-17 15:25:35 +01:00
|
|
|
setText(R.string.action_send)
|
|
|
|
IconicsDrawable(context, GoogleMaterial.Icon.gmd_lock).sizeDp(18).color(Color.WHITE)
|
2018-04-13 22:37:21 +02:00
|
|
|
}
|
|
|
|
else -> {
|
2018-12-17 15:25:35 +01:00
|
|
|
null
|
2018-04-13 22:37:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|