commonMain.com.github.panpf.zoomimage.compose.ZoomState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zoomimage-compose Show documentation
Show all versions of zoomimage-compose Show documentation
Android Zoom Image Component
/*
* Copyright (C) 2023 panpf
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.panpf.zoomimage.compose
import androidx.compose.runtime.Composable
import androidx.compose.runtime.Stable
import androidx.compose.runtime.remember
import com.github.panpf.zoomimage.compose.subsampling.SubsamplingState
import com.github.panpf.zoomimage.compose.subsampling.rememberSubsamplingState
import com.github.panpf.zoomimage.compose.zoom.ZoomableState
import com.github.panpf.zoomimage.compose.zoom.rememberZoomableState
import com.github.panpf.zoomimage.util.Logger
/**
* Creates and remember a [ZoomState]
*/
@Composable
fun rememberZoomState(logger: Logger = rememberZoomImageLogger()): ZoomState {
val zoomableState = rememberZoomableState(logger)
val subsamplingState = rememberSubsamplingState(logger, zoomableState)
return remember(logger, zoomableState, subsamplingState) {
ZoomState(logger, zoomableState, subsamplingState)
}
}
/**
* Used to control the state of scaling, translation, rotation, and subsampling
*/
@Stable
open class ZoomState(
/**
* Used to print log
*/
val logger: Logger,
/**
* Used to control the state of scaling, translation, and rotation
*/
val zoomable: ZoomableState,
/**
* Used to control the state of subsampling
*/
val subsampling: SubsamplingState,
) {
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as ZoomState
if (logger != other.logger) return false
if (zoomable != other.zoomable) return false
if (subsampling != other.subsampling) return false
return true
}
override fun hashCode(): Int {
var result = logger.hashCode()
result = 31 * result + zoomable.hashCode()
result = 31 * result + subsampling.hashCode()
return result
}
override fun toString(): String {
return "ZoomState(logger=${logger}, zoomable=${zoomable}, subsampling=${subsampling})"
}
}