All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.woojiahao.style.utility.FontFamily.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.style.utility

class FontFamily(vararg fonts: String) {

  enum class BaseFontFamily {
    SERIF, SANS_SERIF, CURSIVE, FANTASY, MONOSPACE;

    fun toCss() = name.toLowerCase().replace("_", "-")
  }

  constructor(fallBackFont: BaseFontFamily, vararg fonts: String)
      : this(*createFontListWithFallbackFont(fallBackFont, fonts))

  constructor(fontFamily: FontFamily) : this(*fontFamily.fontFamily.toTypedArray())

  private val fontFamily = mutableListOf()

  val fonts
    get() = fontFamily.toList()

  init {
    fontFamily.addAll(fonts)
  }

  operator fun String.unaryPlus() = fontFamily.add(this)

  fun clear() = fontFamily.clear()

  fun clone() = FontFamily(this)

  override fun toString() =
    fontFamily.joinToString(", ") {
      if (it.split(" ").size > 1) "'$it'"
      else it
    }

  companion object {
    private fun createFontListWithFallbackFont(
      fallBackFont: BaseFontFamily,
      fonts: Array
    ): Array {
      val fontList = fonts.toMutableList()
      fontList += fallBackFont.toCss()
      return fontList.toTypedArray()
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy