package lablgtk3

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type style = [
  1. | `NORMAL
  2. | `OBLIQUE
  3. | `ITALIC
]
type weight_internal = [
  1. | `ULTRALIGHT
  2. | `LIGHT
  3. | `NORMAL
  4. | `BOLD
  5. | `ULTRABOLD
  6. | `HEAVY
]
type weight = [
  1. | weight_internal
  2. | `CUSTOM of int
]
type variant = [
  1. | `NORMAL
  2. | `SMALL_CAPS
]
type stretch = [
  1. | `ULTRA_CONDENSED
  2. | `EXTRA_CONDENSED
  3. | `CONDENSED
  4. | `SEMI_CONDENSED
  5. | `NORMAL
  6. | `SEMI_EXPANDED
  7. | `EXPANDED
  8. | `EXTRA_EXPANDED
  9. | `ULTRA_EXPANDED
]
type scale = [
  1. | `XX_SMALL
  2. | `X_SMALL
  3. | `SMALL
  4. | `MEDIUM
  5. | `LARGE
  6. | `X_LARGE
  7. | `XX_LARGE
  8. | `CUSTOM of float
]
val scale_to_float : scale -> float
type underline = [
  1. | `NONE
  2. | `SINGLE
  3. | `DOUBLE
  4. | `LOW
]
type wrap_mode = [
  1. | `WORD
  2. | `CHAR
  3. | `WORD_CHAR
]
type ellipsize_mode = [
  1. | `NONE
  2. | `START
  3. | `MIDDLE
  4. | `END
]
val weight_to_int : weight -> int