crategus / cl-cffi-gtk

cl-cffi-gtk is a Lisp binding to the GTK+ 3 library.
http://www.crategus.com/books/cl-cffi-gtk
146 stars 33 forks source link

MISSING: pango-stretch enums - and most of pango #63

Open stacksmith opened 5 years ago

stacksmith commented 5 years ago

pango-stretch is one of the defined properties of gtk-text-tag, but I could not find the enumerations...

(in-package :pango)
;; see pango.attributes
(define-g-enum "PangoStretch" pango-stretch
    (:export t
         :type-initializer "pango_stretch_get_type")
  (:ultra-condensed 0)
  (:extra-condensed 1)
  (:condensed 2)
  (:semi-condensed 3)
  (:normal 4)
  (:semi-epanded 5)
  (:expanded 6)
  (:extra-expanded 7)
  (:ultra-expanded 8))