summaryrefslogtreecommitdiff
path: root/dmagick/c/type.d
diff options
context:
space:
mode:
authorMike Wey2011-10-26 22:50:34 +0200
committerMike Wey2011-10-26 22:50:34 +0200
commit521e46122b7068cdea4482cb704c08c7c62c2b94 (patch)
treec82f5f3ace451b00828a56d3c2f758ea00c37036 /dmagick/c/type.d
parent7fb35ecefdb79b77d8cde8bf2159bf9178dd4124 (diff)
Document the symbols used by DrawingContext.
Diffstat (limited to 'dmagick/c/type.d')
-rw-r--r--dmagick/c/type.d40
1 files changed, 24 insertions, 16 deletions
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