mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
154 lines
4.6 KiB
Kotlin
154 lines
4.6 KiB
Kotlin
/*
|
|
* Copyright 2019 Jeremy Jamet / Kunzisoft.
|
|
*
|
|
* This file is part of KeePassDX.
|
|
*
|
|
* KeePassDX 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.
|
|
*
|
|
* KeePassDX 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 KeePassDX. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
package com.kunzisoft.keepass.view
|
|
|
|
import android.annotation.SuppressLint
|
|
import android.content.Context
|
|
import android.graphics.PorterDuff
|
|
import android.graphics.PorterDuffColorFilter
|
|
import android.util.AttributeSet
|
|
import android.util.TypedValue
|
|
import android.view.Menu
|
|
import android.view.MenuInflater
|
|
import android.view.View
|
|
import androidx.annotation.ColorInt
|
|
import androidx.appcompat.view.ActionMode
|
|
import androidx.appcompat.view.SupportMenuInflater
|
|
import androidx.appcompat.widget.Toolbar
|
|
import androidx.core.content.ContextCompat
|
|
import com.kunzisoft.keepass.R
|
|
|
|
class ToolbarAction @JvmOverloads constructor(context: Context,
|
|
attrs: AttributeSet? = null,
|
|
defStyle: Int = R.attr.actionToolbarAppearance)
|
|
: Toolbar(context, attrs, defStyle) {
|
|
|
|
private var mActionModeCallback: ActionMode.Callback? = null
|
|
private val actionMode = NodeActionMode(this)
|
|
private var isOpen = false
|
|
|
|
init {
|
|
ContextCompat.getDrawable(context, R.drawable.ic_close_white_24dp)?.let { closeDrawable ->
|
|
val typedValue = TypedValue()
|
|
context.theme.resolveAttribute(R.attr.colorControlNormal, typedValue, true)
|
|
@ColorInt val colorControl = typedValue.data
|
|
closeDrawable.colorFilter = PorterDuffColorFilter(colorControl, PorterDuff.Mode.SRC_ATOP)
|
|
navigationIcon = closeDrawable
|
|
}
|
|
}
|
|
|
|
fun startSupportActionMode(actionModeCallback: ActionMode.Callback): ActionMode {
|
|
mActionModeCallback?.onDestroyActionMode(actionMode)
|
|
mActionModeCallback = actionModeCallback
|
|
mActionModeCallback?.onCreateActionMode(actionMode, menu)
|
|
mActionModeCallback?.onPrepareActionMode(actionMode, menu)
|
|
|
|
setOnMenuItemClickListener {
|
|
mActionModeCallback?.onActionItemClicked(actionMode, it) ?: false
|
|
}
|
|
setNavigationOnClickListener{
|
|
actionMode.finish()
|
|
}
|
|
|
|
open()
|
|
|
|
return actionMode
|
|
}
|
|
|
|
fun getSupportActionModeCallback(): ActionMode.Callback? {
|
|
return mActionModeCallback
|
|
}
|
|
|
|
fun removeSupportActionModeCallback() {
|
|
mActionModeCallback = null
|
|
}
|
|
|
|
fun invalidateMenu() {
|
|
open()
|
|
mActionModeCallback?.onPrepareActionMode(actionMode, menu)
|
|
}
|
|
|
|
fun open() {
|
|
if (!isOpen) {
|
|
isOpen = true
|
|
expand()
|
|
}
|
|
}
|
|
|
|
fun close() {
|
|
if (isOpen) {
|
|
isOpen = false
|
|
collapse()
|
|
}
|
|
mActionModeCallback?.onDestroyActionMode(actionMode)
|
|
}
|
|
|
|
private class NodeActionMode(var toolbarAction: ToolbarAction): ActionMode() {
|
|
|
|
override fun finish() {
|
|
menu.clear()
|
|
toolbarAction.close()
|
|
toolbarAction.removeSupportActionModeCallback()
|
|
}
|
|
|
|
override fun getMenu(): Menu {
|
|
return toolbarAction.menu
|
|
}
|
|
|
|
override fun getCustomView(): View {
|
|
return toolbarAction
|
|
}
|
|
|
|
override fun setCustomView(view: View?) {}
|
|
|
|
@SuppressLint("RestrictedApi")
|
|
override fun getMenuInflater(): MenuInflater {
|
|
return SupportMenuInflater(toolbarAction.context)
|
|
}
|
|
|
|
override fun invalidate() {
|
|
toolbarAction.invalidateMenu()
|
|
}
|
|
|
|
override fun getSubtitle(): CharSequence {
|
|
return toolbarAction.subtitle
|
|
}
|
|
|
|
override fun setTitle(title: CharSequence?) {
|
|
toolbarAction.title = title
|
|
}
|
|
|
|
override fun setTitle(resId: Int) {
|
|
toolbarAction.setTitle(resId)
|
|
}
|
|
|
|
override fun getTitle(): CharSequence {
|
|
return toolbarAction.title
|
|
}
|
|
|
|
override fun setSubtitle(subtitle: CharSequence?) {
|
|
toolbarAction.subtitle = subtitle
|
|
}
|
|
|
|
override fun setSubtitle(resId: Int) {
|
|
toolbarAction.setSubtitle(resId)
|
|
}
|
|
}
|
|
} |