crategus / cl-cffi-gtk

cl-cffi-gtk is a Lisp binding to the GTK+ 3 library.

Home Page:http://www.crategus.com/books/cl-cffi-gtk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MISSING: pango-stretch enums - and most of pango

stacksmith opened this issue · comments

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))