Add PangoUnderline
authorDmitry Kalyanov <Kalyanov.Dmitry@gmail.com>
Thu, 29 Oct 2009 12:23:52 +0000 (15:23 +0300)
committerDmitry Kalyanov <Kalyanov.Dmitry@gmail.com>
Thu, 29 Oct 2009 12:23:52 +0000 (15:23 +0300)
pango/pango.lisp

index a8537b3..f8d17d6 100644 (file)
 (define-g-object-class "PangoLayout" pango-layout (:type-initializer "pango_layout_get_type") ())
 
 (export 'pango-layout)
+
+(define-g-enum "PangoUnderline" pango-underline (:export t :type-initializer "pango_underline_get_type")
+  (:none 0)
+  (:single 1)
+  (:double 2)
+  (:low 3)
+  (:error 4))
+
+(export 'pango-underline)