Apply patches from jaspervp@gmx.net
svn path=/trunk/gtk-sharp/; revision=31113
This commit is contained in:
parent
a975f36bb8
commit
b6ac7cea69
10 changed files with 59 additions and 33 deletions
|
@ -7,7 +7,7 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<summary>Event handler.</summary>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>event handler.</summary>
|
||||
<remarks>this delegate is used for custom methods to built the internal children of a widget.</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
<BaseTypeName>System.Delegate</BaseTypeName>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>Event handler.</summary>
|
||||
<remarks>this delegate is used for custom methods to find the internal children of a widget.</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
<BaseTypeName>System.Delegate</BaseTypeName>
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
<summary>To be added</summary>
|
||||
<param name="version">a <see cref="T:System.Int32" /></param>
|
||||
<returns>a <see cref="T:System.String" /></returns>
|
||||
<remarks>To be added</remarks>
|
||||
<remarks />
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="SetCustomHandler">
|
||||
|
@ -77,9 +77,9 @@
|
|||
<Parameter Name="handler" Type="Glade.XMLCustomWidgetHandler" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<param name="handler">a <see cref="T:Glade.XMLCustomWidgetHandler" /></param>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>this method allows you to override the default behaviour when a Custom widget is found in an interface.</summary>
|
||||
<param name="handler">the <see cref="T:Glade.XMLCustomWidgetHandler" /> to use when a custom widget is found.</param>
|
||||
<remarks />
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName=".ctor">
|
||||
|
@ -105,10 +105,10 @@
|
|||
<Parameter Name="apply_prop" Type="Glade.ApplyCustomPropFunc" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<param name="type">a <see cref="T:GLib.GType" /></param>
|
||||
<param name="prop_name">a <see cref="T:System.String" /></param>
|
||||
<param name="apply_prop">a <see cref="T:Glade.ApplyCustomPropFunc" /></param>
|
||||
<summary>This method provides a way to register handlers for custom properties.</summary>
|
||||
<param name="type">the <see cref="T:GLib.GType" /> of the widget.</param>
|
||||
<param name="prop_name">the name of the custom property</param>
|
||||
<param name="apply_prop">the <see cref="T:Glade.ApplyCustomPropFunc" /> to call when the property is found.</param>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -161,12 +161,12 @@
|
|||
<Parameter Name="find_internal_child" Type="Glade.FindInternalChildFunc" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<param name="type">a <see cref="T:GLib.GType" /></param>
|
||||
<param name="_new">a <see cref="T:Glade.NewFunc" /></param>
|
||||
<param name="build_children">a <see cref="T:Glade.BuildChildrenFunc" /></param>
|
||||
<param name="find_internal_child">a <see cref="T:Glade.FindInternalChildFunc" /></param>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>this method registers new costruction methods for a widget type.</summary>
|
||||
<param name="type">the <see cref="T:GLib.GType" /> of a widget.</param>
|
||||
<param name="_new">the <see cref="T:Glade.NewFunc" /> used to construct the widget.</param>
|
||||
<param name="build_children">the <see cref="T:Glade.BuildChildrenFunc" /> used to construct the children or null.</param>
|
||||
<param name="find_internal_child">the <see cref="T:Glade.FindInternalChildFunc" /> to find the internal children or null.</param>
|
||||
<remarks />
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>Event handler.</summary>
|
||||
<remarks>this delegate is called used for custom methods to create widgets.</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
<BaseTypeName>System.Delegate</BaseTypeName>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<summary>Event handler.</summary>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
|
|
|
@ -734,8 +734,8 @@ public class GladeApp
|
|||
<ReturnType>Gtk.Widget</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<returns>a <see cref="T:Gtk.Widget" /></returns>
|
||||
<summary>returns a widget created from the glade xml file. </summary>
|
||||
<returns>a <see cref="T:Gtk.Widget" /> or null when the the widget with taht name is't found.</returns>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>Event handler.</summary>
|
||||
<remarks>this delegate is used for custom methods to connect the signals to methods.</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
<BaseTypeName>System.Delegate</BaseTypeName>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
</AssemblyInfo>
|
||||
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<remarks>To be added</remarks>
|
||||
<summary>Event handler.</summary>
|
||||
<remarks>this delegate is used for custom methods to call when a custom widget is found.</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
<BaseTypeName>System.Delegate</BaseTypeName>
|
||||
|
|
|
@ -256,7 +256,15 @@ class NotebookSample
|
|||
used as the label for the page, or <see langword="null" /> to
|
||||
use the default label, 'page N'.</param>
|
||||
<remarks>
|
||||
Appends a page to notebook. The tab widget is the <paramref name="tab_label" /> and the content is <paramref name="child" /></remarks>
|
||||
<para>
|
||||
|
||||
Appends a page to notebook. The tab widget is the <paramref name="tab_label" /> and the content is <paramref name="child" />.
|
||||
|
||||
</para>
|
||||
<para>
|
||||
Don't forget to call the Show method on the widget or else the new page will not be shown.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="AppendPageMenu">
|
||||
|
@ -289,6 +297,9 @@ class NotebookSample
|
|||
<remarks>
|
||||
<para>Appends a page to notebook, specifying the
|
||||
widget to use as the label in the popup menu.</para>
|
||||
<para>
|
||||
Don't forget to call the Show method on the widget or else the new page will not be shown.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -318,8 +329,11 @@ class NotebookSample
|
|||
</param>
|
||||
<remarks>
|
||||
<para>
|
||||
Insert a page into the notebook at the given position
|
||||
Insert a page into the notebook at the given position.
|
||||
</para>
|
||||
<para>
|
||||
Don't forget to call the Show method on the widget or else the new page will not be shown.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -430,7 +444,11 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
|
|||
<summary>prepends a page.</summary>
|
||||
<param name="child">a <see cref="T:Gtk.Widget" /> t use as content of the page.</param>
|
||||
<param name="tab_label">the <see cref="T:Gtk.Widget" /> to use as the tab label. use null to use the default label.</param>
|
||||
<remarks />
|
||||
<remarks>
|
||||
<para>
|
||||
Don't forget to call the Show method on the widget or else the new page will not be shown.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="NextPage">
|
||||
|
@ -470,7 +488,11 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
|
|||
<param name="child">the <see cref="T:Gtk.Widget" /> to use as contents of the page.</param>
|
||||
<param name="tab_label">the <see cref="T:Gtk.Widget" /> to use as tab label. use null to use the default label.</param>
|
||||
<param name="menu_label">the <see cref="T:Gtk.Widget" /> to use as menu label. use null to get the same label as the tab label, this only works if the tab label is a <see cref="T:Gtk.Label" /></param>
|
||||
<remarks>To be added</remarks>
|
||||
<remarks>
|
||||
<para>
|
||||
Don't forget to call the Show method on the widget or else the new page will not be shown.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="SetMenuLabel">
|
||||
|
@ -814,7 +836,11 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
|
|||
<param name="tab_label">the<see cref="T:Gtk.Widget" /> to use as a label. use null for the default label.</param>
|
||||
<param name="menu_label">the <see cref="T:Gtk.Widget" /> to use as menu label. use null to get the same label as the tab label, this only works if the tab label is a <see cref="T:Gtk.Label" /></param>
|
||||
<param name="position">the zero-based position to insert the page. use -1 make it the last page.</param>
|
||||
<remarks />
|
||||
<remarks>
|
||||
<para>
|
||||
Don't forget to call the Show method on the widget or else the new page will not be shown.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="SetTabLabel">
|
||||
|
|
Loading…
Reference in a new issue