From 521e46122b7068cdea4482cb704c08c7c62c2b94 Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Wed, 26 Oct 2011 22:50:34 +0200 Subject: Document the symbols used by DrawingContext. --- dmagick/c/type.d | 40 ++++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 16 deletions(-) (limited to 'dmagick/c/type.d') diff --git a/dmagick/c/type.d b/dmagick/c/type.d index 0291b18..4006d06 100644 --- a/dmagick/c/type.d +++ b/dmagick/c/type.d @@ -7,28 +7,36 @@ import dmagick.c.magickType; extern(C) { + /** + * This setting suggests a type of stretch that ImageMagick should try + * to apply to the currently selected font family. + */ enum StretchType { - UndefinedStretch, - NormalStretch, - UltraCondensedStretch, - ExtraCondensedStretch, - CondensedStretch, - SemiCondensedStretch, - SemiExpandedStretch, - ExpandedStretch, - ExtraExpandedStretch, - UltraExpandedStretch, - AnyStretch + UndefinedStretch, /// + NormalStretch, /// ditto + UltraCondensedStretch, /// ditto + ExtraCondensedStretch, /// ditto + CondensedStretch, /// ditto + SemiCondensedStretch, /// ditto + SemiExpandedStretch, /// ditto + ExpandedStretch, /// ditto + ExtraExpandedStretch, /// ditto + UltraExpandedStretch, /// ditto + AnyStretch /// ditto } + /** + * This setting suggests a font style that ImageMagick should try to + * apply to the currently selected font family. + */ enum StyleType { - UndefinedStyle, - NormalStyle, - ItalicStyle, - ObliqueStyle, - AnyStyle + UndefinedStyle, /// + NormalStyle, /// ditto + ItalicStyle, /// ditto + ObliqueStyle, /// ditto + AnyStyle /// ditto } struct TypeInfo -- cgit v1.2.3