ref: v3.1.1
app/src/main/java/xyz/apiote/bimba/czwek/repo/LineStub.kt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
package xyz.apiote.bimba.czwek.repo import android.content.Context import android.graphics.drawable.BitmapDrawable import android.graphics.drawable.Drawable import xyz.apiote.bimba.czwek.api.LineStubV1 import xyz.apiote.bimba.czwek.api.LineStubV2 data class LineStub(val name: String, val kind: LineType, val colour: Colour) : LineAbstract { constructor(l: LineStubV1) : this(l.name, LineType.of(l.kind), Colour(l.colour)) constructor(l: LineStubV2) : this(l.name, LineType.of(l.kind), Colour(l.colour)) fun icon(context: Context, scale: Float = 1f): Drawable { return BitmapDrawable(context.resources, super.icon(context, kind, colour, scale)) } } |