2004-12-03 Mike Kestner <mkestner@novell.com>

* gtk/Gtk.metadata : hide junk methods in Global. [Fixes #60895]

svn path=/trunk/gtk-sharp/; revision=37037
This commit is contained in:
Mike Kestner 2004-12-03 17:30:29 +00:00
parent 59b46e3fed
commit 8a6ba75f45
8 changed files with 51 additions and 274 deletions

View File

@ -1,3 +1,7 @@
2004-12-03 Mike Kestner <mkestner@novell.com>
* gtk/Gtk.metadata : hide junk methods in Global. [Fixes #60895]
2004-12-03 Mike Kestner <mkestner@novell.com>
* gtk/Gtk.metadata : hide Visibility enum. [Fixes #60704]

View File

@ -1389,105 +1389,6 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream);
</remarks>
</Docs>
</Member>
<Member MemberName="RenderThresholdAlpha" Deprecated="true">
<MemberSignature Language="C#" Value="public void RenderThresholdAlpha (Gdk.Bitmap bitmap, int src_x, int src_y, int dest_x, int dest_y, int alpha_threshold);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="bitmap" Type="Gdk.Bitmap" />
<Parameter Name="src_x" Type="System.Int32" />
<Parameter Name="src_y" Type="System.Int32" />
<Parameter Name="dest_x" Type="System.Int32" />
<Parameter Name="dest_y" Type="System.Int32" />
<Parameter Name="alpha_threshold" Type="System.Int32" />
</Parameters>
<Docs>
<summary>Render pixbuf alpha channel as a bi-level clip mask to a <see cref="T:Gdk.Bitmap" /></summary>
<param name="bitmap">The destination object of type "Gdk.Bitmap"</param>
<param name="src_x">Source X coordinate.</param>
<param name="src_y">Source Y coordinate.</param>
<param name="dest_x">Destination X coordinate.
</param>
<param name="dest_y">Destination Y coordinate.</param>
<param name="alpha_threshold">Value below this will be painted as zero; all other values will be painted as one.</param>
<remarks>This function is designed to threshold and render the alpha values from this <see cref="T:Gdk.Pixbuf" /> into the destination <see cref="T:Gdk.Bitmask" /> which can then be used as a clipping mask for a <see cref="T:Gdk.Drawable" />.</remarks>
<remarks />
</Docs>
</Member>
<Member MemberName="RenderPixmapAndMask" Deprecated="true">
<MemberSignature Language="C#" Value="public void RenderPixmapAndMask (out Gdk.Pixmap pixmap_return, out Gdk.Pixmap mask_return, int alpha_threshold);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="pixmap_return" Type="Gdk.Pixmap&amp;" RefType="out" />
<Parameter Name="mask_return" Type="Gdk.Pixmap&amp;" RefType="out" />
<Parameter Name="alpha_threshold" Type="System.Int32" />
</Parameters>
<Docs>
<summary>
Creates a pixmap and a mask bitmap which are returned in the
<paramref name="pixmap_return" /> and <paramref name="mask_return" />
arguments, respectively, and renders a pixbuf and its
corresponding thresholded alpha mask to them. This is merely a convenience
function; applications that need to render pixbufs with dither offsets or to
given drawables should use <see cref="M:Gdk.Pixbuf.RenderToDrawableAlpha" />
or <see cref="M:Gdk.Pixbuf.RenderToDrawable" /> and
<see cref="M:Gdk.Pixbuf.RenderThresholdAlpha" />.
</summary>
<param name="pixmap_return">a <see cref="T:Gdk.Pixmap" /></param>
<param name="mask_return">a <see cref="T:Gdk.Bitmap" /></param>
<param name="alpha_threshold">a <see cref="T:System.Int32" />, threshold value for opacity.</param>
<remarks>
The pixmap that is created is created for the colormap returned
by <see cref="M:Gdk.Rgb.GetColormap" />. You normally will want to instead use
the actual colormap for a widget, and use
<see cref="M:Gdk.Pixbuf.RenderPixmapAndMaskForColormap" />,
If the pixbuf does not have an alpha channel, then *<paramref name="mask_return" /> will be set
to <see langword="null" />.
</remarks>
</Docs>
</Member>
<Member MemberName="RenderPixmapAndMaskForColormap" Deprecated="true">
<MemberSignature Language="C#" Value="public void RenderPixmapAndMaskForColormap (Gdk.Colormap colormap, out Gdk.Pixmap pixmap_return, out Gdk.Pixmap mask_return, int alpha_threshold);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="colormap" Type="Gdk.Colormap" />
<Parameter Name="pixmap_return" Type="Gdk.Pixmap&amp;" RefType="out" />
<Parameter Name="mask_return" Type="Gdk.Pixmap&amp;" RefType="out" />
<Parameter Name="alpha_threshold" Type="System.Int32" />
</Parameters>
<Docs>
<summary>
Creates a pixmap and a mask bitmap which are returned in the
<paramref name="pixmap_return" /> and <paramref name="mask_return" />
arguments, respectively, and renders a pixbuf and its
corresponding thresholded alpha mask to them.
This is merely a convenience
function; applications that need to render pixbufs with dither offsets or to
given drawables should use <see cref="M:Gdk.Pixbuf.RenderToDrawableAlpha" />
or <see cref="M:Gdk.Pixbuf.RenderToDrawable" /> and
<see cref="M:Gdk.Pixbuf.RenderThresholdAlpha" />.
</summary>
<param name="colormap">a <see cref="T:Gdk.Colormap" /></param>
<param name="pixmap_return">a <see cref="T:Gdk.Pixmap" /></param>
<param name="mask_return">a <see cref="T:Gdk.Bitmap" /></param>
<param name="alpha_threshold">a <see cref="T:System.Int32" /></param>
<remarks>
The pixmap that is created uses the <see cref="T:Gdk.Colormap" /> specified by <paramref name="colormap" />.
This colormap must match the colormap of the window where the pixmap
will eventually be used or an error will result.
If the pixbuf does not have an alpha channel, then *<paramref name="mask_return" /> will be set
to <see langword="null" />.
</remarks>
</Docs>
</Member>
<Member MemberName="GetFileInfo">
<MemberSignature Language="C#" Value="public static Gdk.PixbufFormat GetFileInfo (string filename, out int width, out int height);" />
<MemberType>Method</MemberType>
@ -1593,11 +1494,27 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream);
<Parameter Name="alpha_threshold" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<summary>
Creates a pixmap and a mask bitmap which are returned in the
<paramref name="pixmap_return" /> and <paramref name="mask_return" />
arguments, respectively, and renders a pixbuf and its
corresponding thresholded alpha mask to them. This is merely a convenience
function; applications that need to render pixbufs with dither offsets or to
given drawables should use <see cref="M:Gdk.Pixbuf.RenderToDrawableAlpha" />
or <see cref="M:Gdk.Pixbuf.RenderToDrawable" /> and
<see cref="M:Gdk.Pixbuf.RenderThresholdAlpha" />.
</summary>
<param name="pixmap_return">a <see cref="T:Gdk.Pixmap" /></param>
<param name="mask_return">a <see cref="T:Gdk.Bitmap" /></param>
<param name="alpha_threshold">a <see cref="T:System.Int32" /></param>
<remarks>To be added</remarks>
<param name="alpha_threshold">a <see cref="T:System.Int32" />, threshold value for opacity.</param>
<remarks>
The pixmap that is created is created for the colormap returned
by <see cref="M:Gdk.Rgb.GetColormap" />. You normally will want to instead use
the actual colormap for a widget, and use
<see cref="M:Gdk.Pixbuf.RenderPixmapAndMaskForColormap" />,
If the pixbuf does not have an alpha channel, then *<paramref name="mask_return" /> will be set
to <see langword="null" />.
</remarks>
</Docs>
</Member>
<Member MemberName="RenderPixmapAndMaskForColormap">
@ -1613,12 +1530,28 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream);
<Parameter Name="alpha_threshold" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<summary>
Creates a pixmap and a mask bitmap which are returned in the
<paramref name="pixmap_return" /> and <paramref name="mask_return" />
arguments, respectively, and renders a pixbuf and its
corresponding thresholded alpha mask to them.
This is merely a convenience
function; applications that need to render pixbufs with dither offsets or to
given drawables should use <see cref="M:Gdk.Pixbuf.RenderToDrawableAlpha" />
or <see cref="M:Gdk.Pixbuf.RenderToDrawable" /> and
<see cref="M:Gdk.Pixbuf.RenderThresholdAlpha" />.
</summary>
<param name="colormap">a <see cref="T:Gdk.Colormap" /></param>
<param name="pixmap_return">a <see cref="T:Gdk.Pixmap" /></param>
<param name="mask_return">a <see cref="T:Gdk.Bitmap" /></param>
<param name="alpha_threshold">a <see cref="T:System.Int32" /></param>
<remarks>To be added</remarks>
<remarks>
The pixmap that is created uses the <see cref="T:Gdk.Colormap" /> specified by <paramref name="colormap" />.
This colormap must match the colormap of the window where the pixmap
will eventually be used or an error will result.
If the pixbuf does not have an alpha channel, then *<paramref name="mask_return" /> will be set
to <see langword="null" />.
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
@ -1640,4 +1573,4 @@ Gdk.Pixbuf pb = new Gdk.Pixbuf(memorystream);
</Docs>
</Member>
</Members>
</Type>
</Type>

View File

@ -31,6 +31,7 @@
</Interface>
</Interfaces>
<Attributes />
<Members>
<Member MemberName="AppendPixbuf">
<MemberSignature Language="C#" Value="public int AppendPixbuf (Gdk.Pixbuf im, string icon_filename, string text);" />
<MemberType>Method</MemberType>

View File

@ -98,18 +98,6 @@
<remarks>To be added</remarks>
</Docs>
</Member>
<Member MemberName="SelectionCleared" Deprecated="true">
<MemberSignature Language="C#" Value="public event GnomeDb.SelectionClearedHandler SelectionCleared;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>GnomeDb.SelectionClearedHandler</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
</Docs>
</Member>
<Member MemberName="RowSelected">
<MemberSignature Language="C#" Value="public event GnomeDb.RowSelectedHandler RowSelected;" />
<MemberType>Event</MemberType>
@ -135,21 +123,6 @@
<remarks>Returns the native <see cref="T:GLib.GType" /> value for <see cref="T:GnomeDb.List" />.</remarks>
</Docs>
</Member>
<Member MemberName="OnSelectionCleared" Deprecated="true">
<MemberSignature Language="C#" Value="protected virtual void OnSelectionCleared (int row);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="row" Type="System.Int32" />
</Parameters>
<Docs>
<summary>Default handler for the <see cref="M:GnomeDb.List.SelectionCleared" /> event.</summary>
<param name="row">a <see cref="T:System.Int32" /></param>
<remarks>Override this method in a subclass to provide a default handler for the <see cref="M:GnomeDb.List.SelectionCleared" /> event.</remarks>
</Docs>
</Member>
<Member MemberName="OnRowSelected">
<MemberSignature Language="C#" Value="protected virtual void OnRowSelected (int row);" />
<MemberType>Method</MemberType>
@ -204,4 +177,4 @@
</Docs>
</Member>
</Members>
</Type>
</Type>

View File

@ -209,58 +209,6 @@
<remarks />
</Docs>
</Member>
<Member MemberName="PrivateFlagsGetType">
<MemberSignature Language="C#" Value="public static GLib.GType PrivateFlagsGetType ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Do not use.</summary>
<returns>a <see cref="T:GLib.GType" /></returns>
<remarks />
</Docs>
</Member>
<Member MemberName="CellTypeGetType">
<MemberSignature Language="C#" Value="public static GLib.GType CellTypeGetType ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Do not use.</summary>
<returns>a <see cref="T:GLib.GType" /></returns>
<remarks>This is internal api and will be obsoleted in the future.</remarks>
</Docs>
</Member>
<Member MemberName="IdentifierGetType">
<MemberSignature Language="C#" Value="public static GLib.GType IdentifierGetType ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Do not use.</summary>
<returns>a <see cref="T:GLib.GType" /></returns>
<remarks />
</Docs>
</Member>
<Member MemberName="ClistDragPosGetType">
<MemberSignature Language="C#" Value="public static GLib.GType ClistDragPosGetType ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Do not use.</summary>
<returns>a <see cref="T:GLib.GType" /></returns>
<remarks>This method will likely be obsoleted or removed in future versions.</remarks>
</Docs>
</Member>
<Member MemberName="EventsPending">
<MemberSignature Language="C#" Value="public static bool EventsPending { get; };" />
<MemberType>Property</MemberType>
@ -287,19 +235,6 @@
</example></remarks>
</Docs>
</Member>
<Member MemberName="DebugFlagGetType">
<MemberSignature Language="C#" Value="public static GLib.GType DebugFlagGetType ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<returns>a <see cref="T:GLib.GType" /></returns>
<remarks>To be added</remarks>
</Docs>
</Member>
<Member MemberName="PaintString">
<MemberSignature Language="C#" Value="public static void PaintString (Gtk.Style style, Gdk.Window window, Gtk.StateType state_type, Gdk.Rectangle area, Gtk.Widget widget, string detail, int x, int y, string str1ng);" />
<MemberType>Method</MemberType>

View File

@ -30,66 +30,6 @@
</Interfaces>
<Attributes />
<Members>
<Member MemberName="Space" Deprecated="true">
<MemberSignature Language="C#" Value="Space" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>Gtk.ToolbarChildType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>a space</summary>
<remarks />
</Docs>
</Member>
<Member MemberName="Button" Deprecated="true">
<MemberSignature Language="C#" Value="Button" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>Gtk.ToolbarChildType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>a <see cref="T:Gtk.Button" /></summary>
<remarks />
</Docs>
</Member>
<Member MemberName="Togglebutton" Deprecated="true">
<MemberSignature Language="C#" Value="Togglebutton" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>Gtk.ToolbarChildType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>a <see cref="T:Gtk.ToggleButton" /></summary>
<remarks />
</Docs>
</Member>
<Member MemberName="Radiobutton" Deprecated="true">
<MemberSignature Language="C#" Value="Radiobutton" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>Gtk.ToolbarChildType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>a <see cref="T:Gtk.RadioButton" /></summary>
<remarks />
</Docs>
</Member>
<Member MemberName="Widget" Deprecated="true">
<MemberSignature Language="C#" Value="Widget" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>Gtk.ToolbarChildType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>a standard <see cref="T:Gtk.Widget" /></summary>
<remarks />
</Docs>
</Member>
<Member MemberName="value__">
<MemberSignature Language="C#" Value="value__" />
<MemberType>Field</MemberType>
@ -169,4 +109,4 @@
</Docs>
</Member>
</Members>
</Type>
</Type>

View File

@ -387,20 +387,6 @@ The behaviour is chosen based on the "is_important" property of the action to wh
<remarks />
</Docs>
</Member>
<Member MemberName=".ctor" Deprecated="true">
<MemberSignature Language="C#" Value="public UIManager (Gtk.UIManager self);" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="self" Type="Gtk.UIManager" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="self">a <see cref="T:Gtk.UIManager" /></param>
<returns>a <see cref="T:Gtk.UIManager" /></returns>
<remarks>To be added</remarks>
</Docs>
</Member>
<Member MemberName="GType">
<MemberSignature Language="C#" Value="public static GLib.GType GType { get; };" />
<MemberType>Property</MemberType>
@ -552,4 +538,4 @@ The behaviour is chosen based on the "is_important" property of the action to wh
</Docs>
</Member>
</Members>
</Type>
</Type>

View File

@ -37,9 +37,14 @@
<attr path="/api/namespace/class[@cname='GtkFile_']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='EventsPending']/return-type" name="type">gboolean</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='EventsPending']" name="name">GetEventsPending</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='CellTypeGetType']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='CheckVersion']/return-type" name="type">const-gchar*</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='ClistDragPosGetType']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='DebugFlagGetType']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='IdentifierGetType']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='PaintPolygon']/*/*[@name='points']" name="array">1</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='PaintPolygon']/*/*[@name='npoints']" name="name">n_points</attr>
<attr path="/api/namespace/class[@cname='GtkGlobal']/method[@name='PrivateFlagsGetType']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkIdle_']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkInit_']/method[@name='Check']" name="hidden">1</attr>
<attr path="/api/namespace/class[@cname='GtkInit_']/method[@name='CheckAbiCheck']" name="hidden">1</attr>