blob: 26ee3a87ae62e977755bb1e5b26d5e8b295c2b87 [file] [log] [blame]
// Signature format: 3.0
package androidx.ui.foundation {
public final class ClickableKt {
ctor public ClickableKt();
method public static void Clickable(kotlin.jvm.functions.Function0<kotlin.Unit>? onClick = null, boolean consumeDownOnStart = false, kotlin.jvm.functions.Function0<kotlin.Unit> children);
}
public final class ColoredRectKt {
ctor public ColoredRectKt();
method public static void ColoredRect(androidx.ui.core.vectorgraphics.Brush brush, androidx.ui.core.Dp? width = null, androidx.ui.core.Dp? height = null);
method public static void ColoredRect(androidx.ui.graphics.Color color, androidx.ui.core.Dp? width = null, androidx.ui.core.Dp? height = null);
}
public final class DeterminateProgressIndicatorKt {
ctor public DeterminateProgressIndicatorKt();
method public static void DeterminateProgressIndicator(@FloatRange(from=0.0, to=1.0) float progress, kotlin.jvm.functions.Function0<kotlin.Unit> children);
}
public final class SimpleImageKt {
ctor public SimpleImageKt();
method public static void SimpleImage(androidx.ui.painting.Image image, androidx.ui.graphics.Color? tint = null);
}
}
package androidx.ui.foundation.gestures {
public final class AnchorsFlingConfig implements androidx.ui.foundation.gestures.FlingConfig {
ctor public AnchorsFlingConfig(java.util.List<java.lang.Float> animationAnchors, kotlin.jvm.functions.Function2<? super java.lang.Float,? super java.lang.Boolean,kotlin.Unit>? onAnimationFinished, androidx.animation.AnimationBuilder<java.lang.Float> animationBuilder, androidx.animation.DecayAnimation decayAnimation);
method public java.util.List<java.lang.Float> component1();
method public kotlin.jvm.functions.Function2<java.lang.Float,java.lang.Boolean,kotlin.Unit>? component2();
method public androidx.animation.AnimationBuilder<java.lang.Float> component3();
method public androidx.animation.DecayAnimation component4();
method public androidx.ui.foundation.gestures.AnchorsFlingConfig copy(java.util.List<java.lang.Float> animationAnchors, kotlin.jvm.functions.Function2<? super java.lang.Float,? super java.lang.Boolean,kotlin.Unit>? onAnimationFinished, androidx.animation.AnimationBuilder<java.lang.Float> animationBuilder, androidx.animation.DecayAnimation decayAnimation);
method public void fling(androidx.animation.AnimatedFloat value, float startVelocity);
method public java.util.List<java.lang.Float> getAnimationAnchors();
method public androidx.animation.AnimationBuilder<java.lang.Float> getAnimationBuilder();
method public androidx.animation.DecayAnimation getDecayAnimation();
method public kotlin.jvm.functions.Function2<java.lang.Float,java.lang.Boolean,kotlin.Unit>? getOnAnimationFinished();
}
public final class AnimatedDraggableKt {
ctor public AnimatedDraggableKt();
method public static void AnimatedDraggable(androidx.ui.foundation.gestures.DragDirection dragDirection, float startValue, float minValue = Float.MIN_VALUE, float maxValue = Float.MAX_VALUE, androidx.ui.foundation.gestures.FlingConfig? flingConfig = null, kotlin.jvm.functions.Function1<? super androidx.animation.BaseAnimatedValue<java.lang.Float>,kotlin.Unit> children);
}
public final class DecayFlingConfig implements androidx.ui.foundation.gestures.FlingConfig {
ctor public DecayFlingConfig(androidx.animation.DecayAnimation decayAnimation, kotlin.jvm.functions.Function2<? super java.lang.Float,? super java.lang.Boolean,kotlin.Unit>? onFlingFinished, kotlin.jvm.functions.Function1<? super java.lang.Float,androidx.animation.TargetAnimation> adjustTarget);
method public androidx.animation.DecayAnimation component1();
method public kotlin.jvm.functions.Function2<java.lang.Float,java.lang.Boolean,kotlin.Unit>? component2();
method public kotlin.jvm.functions.Function1<java.lang.Float,androidx.animation.TargetAnimation> component3();
method public androidx.ui.foundation.gestures.DecayFlingConfig copy(androidx.animation.DecayAnimation decayAnimation, kotlin.jvm.functions.Function2<? super java.lang.Float,? super java.lang.Boolean,kotlin.Unit>? onFlingFinished, kotlin.jvm.functions.Function1<? super java.lang.Float,androidx.animation.TargetAnimation> adjustTarget);
method public void fling(androidx.animation.AnimatedFloat value, float startVelocity);
method public kotlin.jvm.functions.Function1<java.lang.Float,androidx.animation.TargetAnimation> getAdjustTarget();
method public androidx.animation.DecayAnimation getDecayAnimation();
method public kotlin.jvm.functions.Function2<java.lang.Float,java.lang.Boolean,kotlin.Unit>? getOnFlingFinished();
}
public final class DefaultFlingConfig implements androidx.ui.foundation.gestures.FlingConfig {
method public void fling(androidx.animation.AnimatedFloat value, float startVelocity);
field public static final androidx.ui.foundation.gestures.DefaultFlingConfig! INSTANCE;
}
public abstract sealed class DragDirection {
}
public static final class DragDirection.Horizontal extends androidx.ui.foundation.gestures.DragDirection {
field public static final androidx.ui.foundation.gestures.DragDirection.Horizontal! INSTANCE;
}
public static final class DragDirection.Vertical extends androidx.ui.foundation.gestures.DragDirection {
field public static final androidx.ui.foundation.gestures.DragDirection.Vertical! INSTANCE;
}
public interface FlingConfig {
method public void fling(androidx.animation.AnimatedFloat value, float startVelocity);
}
}
package androidx.ui.foundation.selection {
public final class MutuallyExclusiveSetItemKt {
ctor public MutuallyExclusiveSetItemKt();
method public static void MutuallyExclusiveSetItem(boolean selected, kotlin.jvm.functions.Function0<kotlin.Unit> onClick, kotlin.jvm.functions.Function0<kotlin.Unit> children);
}
public final class ToggleableKt {
ctor public ToggleableKt();
method public static void Toggleable(androidx.ui.foundation.selection.ToggleableState value = ToggleableState.Checked, kotlin.jvm.functions.Function0<kotlin.Unit>? onToggle = null, kotlin.jvm.functions.Function0<kotlin.Unit> children);
method public static androidx.ui.foundation.selection.ToggleableState ToggleableState(boolean checked);
}
public enum ToggleableState {
enum_constant public static final androidx.ui.foundation.selection.ToggleableState Checked;
enum_constant public static final androidx.ui.foundation.selection.ToggleableState Indeterminate;
enum_constant public static final androidx.ui.foundation.selection.ToggleableState Unchecked;
}
}
package androidx.ui.foundation.shape {
public final class DrawShapeKt {
ctor public DrawShapeKt();
method public static void DrawShape(androidx.ui.engine.geometry.Shape shape, androidx.ui.graphics.Color color);
method public static void DrawShape(androidx.ui.engine.geometry.Shape shape, androidx.ui.core.vectorgraphics.Brush brush);
}
public final class GenericShape implements androidx.ui.engine.geometry.Shape {
ctor public GenericShape(kotlin.jvm.functions.Function2<? super androidx.ui.painting.Path,? super androidx.ui.core.PxSize,kotlin.Unit> builder);
method public androidx.ui.foundation.shape.GenericShape copy(kotlin.jvm.functions.Function2<? super androidx.ui.painting.Path,? super androidx.ui.core.PxSize,kotlin.Unit> builder);
method public androidx.ui.engine.geometry.Outline createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Density density);
}
public final class RectangleShapeKt {
ctor public RectangleShapeKt();
method public static androidx.ui.engine.geometry.Shape getRectangleShape();
}
}
package androidx.ui.foundation.shape.border {
public final class Border {
ctor public Border(androidx.ui.core.vectorgraphics.Brush brush, androidx.ui.core.Dp width);
method public androidx.ui.core.vectorgraphics.Brush component1();
method public androidx.ui.core.Dp component2();
method public androidx.ui.foundation.shape.border.Border copy(androidx.ui.core.vectorgraphics.Brush brush, androidx.ui.core.Dp width);
method public androidx.ui.core.vectorgraphics.Brush getBrush();
method public androidx.ui.core.Dp getWidth();
}
public final class BorderKt {
ctor public BorderKt();
method public static androidx.ui.foundation.shape.border.Border Border(androidx.ui.graphics.Color color, androidx.ui.core.Dp width);
}
public final class DrawBorderKt {
ctor public DrawBorderKt();
method public static void DrawBorder(androidx.ui.engine.geometry.Shape shape, androidx.ui.foundation.shape.border.Border border);
}
}
package androidx.ui.foundation.shape.corner {
public abstract class CornerBasedShape implements androidx.ui.engine.geometry.Shape {
ctor public CornerBasedShape(androidx.ui.foundation.shape.corner.CornerSizes corners);
method public final androidx.ui.engine.geometry.Outline createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Density density);
method public abstract androidx.ui.engine.geometry.Outline createOutline(androidx.ui.foundation.shape.corner.PxCornerSizes corners, androidx.ui.core.PxSize size);
}
public interface CornerSize {
method public androidx.ui.core.Px toPx(androidx.ui.core.PxSize shapeSize, androidx.ui.core.Density density);
}
public final class CornerSizeKt {
ctor public CornerSizeKt();
method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(androidx.ui.core.Dp size);
method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(androidx.ui.core.Px size);
method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(@IntRange(from=0, to=50) int percent);
method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(@FloatRange(from=0.0, to=50.0) float percent);
method public static androidx.ui.foundation.shape.corner.CornerSize getZeroCornerSize();
}
public final class CornerSizes {
ctor public CornerSizes(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
method public androidx.ui.foundation.shape.corner.CornerSize component1();
method public androidx.ui.foundation.shape.corner.CornerSize component2();
method public androidx.ui.foundation.shape.corner.CornerSize component3();
method public androidx.ui.foundation.shape.corner.CornerSize component4();
method public androidx.ui.foundation.shape.corner.CornerSizes copy(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
method public androidx.ui.foundation.shape.corner.CornerSize getBottomLeft();
method public androidx.ui.foundation.shape.corner.CornerSize getBottomRight();
method public androidx.ui.foundation.shape.corner.CornerSize getTopLeft();
method public androidx.ui.foundation.shape.corner.CornerSize getTopRight();
}
public final class CornerSizesKt {
ctor public CornerSizesKt();
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(androidx.ui.foundation.shape.corner.CornerSize allCornersSize);
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(androidx.ui.core.Dp size);
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(androidx.ui.core.Px size);
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(int percent);
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(androidx.ui.core.Dp topLeft = 0.dp, androidx.ui.core.Dp topRight = 0.dp, androidx.ui.core.Dp bottomRight = 0.dp, androidx.ui.core.Dp bottomLeft = 0.dp);
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(androidx.ui.core.Px topLeft = 0.px, androidx.ui.core.Px topRight = 0.px, androidx.ui.core.Px bottomRight = 0.px, androidx.ui.core.Px bottomLeft = 0.px);
method public static androidx.ui.foundation.shape.corner.CornerSizes CornerSizes(@IntRange(from=0, to=50) int topLeftPercent = 0, @IntRange(from=0, to=50) int topRightPercent = 0, @IntRange(from=0, to=50) int bottomRightPercent = 0, @IntRange(from=0, to=50) int bottomLeftPercent = 0);
}
public final class PxCornerSizes {
ctor public PxCornerSizes(androidx.ui.core.Px topLeft, androidx.ui.core.Px topRight, androidx.ui.core.Px bottomRight, androidx.ui.core.Px bottomLeft);
method public androidx.ui.core.Px component1();
method public androidx.ui.core.Px component2();
method public androidx.ui.core.Px component3();
method public androidx.ui.core.Px component4();
method public androidx.ui.foundation.shape.corner.PxCornerSizes copy(androidx.ui.core.Px topLeft, androidx.ui.core.Px topRight, androidx.ui.core.Px bottomRight, androidx.ui.core.Px bottomLeft);
method public androidx.ui.core.Px getBottomLeft();
method public androidx.ui.core.Px getBottomRight();
method public androidx.ui.core.Px getTopLeft();
method public androidx.ui.core.Px getTopRight();
}
public final class PxCornerSizesKt {
ctor public PxCornerSizesKt();
method public static androidx.ui.foundation.shape.corner.PxCornerSizes PxCornerSizes(androidx.ui.foundation.shape.corner.CornerSizes corners, androidx.ui.core.PxSize size, androidx.ui.core.Density density);
method public static boolean isEmpty(androidx.ui.foundation.shape.corner.PxCornerSizes);
}
public final class RoundedCornerShape extends androidx.ui.foundation.shape.corner.CornerBasedShape {
ctor public RoundedCornerShape(androidx.ui.foundation.shape.corner.CornerSizes corners);
method public androidx.ui.foundation.shape.corner.CornerSizes component1();
method public androidx.ui.foundation.shape.corner.RoundedCornerShape copy(androidx.ui.foundation.shape.corner.CornerSizes corners);
method public androidx.ui.engine.geometry.Outline.Rounded createOutline(androidx.ui.foundation.shape.corner.PxCornerSizes corners, androidx.ui.core.PxSize size);
method public androidx.ui.foundation.shape.corner.CornerSizes getCorners();
}
public final class RoundedCornerShapeKt {
ctor public RoundedCornerShapeKt();
method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(androidx.ui.foundation.shape.corner.CornerSize corner);
method public static androidx.ui.foundation.shape.corner.RoundedCornerShape getCircleShape();
}
}