2004-07-07 Jasper Van Putten <jaspervp@gmx.net>

* en/Gtk/*.xml : docs for Notebook and RadioButton.

svn path=/trunk/gtk-sharp/; revision=30847
This commit is contained in:
Mike Kestner 2004-07-07 18:28:18 +00:00
parent e6137dc489
commit d8b8c9ce79
3 changed files with 86 additions and 65 deletions

View file

@ -1,3 +1,7 @@
2004-07-07 Jasper Van Putten <jaspervp@gmx.net>
* en/Gtk/*.xml : docs for Notebook and RadioButton.
2004-07-06 Peter Johanson <latexer@gentoo.org> 2004-07-06 Peter Johanson <latexer@gentoo.org>
* en/Gnome/*.xml : docs for ColorPicker. * en/Gnome/*.xml : docs for ColorPicker.

View file

@ -101,13 +101,18 @@ class NotebookSample
<Parameter Name="child" Type="Gtk.Widget" /> <Parameter Name="child" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>Returns the label widget for a given widget.</summary> <summary>Returns the label caption for the Notebookpage containing the given widget.</summary>
<param name="child">The widget in the page.</param> <param name="child">The widget in the page.</param>
<returns>The tab label widget, or <see langword="null" /> if <returns>
not found.</returns> <para>
The text of the tab label, or <see langword="null" /> if
the widget does not have a tab label other than the
default tab label, or the tab label page is not a <see cref="T:Gtk.Label" />.
</para>
</returns>
<remarks> <remarks>
<para> <para>
Returns the tab label widget for the page child. <see langword="null" /> is returned if the child widget is not Returns the tab label text for the page child. <see langword="null" /> is returned if the child widget is not
in the notebook or if no tab label has specifically been in the notebook or if no tab label has specifically been
set for the <paramref name="child" />. set for the <paramref name="child" />.
</para> </para>
@ -124,13 +129,13 @@ class NotebookSample
<Parameter Name="child" Type="Gtk.Widget" /> <Parameter Name="child" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>Returns the label caption for a given widget.</summary> <summary>Returns the label caption for the menu of the notebookpage containing the given widget.</summary>
<param name="child">The child widget in the page</param> <param name="child">The child widget in the page</param>
<returns> <returns>
<para> <para>
The text of the tab label, or <see langword="null" /> if The text of the menu label, or <see langword="null" /> if
the widget does not have a menu label other than the the widget does not have a menu label other than the
default menu label, or the menu label widget is not a <see cref="T:Gtk.Label" />. default menu label, or the menu label page is not a <see cref="T:Gtk.Label" />.
</para> </para>
</returns> </returns>
<remarks> <remarks>
@ -328,10 +333,10 @@ class NotebookSample
<Parameter Name="child" Type="Gtk.Widget" /> <Parameter Name="child" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>Returns the label for the menu of the notebookpage containing the given widget.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">The child widget in the page.</param>
<returns>an object of type <see cref="T:Gtk.Widget" /></returns> <returns>The <see cref="T:Gtk.Widget" />, or null if the page does not have a menu label other than the default menu label.</returns>
<remarks>To be added</remarks> <remarks>the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be any <see cref="T:Gtk.Widget" /></remarks>
</Docs> </Docs>
</Member> </Member>
<Member MemberName="ReorderChild"> <Member MemberName="ReorderChild">
@ -369,10 +374,13 @@ class NotebookSample
<Parameter Name="child" Type="Gtk.Widget" /> <Parameter Name="child" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>Returns the <see cref="T:Gtk.Widget" /> for the Notebookpage containing the given widget.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">The child widget in the page.</param>
<returns>an object of type <see cref="T:Gtk.Widget" /></returns> <returns>The label, or null if the page does not have a tab label other than the default tab label.</returns>
<remarks>To be added</remarks> <remarks>
<para>
the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be any <see cref="T:Gtk.Widget" /></para>
</remarks>
</Docs> </Docs>
</Member> </Member>
<Member MemberName="GetNthPage"> <Member MemberName="GetNthPage">
@ -385,10 +393,10 @@ class NotebookSample
<Parameter Name="page_num" Type="System.Int32" /> <Parameter Name="page_num" Type="System.Int32" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>Returns the notebookpage with the given index.</summary>
<param name="page_num">an object of type <see cref="T:System.Int32" /></param> <param name="page_num">the zero-based index of the page to return. use -1 for the last page.</param>
<returns>an object of type <see cref="T:Gtk.Widget" /></returns> <returns>returns the <see cref="T:Gtk.Widget" /> with the given index.</returns>
<remarks>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="SetMenuLabelText"> <Member MemberName="SetMenuLabelText">
@ -402,10 +410,10 @@ class NotebookSample
<Parameter Name="menu_text" Type="System.String" /> <Parameter Name="menu_text" Type="System.String" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>sets the text of a menu label of a page.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">the page.</param>
<param name="menu_text">an object of type <see cref="T:System.String" /></param> <param name="menu_text">the text of the label.</param>
<remarks>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="PrependPage"> <Member MemberName="PrependPage">
@ -419,10 +427,10 @@ class NotebookSample
<Parameter Name="tab_label" Type="Gtk.Widget" /> <Parameter Name="tab_label" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>prepends a page.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">a <see cref="T:Gtk.Widget" /> t use as content of the page.</param>
<param name="tab_label">an object of type <see cref="T:Gtk.Widget" /></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>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="NextPage"> <Member MemberName="NextPage">
@ -433,8 +441,17 @@ class NotebookSample
</ReturnValue> </ReturnValue>
<Parameters /> <Parameters />
<Docs> <Docs>
<summary>To be added</summary> <summary>
<remarks>To be added</remarks> <para>
Switches to the next page.
</para>
</summary>
<remarks>
<para>
Switches to the next page. Nothing happens if the
current page is the last page.
</para>
</remarks>
</Docs> </Docs>
</Member> </Member>
<Member MemberName="PrependPageMenu"> <Member MemberName="PrependPageMenu">
@ -449,10 +466,10 @@ class NotebookSample
<Parameter Name="menu_label" Type="Gtk.Widget" /> <Parameter Name="menu_label" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>prepends a page, with a custom popup-label.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">the <see cref="T:Gtk.Widget" /> to use as contents of the page.</param>
<param name="tab_label">an object of type <see cref="T:Gtk.Widget" /></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">an object of type <see cref="T:Gtk.Widget" /></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>To be added</remarks>
</Docs> </Docs>
</Member> </Member>
@ -467,9 +484,9 @@ class NotebookSample
<Parameter Name="menu_label" Type="Gtk.Widget" /> <Parameter Name="menu_label" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>sets the menulabel of a page.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">the page</param>
<param name="menu_label">an object of type <see cref="T:Gtk.Widget" /></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>To be added</remarks>
</Docs> </Docs>
</Member> </Member>
@ -486,11 +503,11 @@ class NotebookSample
<Parameter Name="pack_type" Type="Gtk.PackType" /> <Parameter Name="pack_type" Type="Gtk.PackType" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>sets the packing of the tab label of a page.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">a page.</param>
<param name="expand">an object of type <see cref="T:System.Boolean" /></param> <param name="expand">sets true to expand the label.</param>
<param name="fill">an object of type <see cref="T:System.Boolean" /></param> <param name="fill">sets true to fill to fill the allocated area.</param>
<param name="pack_type">an object of type <see cref="T:Gtk.PackType" /></param> <param name="pack_type">sets <see cref="T:Gtk.PackType" /> of the label.</param>
<remarks>To be added</remarks> <remarks>To be added</remarks>
</Docs> </Docs>
</Member> </Member>
@ -542,7 +559,7 @@ class NotebookSample
<Parameters> <Parameters>
</Parameters> </Parameters>
<Docs> <Docs>
<summary>The index of the curent page. <summary>Sets or obtains the index of the curent page.
</summary> </summary>
<param name="value">the index of the page to switch to.</param> <param name="value">the index of the page to switch to.</param>
<returns>Returns the index of the current page .</returns> <returns>Returns the index of the current page .</returns>
@ -663,7 +680,7 @@ class NotebookSample
<Parameters> <Parameters>
</Parameters> </Parameters>
<Docs> <Docs>
<summary>The index of the curent page.</summary> <summary>Sets or obtains the index of the curent page.</summary>
<param name="value">The index of the page to switch to.</param> <param name="value">The index of the page to switch to.</param>
<returns>Returns the index of the curent page.</returns> <returns>Returns the index of the curent page.</returns>
<remarks>use <see cref="P:Gtk.Notebook.CurrentPage" /> instead.</remarks> <remarks>use <see cref="P:Gtk.Notebook.CurrentPage" /> instead.</remarks>
@ -693,7 +710,7 @@ class NotebookSample
<Parameters> <Parameters>
</Parameters> </Parameters>
<Docs> <Docs>
<summary>enables the popup menu.</summary> <summary>Indicates if the popup menu in enabled.</summary>
<param name="value">Use true to enable and false to disable.</param> <param name="value">Use true to enable and false to disable.</param>
<returns>Returns true if the popup menu is enabled and false if not.</returns> <returns>Returns true if the popup menu is enabled and false if not.</returns>
<remarks>if true and the user clicks with the right mouse button on the tabs, a menu with all the pages will be popped up. </remarks> <remarks>if true and the user clicks with the right mouse button on the tabs, a menu with all the pages will be popped up. </remarks>
@ -792,12 +809,12 @@ class NotebookSample
<Parameter Name="position" Type="System.Int32" /> <Parameter Name="position" Type="System.Int32" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>Insert a page into notebook at the given position, with a custom popup-label.</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">The <see cref="T:Gtk.Widget" /> to use as th content of the page.</param>
<param name="tab_label">an object of type <see cref="T:Gtk.Widget" /></param> <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">an object of type <see cref="T:Gtk.Widget" /></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">an object of type <see cref="T:System.Int32" /></param> <param name="position">the zero-based position to insert the page. use -1 make it the last page.</param>
<remarks>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="SetTabLabel"> <Member MemberName="SetTabLabel">
@ -811,10 +828,10 @@ class NotebookSample
<Parameter Name="tab_label" Type="Gtk.Widget" /> <Parameter Name="tab_label" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>Sets the label for the page containing a widget</summary>
<param name="child">an object of type <see cref="T:Gtk.Widget" /></param> <param name="child">the page</param>
<param name="tab_label">an object of type <see cref="T:Gtk.Widget" /></param> <param name="tab_label">the <see cref="T:Gtk.Widget" /> to use as label. use null for the default label.</param>
<remarks>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="NPages"> <Member MemberName="NPages">
@ -825,8 +842,8 @@ class NotebookSample
</ReturnValue> </ReturnValue>
<Docs> <Docs>
<summary>returns the amount of pages in this notebook.</summary> <summary>returns the amount of pages in this notebook.</summary>
<returns>a <see cref="T:System.Int32" /></returns> <returns>the amount of pages in the notebook.</returns>
<remarks>returns the amount of pages in this noteboo</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="CurrentPageWidget"> <Member MemberName="CurrentPageWidget">
@ -859,12 +876,12 @@ class NotebookSample
<Parameter Name="pack_type" Type="Gtk.PackType&amp;" RefType="out" /> <Parameter Name="pack_type" Type="Gtk.PackType&amp;" RefType="out" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>To be added</summary> <summary>Query the packing attributes for the tab label of the page containing child.</summary>
<param name="child">a <see cref="T:Gtk.Widget" /></param> <param name="child">the page.</param>
<param name="expand">a <see cref="T:System.Boolean&amp;" /></param> <param name="expand">indicates if expand is true or false.</param>
<param name="fill">a <see cref="T:System.Boolean&amp;" /></param> <param name="fill">indicates if fill is true or false.</param>
<param name="pack_type">a <see cref="T:Gtk.PackType&amp;" /></param> <param name="pack_type">returns to <see cref="T:Gtk.PackType;" />which is used.</param>
<remarks>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
<Member MemberName="GType"> <Member MemberName="GType">

View file

@ -153,9 +153,9 @@
</ReturnValue> </ReturnValue>
<Parameters /> <Parameters />
<Docs> <Docs>
<summary>To be added</summary> <summary>sets and obtains a linked list with all the radio buttons in the same group.</summary>
<returns>a <see cref="T:GLib.SList" /></returns> <returns>a <see cref="T:GLib.SList" /> with all the radio buttons in the same group as this radio button.</returns>
<remarks>To be added</remarks> <remarks />
</Docs> </Docs>
</Member> </Member>
</Members> </Members>