Package-level declarations

Types

Link copied to clipboard
class BackedPreferenceDelegate<T>(getEffectiveValue: (T?) -> T, getIsEffective: () -> Boolean, updatePreferences: (T?) -> Unit, val supportedValues: List<T>) : EnumPreference<T>
Link copied to clipboard
data class ReflowableWebDefaults(val backgroundColor: Color? = null, val columnCount: Int? = null, val fontSize: Double? = null, val fontWeight: Double? = null, val hyphens: Boolean? = null, val imageFilter: ImageFilter? = null, val language: Language? = null, val letterSpacing: Double? = null, val ligatures: Boolean? = null, val lineHeight: Double? = null, val linkColor: Color? = null, val maximalLineLength: Double? = null, val minimalLineLength: Double? = null, val optimalLineLength: Double? = null, val overridePublisherColors: Boolean? = null, val pageMargins: Double? = null, val paragraphIndent: Double? = null, val paragraphSpacing: Double? = null, val readingProgression: ReadingProgression? = null, val scroll: Boolean? = null, val textAlign: TextAlign? = null, val textColor: Color? = null, val textNormalization: Boolean? = null, val visitedLinkColor: Color? = null, val wordSpacing: Double? = null)

Default values for the Reflowable Web navigator.

Link copied to clipboard
@Serializable
data class ReflowableWebPreferences(val backgroundColor: Color? = null, val columnCount: Int? = null, val fontFamily: FontFamily? = null, val fontSize: Double? = null, val fontWeight: Double? = null, val hyphens: Boolean? = null, val imageFilter: ImageFilter? = null, val language: Language? = null, val letterSpacing: Double? = null, val ligatures: Boolean? = null, val lineHeight: Double? = null, val linkColor: Color? = null, val maximalLineLength: Double? = null, val minimalLineLength: Double? = null, val minMargins: Double? = null, val optimalLineLength: Double? = null, val overridePublisherColors: Boolean? = null, val paragraphIndent: Double? = null, val paragraphSpacing: Double? = null, val readingProgression: ReadingProgression? = null, val scroll: Boolean? = null, val textAlign: TextAlign? = null, val textColor: Color? = null, val textNormalization: Boolean? = null, val verticalText: Boolean? = null, val visitedColor: Color? = null, val wordSpacing: Double? = null) : Preferences<ReflowableWebPreferences>

Preferences for the Reflowable Web navigator.

Link copied to clipboard
data class ReflowableWebSettings(val backgroundColor: Color, val columnCount: Int?, val fontFamily: FontFamily?, val fontSize: Double, val fontWeight: Double?, val hyphens: Boolean?, val imageFilter: ImageFilter?, val language: Language?, val letterSpacing: Double?, val ligatures: Boolean?, val lineHeight: Double?, val linkColor: Color, val maximalLineLength: Double?, val minimalLineLength: Double?, val minMargins: Double, val optimalLineLength: Double, val overridePublisherColors: Boolean, val paragraphIndent: Double?, val paragraphSpacing: Double?, val readingProgression: ReadingProgression, val scroll: Boolean, val textAlign: TextAlign?, val textColor: Color, val textNormalization: Boolean, val verticalText: Boolean, val visitedColor: Color, val wordSpacing: Double?) : Settings