@ -30,7 +30,6 @@ class InputBarButton : RelativeLayout {
@DrawableRes private var iconID = 0
private var longPressCallback : Runnable ? = null
private var onDownTimestamp = 0L
var snIsEnabled = true
var onPress : ( ( ) -> Unit ) ? = null
var onMove : ( ( MotionEvent ) -> Unit ) ? = null
var onCancel : ( ( MotionEvent ) -> Unit ) ? = null
@ -44,25 +43,31 @@ class InputBarButton : RelativeLayout {
private val expandedImageViewPosition by lazy { PointF ( 0.0f , 0.0f ) }
private val collapsedImageViewPosition by lazy { PointF ( ( expandedSize - collapsedSize ) / 2 , ( expandedSize - collapsedSize ) / 2 ) }
private val colorID by lazy {
if ( hasOpaqueBackground ) {
R . attr . input _bar _button _background _opaque
} else if ( isSendButton ) {
R . attr . colorAccent
} else {
R . attr . input _bar _button _background
}
private val backgroundColourId by lazy {
if ( hasOpaqueBackground ) {
R . attr . input _bar _button _background _opaque
} else if ( isSendButton ) {
R . attr . colorAccent
} else {
R . attr . input _bar _button _background
}
}
val expandedSize by lazy { resources . getDimension ( R . dimen . input _bar _button _expanded _size ) }
val collapsedSize by lazy { resources . getDimension ( R . dimen . input _bar _button _collapsed _size ) }
override fun setEnabled ( enabled : Boolean ) {
super . setEnabled ( enabled )
setIconTintColour ( )
}
private val imageViewContainer by lazy {
val result = InputBarButtonImageViewContainer ( context )
val size = collapsedSize . toInt ( )
result . layoutParams = LayoutParams ( size , size )
result . setBackgroundResource ( R . drawable . input _bar _button _background )
result . mainColor = context . getColorFromAttr ( colorID )
result . mainColor = context . getColorFromAttr ( backgroundColourId )
if ( hasOpaqueBackground ) {
result . strokeColor = context . getColorFromAttr ( R . attr . input _bar _button _background _opaque _border )
}
@ -75,9 +80,6 @@ class InputBarButton : RelativeLayout {
result . layoutParams = LayoutParams ( size , size )
result . scaleType = ImageView . ScaleType . CENTER _INSIDE
result . setImageResource ( iconID )
result . imageTintList = if ( isSendButton )
ColorStateList . valueOf ( context . getColorFromAttr ( R . attr . message _sent _text _color ) )
else ColorStateList . valueOf ( context . getColorFromAttr ( R . attr . input _bar _button _text _color ) )
result
}
@ -85,8 +87,11 @@ class InputBarButton : RelativeLayout {
constructor ( context : Context , attrs : AttributeSet ) : super ( context , attrs ) { throw IllegalAccessException ( " Use InputBarButton(context:iconID:) instead. " ) }
constructor ( context : Context , attrs : AttributeSet , defStyleAttr : Int ) : super ( context , attrs , defStyleAttr ) { throw IllegalAccessException ( " Use InputBarButton(context:iconID:) instead. " ) }
constructor ( context : Context , @DrawableRes iconID : Int , isSendButton : Boolean = false ,
hasOpaqueBackground : Boolean = false ) : super ( context ) {
constructor ( context : Context ,
@DrawableRes iconID : Int ,
isSendButton : Boolean = false ,
hasOpaqueBackground : Boolean = false
) : super ( context ) {
this . isSendButton = isSendButton
this . iconID = iconID
this . hasOpaqueBackground = hasOpaqueBackground
@ -102,23 +107,23 @@ class InputBarButton : RelativeLayout {
imageView . layoutParams = imageViewLayoutParams
gravity = Gravity . TOP or Gravity . LEFT // Intentionally not Gravity.START
isHapticFeedbackEnabled = true
this . isEnabled = isSendButton // Only enable the send button by default
}
fun getIconID ( ) = iconID
fun expand ( ) {
val fromColor = context . getColorFromAttr ( colorID )
val toColor = context . getAccentColor ( )
GlowViewUtilities . animateColorChange ( imageViewContainer , fromColor, t oColor)
val backgroundFromColor = context . getColorFromAttr ( backgroundColourId )
val backgroundToColor = context . getAccentColor ( )
GlowViewUtilities . animateColorChange ( imageViewContainer , backgroundFromColor, backgroundT oColor)
imageViewContainer . animateSizeChange ( R . dimen . input _bar _button _collapsed _size , R . dimen . input _bar _button _expanded _size , animationDuration )
animateImageViewContainerPositionChange ( collapsedImageViewPosition , expandedImageViewPosition )
}
fun collapse ( ) {
val fromColor = context . getAccentColor ( )
val toColor = context . getColorFromAttr ( colorID )
GlowViewUtilities . animateColorChange ( imageViewContainer , fromColor , toColor )
val backgroundFromColor = context . getAccentColor ( )
val backgroundToColor = context . getColorFromAttr ( backgroundColourId )
GlowViewUtilities . animateColorChange ( imageViewContainer , backgroundFromColor , backgroundToColor )
imageViewContainer . animateSizeChange ( R . dimen . input _bar _button _expanded _size , R . dimen . input _bar _button _collapsed _size , animationDuration )
animateImageViewContainerPositionChange ( expandedImageViewPosition , collapsedImageViewPosition )
}
@ -134,8 +139,27 @@ class InputBarButton : RelativeLayout {
animation . start ( )
}
// Tint the button icon the appropriate colour for the user's theme
private fun setIconTintColour ( ) {
if ( isEnabled ) {
imageView . imageTintList = if ( isSendButton ) {
ColorStateList . valueOf ( context . getColorFromAttr ( R . attr . message _sent _text _color ) )
} else {
ColorStateList . valueOf ( context . getColorFromAttr ( R . attr . input _bar _button _text _color ) )
}
} else {
// Use the greyed out colour from the user theme
imageView . imageTintList = ColorStateList . valueOf ( context . getColorFromAttr ( R . attr . disabled ) )
}
}
override fun onTouchEvent ( event : MotionEvent ) : Boolean {
if ( ! snIsEnabled ) { return false }
// Ensure disabled buttons don't respond to events.
// Caution: We MUST return false here to propagate the event through to any other
// clickable elements such as avatar icons or media elements we might want to click on.
if ( ! this . isEnabled ) return false
when ( event . action ) {
MotionEvent . ACTION _DOWN -> onDown ( event )
MotionEvent . ACTION _MOVE -> onMove ( event )