Package org.pushingpixels.torch

Types

Getter
Link copied to clipboard
class Getter<R>(property: SettableProperty<R>) : KProperty.Getter<R>
KSwingComponentTimeline
Link copied to clipboard
class KSwingComponentTimeline(component: Component) : KTimeline
KSwingRepaintTimeline
Link copied to clipboard
class KSwingRepaintTimeline(component: Component) : KTimeline
KSwingWindowTimeline
Link copied to clipboard
class KSwingWindowTimeline(window: Window) : KTimeline
KTimeline
Link copied to clipboard
open class KTimeline
PropertyFactory
Link copied to clipboard
abstract class PropertyFactory<T, R>
PropertyFactoryFrom
Link copied to clipboard
data class PropertyFactoryFrom<T, R>(property: PropertyFactory<T, R>, from: T)
PropertyFactoryFromTo
Link copied to clipboard
data class PropertyFactoryFromTo<T, R>(property: PropertyFactory<T, R>, from: T?, to: T)
PropertyFrom
Link copied to clipboard
data class PropertyFrom<R>(property: KProperty<R>, from: R)
PropertyFromTo
Link copied to clipboard
data class PropertyFromTo<R>(property: KProperty<R>, from: R?, to: R)
PropertyGoingThrough
Link copied to clipboard
data class PropertyGoingThrough<R>(property: KProperty<R>, keyFrames: KeyFrames<R>)
SettableProperty
Link copied to clipboard
interface SettableProperty<R> : KMutableProperty<R>
Setter
Link copied to clipboard
class Setter<R>(property: SettableProperty<R>) : KMutableProperty.Setter<R>
TorchComponent
Link copied to clipboard
object TorchComponent
TorchWindow
Link copied to clipboard
object TorchWindow

Functions

componentTimeline
Link copied to clipboard
fun Component.componentTimeline(init: KSwingComponentTimeline.() -> Unit): SwingComponentTimeline
from
Link copied to clipboard
infix fun <R> KProperty<R>.from(from: R): PropertyFrom<R>
infix fun <R> SettableProperty<R>.from(from: R): PropertyFrom<R>
fromCurrentTo
Link copied to clipboard
infix fun <R> KProperty<R>.fromCurrentTo(to: R): PropertyFromTo<R>
goingThrough
Link copied to clipboard
infix fun <R> KProperty<R>.goingThrough(keyFrames: KeyFrames<R>): PropertyGoingThrough<R>
repaintTimeline
Link copied to clipboard
fun Component.repaintTimeline(init: KSwingRepaintTimeline.() -> Unit? = null): SwingRepaintTimeline
timeline
Link copied to clipboard
fun timeline(init: KTimeline.() -> Unit): Timeline
fun Any.timeline(init: KTimeline.() -> Unit): Timeline
fun timeline(property: KProperty<Any>, to: Any): Timeline
fun timeline(property: KProperty<Any>, from: Any, to: Any): Timeline
windowTimeline
Link copied to clipboard
fun Window.windowTimeline(init: KSwingWindowTimeline.() -> Unit): SwingComponentTimeline