commonMain.jetbrains.datalore.vis.svg.SvgRectElement.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vis-svg-portable Show documentation
Show all versions of vis-svg-portable Show documentation
The Let-Plot Kotlin API depends on this artifact.
/*
* Copyright (c) 2019. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
package jetbrains.datalore.vis.svg
import jetbrains.datalore.base.geometry.DoubleRectangle
import jetbrains.datalore.base.geometry.DoubleVector
import jetbrains.datalore.base.observable.property.Property
import jetbrains.datalore.base.observable.property.WritableProperty
import jetbrains.datalore.base.values.Color
import jetbrains.datalore.vis.svg.SvgShape.Companion.FILL
import jetbrains.datalore.vis.svg.SvgShape.Companion.FILL_OPACITY
import jetbrains.datalore.vis.svg.SvgShape.Companion.STROKE
import jetbrains.datalore.vis.svg.SvgShape.Companion.STROKE_OPACITY
import jetbrains.datalore.vis.svg.SvgShape.Companion.STROKE_WIDTH
import jetbrains.datalore.vis.svg.SvgTransformable.Companion.TRANSFORM
class SvgRectElement() : SvgGraphicsElement(), SvgTransformable,
SvgShape {
companion object {
val X: SvgAttributeSpec =
SvgAttributeSpec.createSpec("x")
val Y: SvgAttributeSpec =
SvgAttributeSpec.createSpec("y")
val WIDTH: SvgAttributeSpec =
SvgAttributeSpec.createSpec(SvgConstants.WIDTH)
val HEIGHT: SvgAttributeSpec =
SvgAttributeSpec.createSpec(SvgConstants.HEIGHT)
}
override val elementName = "rect"
override val bBox: DoubleRectangle
get() = container().getPeer()!!.getBBox(this)
constructor(x: Double, y: Double, width: Double, height: Double) : this() {
setAttribute(X, x)
setAttribute(Y, y)
setAttribute(HEIGHT, height)
setAttribute(WIDTH, width)
}
// constructor(rect: Rectangle) : this(rect.origin.x, rect.origin.y, rect.dimension.x, rect.dimension.y) {}
constructor(rect: DoubleRectangle) : this(rect.origin.x, rect.origin.y, rect.dimension.x, rect.dimension.y)
fun x(): Property {
return getAttribute(X)
}
fun y(): Property {
return getAttribute(Y)
}
fun height(): Property {
return getAttribute(HEIGHT)
}
fun width(): Property {
return getAttribute(WIDTH)
}
override fun transform(): Property {
return getAttribute(TRANSFORM)
}
override fun fill(): Property {
return getAttribute(FILL)
}
override fun fillColor(): WritableProperty {
return SvgUtils.colorAttributeTransform(fill(), fillOpacity())
}
override fun fillOpacity(): Property {
return getAttribute(FILL_OPACITY)
}
override fun stroke(): Property {
return getAttribute(STROKE)
}
override fun strokeColor(): WritableProperty {
return SvgUtils.colorAttributeTransform(stroke(), strokeOpacity())
}
override fun strokeOpacity(): Property {
return getAttribute(STROKE_OPACITY)
}
override fun strokeWidth(): Property {
return getAttribute(STROKE_WIDTH)
}
override fun pointToTransformedCoordinates(point: DoubleVector): DoubleVector {
return container().getPeer()!!.invertTransform(this, point)
}
override fun pointToAbsoluteCoordinates(point: DoubleVector): DoubleVector {
return container().getPeer()!!.applyTransform(this, point)
}
}