2023-01-06 10:40:21 +03:00
|
|
|
package center.sciprog.maps.features
|
|
|
|
|
|
|
|
import androidx.compose.ui.graphics.Color
|
|
|
|
import center.sciprog.attributes.Attribute
|
|
|
|
import center.sciprog.attributes.SetAttribute
|
|
|
|
|
|
|
|
public object ZAttribute : Attribute<Float>
|
|
|
|
|
|
|
|
public object DraggableAttribute : Attribute<DragHandle<Any>>
|
|
|
|
|
|
|
|
public object DragListenerAttribute : SetAttribute<DragListener<Any>>
|
|
|
|
|
|
|
|
public object ClickListenerAttribute : SetAttribute<MouseListener<Any>>
|
|
|
|
|
|
|
|
public object HoverListenerAttribute : SetAttribute<MouseListener<Any>>
|
|
|
|
|
2023-01-06 12:36:02 +03:00
|
|
|
//public object TapListenerAttribute : SetAttribute<TapListener<Any>>
|
|
|
|
|
2023-01-06 10:40:21 +03:00
|
|
|
public object VisibleAttribute : Attribute<Boolean>
|
|
|
|
|
|
|
|
public object ColorAttribute : Attribute<Color>
|
|
|
|
|
|
|
|
public object ZoomRangeAttribute : Attribute<FloatRange>
|
|
|
|
|
|
|
|
public object AlphaAttribute : Attribute<Float>
|