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

com.github.woojiahao.properties.DocumentProperties.kt Maven / Gradle / Ivy

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

import com.github.woojiahao.FigcaptionSettings
import com.github.woojiahao.style.utility.Box
import com.github.woojiahao.style.utility.Measurement
import com.github.woojiahao.style.utility.`in`
import com.github.woojiahao.toc.TableOfContentsSettings

class DocumentProperties private constructor(
  val size: DocumentSize,
  val margins: Box>,
  val leftPageMargins: Box>?,
  val rightPageMargins: Box>?,
  val tableOfContentsSettings: TableOfContentsSettings,
  val figcaptionSettings: FigcaptionSettings
) {

  open class Builder {
    private var size = DocumentSize()
    private var margins = Box(0.4.`in`)
    private var leftPageMargins: Box>? = null
    private var rightPageMargins: Box>? = null
    private var tableOfContentsSettings = TableOfContentsSettings()
    private var figcaptionSettings = FigcaptionSettings()

    fun size(size: DocumentSize): Builder {
      this.size = size
      return this
    }

    fun margins(margins: Box>): Builder {
      this.margins = margins
      return this
    }

    fun leftPageMargins(leftPageMargins: Box>): Builder {
      this.leftPageMargins = leftPageMargins
      return this
    }

    fun rightPageMargins(rightPageMargins: Box>): Builder {
      this.rightPageMargins = rightPageMargins
      return this
    }

    fun tableOfContentsSettings(tableOfContentsSettings: TableOfContentsSettings): Builder {
      this.tableOfContentsSettings = tableOfContentsSettings
      return this
    }

    fun figcaptionSettings(figcaptionSettings: FigcaptionSettings): Builder {
      this.figcaptionSettings = figcaptionSettings
      return this
    }

    fun build() = DocumentProperties(
      size,
      margins,
      leftPageMargins,
      rightPageMargins,
      tableOfContentsSettings,
      figcaptionSettings
    )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy