Author: jluke
Date: 2005-11-25 19:00:49 -0500 (Fri, 25 Nov 2005)
New Revision: 53491
Added:
trunk/monodoc/class/Mono.Cairo/en/Cairo.xml
trunk/monodoc/class/Mono.Cairo/en/Cairo/FontOptions.xml
trunk/monodoc/class/Mono.Cairo/en/Cairo/HintMetrics.xml
trunk/monodoc/class/Mono.Cairo/en/Cairo/HintStyle.xml
trunk/monodoc/class/Mono.Cairo/en/Cairo/SubpixelOrder.xml
trunk/monodoc/class/Mono.Cairo/en/index.xml
Modified:
trunk/monodoc/class/Mono.Cairo/en/Cairo/Distance.xml
trunk/monodoc/class/Mono.Cairo/en/Cairo/Graphics.xml
trunk/monodoc/class/Mono.Cairo/en/Cairo/Matrix.xml
Log:
add docs for FontOptions
Modified: trunk/monodoc/class/Mono.Cairo/en/Cairo/Distance.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/Distance.xml 2005-11-26
00:00:13 UTC (rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/Distance.xml 2005-11-26
00:00:49 UTC (rev 53491)
@@ -50,4 +50,4 @@
<summary>Defines a distance between two points.</summary>
<remarks />
</Docs>
-</Type>
\ No newline at end of file
+</Type>
Added: trunk/monodoc/class/Mono.Cairo/en/Cairo/FontOptions.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/FontOptions.xml 2005-11-26
00:00:13 UTC (rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/FontOptions.xml 2005-11-26
00:00:49 UTC (rev 53491)
@@ -0,0 +1,190 @@
+<Type Name="FontOptions" FullName="Cairo.FontOptions">
+ <TypeSignature Language="C#" Value="public class FontOptions :
System.IDisposable" />
+ <AssemblyInfo>
+ <AssemblyName>Mono.Cairo</AssemblyName>
+ <AssemblyVersion>1.0.5000.0</AssemblyVersion>
+ </AssemblyInfo>
+ <Base>
+ <BaseTypeName>System.Object</BaseTypeName>
+ </Base>
+ <Interfaces>
+ <Interface>
+ <InterfaceName>System.IDisposable</InterfaceName>
+ </Interface>
+ </Interfaces>
+ <Members>
+ <Member MemberName=".ctor">
+ <MemberSignature Language="C#" Value="public FontOptions ();" />
+ <MemberType>Constructor</MemberType>
+ <Parameters />
+ <Docs>
+ <summary>Allocates a new font options object with all options
initialized to default values.</summary>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Copy">
+ <MemberSignature Language="C#" Value="public Cairo.FontOptions Copy ();"
/>
+ <MemberType>Method</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.FontOptions</ReturnType>
+ </ReturnValue>
+ <Parameters />
+ <Docs>
+ <summary>Allocates a new font options object copying the option values
from the current one.</summary>
+ <returns>a newly allocated FontOptions</returns>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Destroy">
+ <MemberSignature Language="C#" Value="public void Destroy ();" />
+ <MemberType>Method</MemberType>
+ <ReturnValue>
+ <ReturnType>System.Void</ReturnType>
+ </ReturnValue>
+ <Parameters />
+ <Docs>
+ <summary>Destroys a FontOptions object created with <see
cref="C:Cairo.FontOptions()" /> or <see cref="M:Cairo.FontOptions.Copy()"
/></summary>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Dispose">
+ <MemberSignature Language="C#" Value="public void Dispose ();" />
+ <MemberType>Method</MemberType>
+ <ReturnValue>
+ <ReturnType>System.Void</ReturnType>
+ </ReturnValue>
+ <Parameters />
+ <Docs>
+ <summary>Dispose resources associated with the FontOptions.</summary>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Merge">
+ <MemberSignature Language="C#" Value="public void Merge
(Cairo.FontOptions other);" />
+ <MemberType>Method</MemberType>
+ <ReturnValue>
+ <ReturnType>System.Void</ReturnType>
+ </ReturnValue>
+ <Parameters>
+ <Parameter Name="other" Type="Cairo.FontOptions" />
+ </Parameters>
+ <Docs>
+ <param name="other">another FontOptions</param>
+ <summary>Merges non-default options from <paramref name="other"/> into
this FontOptions object, replacing existing values.</summary>
+ <remarks>This operation can be thought of as somewhat similar to
compositing other onto options with the operation of
Cairo.Operation.Over.</remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="op_Equality">
+ <MemberSignature Language="C#" Value="public static bool op_Equality
(Cairo.FontOptions options, Cairo.FontOptions other);" />
+ <MemberType>Method</MemberType>
+ <ReturnValue>
+ <ReturnType>System.Boolean</ReturnType>
+ </ReturnValue>
+ <Parameters>
+ <Parameter Name="options" Type="Cairo.FontOptions" />
+ <Parameter Name="other" Type="Cairo.FontOptions" />
+ </Parameters>
+ <Docs>
+ <param name="options">a FontOptions</param>
+ <param name="other">another FontOptions</param>
+ <summary>Tests two FontOptions for equality.</summary>
+ <returns>Whether they are the same.</returns>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="op_Inequality">
+ <MemberSignature Language="C#" Value="public static bool op_Inequality
(Cairo.FontOptions options, Cairo.FontOptions other);" />
+ <MemberType>Method</MemberType>
+ <ReturnValue>
+ <ReturnType>System.Boolean</ReturnType>
+ </ReturnValue>
+ <Parameters>
+ <Parameter Name="options" Type="Cairo.FontOptions" />
+ <Parameter Name="other" Type="Cairo.FontOptions" />
+ </Parameters>
+ <Docs>
+ <param name="options">a FontOptions</param>
+ <param name="other">another FontOptions</param>
+ <summary>Tests two FontOptions for inequality</summary>
+ <returns>Whether they are not the same</returns>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Handle">
+ <MemberSignature Language="C#" Value="public IntPtr Handle { get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>System.IntPtr</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Pointer to the native FontOptions object.</summary>
+ <value>a IntPtr</value>
+ <remarks></remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Antialias">
+ <MemberSignature Language="C#" Value="public Cairo.Antialias Antialias {
set; get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.Antialias</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>The antiliasing mode for the font options object.</summary>
+ <value>the antialiasing mode</value>
+ <remarks>This specifies the type of antialiasing to do when rendering
text.</remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="HintMetrics">
+ <MemberSignature Language="C#" Value="public Cairo.HintMetrics
HintMetrics { set; get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintMetrics</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>The metrics hinting mode for the font options
object.</summary>
+ <value>the metrics hinting mode</value>
+ <remarks>This controls whether metrics are quantized to integer values
in device units. See the documentation for <see cref="T:Cairo.HintMetrics"/>
for full details.</remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="HintStyle">
+ <MemberSignature Language="C#" Value="public Cairo.HintStyle HintStyle {
set; get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintStyle</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>The hint style for font outlines for the font options
object.</summary>
+ <value>the hint style</value>
+ <remarks>This controls whether to fit font outlines to the pixel grid,
and if so, whether to optimize for fidelity or contrast. See the documentation
for <see cref="T:Cairo.HintStyle" /> for full details.</remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="Status">
+ <MemberSignature Language="C#" Value="public Cairo.Status Status { get;
};" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.Status</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Checks whether an error has previously occurred for this font
options object</summary>
+ <value>Cairo.Status.Success or Cairo.Status.NoMemory</value>
+ <remarks>If Cairo.Status.NoMemory occurs when creating the object,
then all operations on the object do nothing.</remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="SubpixelOrder">
+ <MemberSignature Language="C#" Value="public Cairo.SubpixelOrder
SubpixelOrder { set; get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.SubpixelOrder</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>The subpixel order for the font options object.</summary>
+ <value>the subpixel order</value>
+ <remarks>The subpixel order specifies the order of color elements
within each pixel on the display device when rendering with an antialiasing
mode of Cairo.Antialias.Subpixel. See the documentation for <see
cref="T:Cairo.SubpixelOrder" /> for full details.</remarks>
+ </Docs>
+ </Member>
+ </Members>
+ <Docs>
+ <summary>How a font should be rendered</summary>
+ <remarks></remarks>
+ </Docs>
+</Type>
Modified: trunk/monodoc/class/Mono.Cairo/en/Cairo/Graphics.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/Graphics.xml 2005-11-26
00:00:13 UTC (rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/Graphics.xml 2005-11-26
00:00:49 UTC (rev 53491)
@@ -797,18 +797,6 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
- <Member MemberName="FontSize">
- <MemberSignature Language="C#" Value="public double FontSize { set; };"
/>
- <MemberType>Property</MemberType>
- <ReturnValue>
- <ReturnType>System.Double</ReturnType>
- </ReturnValue>
- <Docs>
- <summary>To be added.</summary>
- <value>To be added.</value>
- <remarks>To be added.</remarks>
- </Docs>
- </Member>
<Member MemberName="StrokePreserve">
<MemberSignature Language="C#" Value="public void StrokePreserve ();" />
<MemberType>Method</MemberType>
@@ -1396,6 +1384,30 @@
</remarks>
</Docs>
</Member>
+ <Member MemberName="FontMatrix">
+ <MemberSignature Language="C#" Value="public Cairo.Matrix FontMatrix {
set; get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.Matrix</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>The current font matrix</summary>
+ <value>a matrix describing a transform to be applied to the current
font.</value>
+ <remarks>The font matrix gives a transformation from the design space
of the font (in this space, the em-square is 1 unit by 1 unit) to user space.
Normally, a simple scale is used (see <see
cref="M:Cairo.Graphics.SetFontSize()"/>), but a more complex font matrix can be
used to shear the font or stretch it unequally along the two axes</remarks>
+ </Docs>
+ </Member>
+ <Member MemberName="FontOptions">
+ <MemberSignature Language="C#" Value="public Cairo.FontOptions
FontOptions { set; get; };" />
+ <MemberType>Property</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.FontOptions</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>A set of custom font rendering options</summary>
+ <value>font options to use</value>
+ <remarks>Rendering options are derived by merging these options with
the options derived from underlying surface; if the value in options has a
default value (like Cairo.Antialias.Default), then the value from the surface
is used.</remarks>
+ </Docs>
+ </Member>
</Members>
<Docs>
<summary>This is the main class used to create and display arcs, clips,
paths, curves, text, etc... This class usually required a drawing <see
cref="T:Cairo.Surface" /> to be already set-up so it can draw and render to
it.</summary>
@@ -1537,4 +1549,4 @@
</example>
</remarks>
</Docs>
-</Type>
\ No newline at end of file
+</Type>
Added: trunk/monodoc/class/Mono.Cairo/en/Cairo/HintMetrics.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/HintMetrics.xml 2005-11-26
00:00:13 UTC (rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/HintMetrics.xml 2005-11-26
00:00:49 UTC (rev 53491)
@@ -0,0 +1,46 @@
+<Type Name="HintMetrics" FullName="Cairo.HintMetrics">
+ <TypeSignature Language="C#" Value="public enum HintMetrics" />
+ <AssemblyInfo>
+ <AssemblyName>Mono.Cairo</AssemblyName>
+ <AssemblyVersion>1.0.5000.0</AssemblyVersion>
+ </AssemblyInfo>
+ <Base>
+ <BaseTypeName>System.Enum</BaseTypeName>
+ </Base>
+ <Members>
+ <Member MemberName="Off">
+ <MemberSignature Language="C#" Value="Off" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintMetrics</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Do not hint font metrics</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="On">
+ <MemberSignature Language="C#" Value="On" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintMetrics</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Hint font metrics</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Default">
+ <MemberSignature Language="C#" Value="Default" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintMetrics</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Hint metrics in the default manner for the font backend and
target device</summary>
+ </Docs>
+ </Member>
+ </Members>
+ <Docs>
+ <summary>Specifies whether to hint font metrics.</summary>
+ <remarks>Hinting font metrics means quantizing them so that they are
integer values in device space. Doing this improves the consistency of letter
and line spacing, however it also means that text will be laid out differently
at different zoom factors.</remarks>
+ </Docs>
+</Type>
Added: trunk/monodoc/class/Mono.Cairo/en/Cairo/HintStyle.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/HintStyle.xml 2005-11-26
00:00:13 UTC (rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/HintStyle.xml 2005-11-26
00:00:49 UTC (rev 53491)
@@ -0,0 +1,66 @@
+<Type Name="HintStyle" FullName="Cairo.HintStyle">
+ <TypeSignature Language="C#" Value="public enum HintStyle" />
+ <AssemblyInfo>
+ <AssemblyName>Mono.Cairo</AssemblyName>
+ <AssemblyVersion>1.0.5000.0</AssemblyVersion>
+ </AssemblyInfo>
+ <Base>
+ <BaseTypeName>System.Enum</BaseTypeName>
+ </Base>
+ <Members>
+ <Member MemberName="Medium">
+ <MemberSignature Language="C#" Value="Medium" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintStyle</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Hint outlines with medium strength giving a compromise
between fidelity to the original shapes and contrast</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Slight">
+ <MemberSignature Language="C#" Value="Slight" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintStyle</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Hint outlines slightly to improve contrast while retaining
good fidelity to the original shapes.</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="None">
+ <MemberSignature Language="C#" Value="None" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintStyle</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Do not hint outlines</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Default">
+ <MemberSignature Language="C#" Value="Default" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintStyle</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Use the default hint style for for font backend and target
device</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Full">
+ <MemberSignature Language="C#" Value="Full" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.HintStyle</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Hint outlines to maximize contrast</summary>
+ </Docs>
+ </Member>
+ </Members>
+ <Docs>
+ <summary>Specifies the type of hinting to do on font outlines.</summary>
+ <remarks>Hinting is the process of fitting outlines to the pixel grid in
order to improve the appearance of the result. Since hinting outlines involves
distorting them, it also reduces the faithfulness to the original outline
shapes. Not all of the outline hinting styles are supported by all font
backends.</remarks>
+ </Docs>
+</Type>
Modified: trunk/monodoc/class/Mono.Cairo/en/Cairo/Matrix.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/Matrix.xml 2005-11-26 00:00:13 UTC
(rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/Matrix.xml 2005-11-26 00:00:49 UTC
(rev 53491)
@@ -470,4 +470,4 @@
</example>
</remarks>
</Docs>
-</Type>
\ No newline at end of file
+</Type>
Added: trunk/monodoc/class/Mono.Cairo/en/Cairo/SubpixelOrder.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo/SubpixelOrder.xml 2005-11-26
00:00:13 UTC (rev 53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo/SubpixelOrder.xml 2005-11-26
00:00:49 UTC (rev 53491)
@@ -0,0 +1,66 @@
+<Type Name="SubpixelOrder" FullName="Cairo.SubpixelOrder">
+ <TypeSignature Language="C#" Value="public enum SubpixelOrder" />
+ <AssemblyInfo>
+ <AssemblyName>Mono.Cairo</AssemblyName>
+ <AssemblyVersion>1.0.5000.0</AssemblyVersion>
+ </AssemblyInfo>
+ <Base>
+ <BaseTypeName>System.Enum</BaseTypeName>
+ </Base>
+ <Members>
+ <Member MemberName="Rgb">
+ <MemberSignature Language="C#" Value="Rgb" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.SubpixelOrder</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Subpixel elements are arranged horizontally with red at the
left</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Vrgb">
+ <MemberSignature Language="C#" Value="Vrgb" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.SubpixelOrder</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Subpixel elements are arranged vertically with red at the
top</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Bgr">
+ <MemberSignature Language="C#" Value="Bgr" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.SubpixelOrder</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Subpixel elements are arranged horizontally with blue at the
left</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Vbgr">
+ <MemberSignature Language="C#" Value="Vbgr" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.SubpixelOrder</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Subpixel elements are arranged vertically with blue at the
top</summary>
+ </Docs>
+ </Member>
+ <Member MemberName="Default">
+ <MemberSignature Language="C#" Value="Default" />
+ <MemberType>Field</MemberType>
+ <ReturnValue>
+ <ReturnType>Cairo.SubpixelOrder</ReturnType>
+ </ReturnValue>
+ <Docs>
+ <summary>Use the default subpixel order for for the target
device</summary>
+ </Docs>
+ </Member>
+ </Members>
+ <Docs>
+ <summary>The subpixel order specifies the order of color elements within
each pixel on the display device when rendering with an antialiasing mode of
Cairo.Antialias.Subpixel.</summary>
+ <remarks></remarks>
+ </Docs>
+</Type>
Added: trunk/monodoc/class/Mono.Cairo/en/Cairo.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/Cairo.xml 2005-11-26 00:00:13 UTC (rev
53490)
+++ trunk/monodoc/class/Mono.Cairo/en/Cairo.xml 2005-11-26 00:00:49 UTC (rev
53491)
@@ -0,0 +1,6 @@
+<Namespace Name="Cairo">
+ <Docs>
+ <summary>To be added.</summary>
+ <remarks>To be added.</remarks>
+ </Docs>
+</Namespace>
Added: trunk/monodoc/class/Mono.Cairo/en/index.xml
===================================================================
--- trunk/monodoc/class/Mono.Cairo/en/index.xml 2005-11-26 00:00:13 UTC (rev
53490)
+++ trunk/monodoc/class/Mono.Cairo/en/index.xml 2005-11-26 00:00:49 UTC (rev
53491)
@@ -0,0 +1,47 @@
+<Overview>
+ <Assemblies>
+ <Assembly Name="Mono.Cairo" Version="1.0.5000.0" />
+ </Assemblies>
+ <Remarks>To be added.</Remarks>
+ <Copyright>To be added.</Copyright>
+ <Types>
+ <Namespace Name="Cairo">
+ <Type Name="FontExtents" />
+ <Type Name="TextExtents" />
+ <Type Name="Glyph" />
+ <Type Name="FontOptions" />
+ <Type Name="Matrix" />
+ <Type Name="Point" />
+ <Type Name="PointD" />
+ <Type Name="Distance" />
+ <Type Name="Color" />
+ <Type Name="Graphics" />
+ <Type Name="ImageSurface" />
+ <Type Name="Surface" />
+ <Type Name="Win32Surface" />
+ <Type Name="XlibSurface" />
+ <Type Name="LinearGradient" />
+ <Type Name="Gradient" />
+ <Type Name="Pattern" />
+ <Type Name="RadialGradient" />
+ <Type Name="SolidPattern" />
+ <Type Name="SurfacePattern" />
+ <Type Name="Antialias" />
+ <Type Name="Content" />
+ <Type Name="Format" />
+ <Type Name="Operator" />
+ <Type Name="FillRule" />
+ <Type Name="LineCap" />
+ <Type Name="LineJoin" />
+ <Type Name="Status" />
+ <Type Name="Filter" />
+ <Type Name="FontSlant" />
+ <Type Name="FontWeight" />
+ <Type Name="Extend" />
+ <Type Name="HintMetrics" />
+ <Type Name="HintStyle" />
+ <Type Name="SubpixelOrder" />
+ </Namespace>
+ </Types>
+ <Title>Mono.Cairo</Title>
+</Overview>
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches