All Downloads are FREE. Search and download functionalities are using the official Maven repository.

divkit.dsl.RoundedRectangleShape.kt Maven / Gradle / Ivy

Go to download

DivKit is an open source Server-Driven UI (SDUI) framework. SDUI is a an emerging technique that leverage the server to build the user interfaces of their mobile app.

There is a newer version: 30.19.0
Show newest version
@file:Suppress(
    "unused",
    "UNUSED_PARAMETER",
)

package divkit.dsl

import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonValue
import divkit.dsl.annotation.*
import divkit.dsl.core.*
import divkit.dsl.scope.*
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * A rectangle with rounded corners.
 * 
 * Can be created using the method [roundedRectangleShape].
 * 
 * Required parameters: `type`.
 */
@Generated
class RoundedRectangleShape internal constructor(
    @JsonIgnore
    val properties: Properties,
) : Shape {
    @JsonAnyGetter
    internal fun getJsonProperties(): Map = properties.mergeWith(
        mapOf("type" to "rounded_rectangle")
    )

    operator fun plus(additive: Properties): RoundedRectangleShape = RoundedRectangleShape(
        Properties(
            backgroundColor = additive.backgroundColor ?: properties.backgroundColor,
            cornerRadius = additive.cornerRadius ?: properties.cornerRadius,
            itemHeight = additive.itemHeight ?: properties.itemHeight,
            itemWidth = additive.itemWidth ?: properties.itemWidth,
            stroke = additive.stroke ?: properties.stroke,
        )
    )

    class Properties internal constructor(
        /**
         * Fill color.
         */
        val backgroundColor: Property?,
        /**
         * Corner rounding radius.
         * Default value: `{"type":"fixed","value":5}`.
         */
        val cornerRadius: Property?,
        /**
         * Height.
         * Default value: `{"type":"fixed","value":10}`.
         */
        val itemHeight: Property?,
        /**
         * Width.
         * Default value: `{"type":"fixed","value":10}`.
         */
        val itemWidth: Property?,
        /**
         * Stroke style.
         */
        val stroke: Property?,
    ) {
        internal fun mergeWith(properties: Map): Map {
            val result = mutableMapOf()
            result.putAll(properties)
            result.tryPutProperty("background_color", backgroundColor)
            result.tryPutProperty("corner_radius", cornerRadius)
            result.tryPutProperty("item_height", itemHeight)
            result.tryPutProperty("item_width", itemWidth)
            result.tryPutProperty("stroke", stroke)
            return result
        }
    }
}

/**
 * @param backgroundColor Fill color.
 * @param cornerRadius Corner rounding radius.
 * @param itemHeight Height.
 * @param itemWidth Width.
 * @param stroke Stroke style.
 */
@Generated
fun DivScope.roundedRectangleShape(
    `use named arguments`: Guard = Guard.instance,
    backgroundColor: Color? = null,
    cornerRadius: FixedSize? = null,
    itemHeight: FixedSize? = null,
    itemWidth: FixedSize? = null,
    stroke: Stroke? = null,
): RoundedRectangleShape = RoundedRectangleShape(
    RoundedRectangleShape.Properties(
        backgroundColor = valueOrNull(backgroundColor),
        cornerRadius = valueOrNull(cornerRadius),
        itemHeight = valueOrNull(itemHeight),
        itemWidth = valueOrNull(itemWidth),
        stroke = valueOrNull(stroke),
    )
)

/**
 * @param backgroundColor Fill color.
 * @param cornerRadius Corner rounding radius.
 * @param itemHeight Height.
 * @param itemWidth Width.
 * @param stroke Stroke style.
 */
@Generated
fun DivScope.roundedRectangleShapeProps(
    `use named arguments`: Guard = Guard.instance,
    backgroundColor: Color? = null,
    cornerRadius: FixedSize? = null,
    itemHeight: FixedSize? = null,
    itemWidth: FixedSize? = null,
    stroke: Stroke? = null,
) = RoundedRectangleShape.Properties(
    backgroundColor = valueOrNull(backgroundColor),
    cornerRadius = valueOrNull(cornerRadius),
    itemHeight = valueOrNull(itemHeight),
    itemWidth = valueOrNull(itemWidth),
    stroke = valueOrNull(stroke),
)

/**
 * @param backgroundColor Fill color.
 * @param cornerRadius Corner rounding radius.
 * @param itemHeight Height.
 * @param itemWidth Width.
 * @param stroke Stroke style.
 */
@Generated
fun TemplateScope.roundedRectangleShapeRefs(
    `use named arguments`: Guard = Guard.instance,
    backgroundColor: ReferenceProperty? = null,
    cornerRadius: ReferenceProperty? = null,
    itemHeight: ReferenceProperty? = null,
    itemWidth: ReferenceProperty? = null,
    stroke: ReferenceProperty? = null,
) = RoundedRectangleShape.Properties(
    backgroundColor = backgroundColor,
    cornerRadius = cornerRadius,
    itemHeight = itemHeight,
    itemWidth = itemWidth,
    stroke = stroke,
)

/**
 * @param backgroundColor Fill color.
 * @param cornerRadius Corner rounding radius.
 * @param itemHeight Height.
 * @param itemWidth Width.
 * @param stroke Stroke style.
 */
@Generated
fun RoundedRectangleShape.override(
    `use named arguments`: Guard = Guard.instance,
    backgroundColor: Color? = null,
    cornerRadius: FixedSize? = null,
    itemHeight: FixedSize? = null,
    itemWidth: FixedSize? = null,
    stroke: Stroke? = null,
): RoundedRectangleShape = RoundedRectangleShape(
    RoundedRectangleShape.Properties(
        backgroundColor = valueOrNull(backgroundColor) ?: properties.backgroundColor,
        cornerRadius = valueOrNull(cornerRadius) ?: properties.cornerRadius,
        itemHeight = valueOrNull(itemHeight) ?: properties.itemHeight,
        itemWidth = valueOrNull(itemWidth) ?: properties.itemWidth,
        stroke = valueOrNull(stroke) ?: properties.stroke,
    )
)

/**
 * @param backgroundColor Fill color.
 * @param cornerRadius Corner rounding radius.
 * @param itemHeight Height.
 * @param itemWidth Width.
 * @param stroke Stroke style.
 */
@Generated
fun RoundedRectangleShape.defer(
    `use named arguments`: Guard = Guard.instance,
    backgroundColor: ReferenceProperty? = null,
    cornerRadius: ReferenceProperty? = null,
    itemHeight: ReferenceProperty? = null,
    itemWidth: ReferenceProperty? = null,
    stroke: ReferenceProperty? = null,
): RoundedRectangleShape = RoundedRectangleShape(
    RoundedRectangleShape.Properties(
        backgroundColor = backgroundColor ?: properties.backgroundColor,
        cornerRadius = cornerRadius ?: properties.cornerRadius,
        itemHeight = itemHeight ?: properties.itemHeight,
        itemWidth = itemWidth ?: properties.itemWidth,
        stroke = stroke ?: properties.stroke,
    )
)

/**
 * @param backgroundColor Fill color.
 */
@Generated
fun RoundedRectangleShape.evaluate(
    `use named arguments`: Guard = Guard.instance,
    backgroundColor: ExpressionProperty? = null,
): RoundedRectangleShape = RoundedRectangleShape(
    RoundedRectangleShape.Properties(
        backgroundColor = backgroundColor ?: properties.backgroundColor,
        cornerRadius = properties.cornerRadius,
        itemHeight = properties.itemHeight,
        itemWidth = properties.itemWidth,
        stroke = properties.stroke,
    )
)

@Generated
fun RoundedRectangleShape.asList() = listOf(this)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy