mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 18:35:31 +00:00
2004-01-08 John Luke <jluke@cfl.rr.com>
* en/Gtk/RadioButton.xml: * en/Gtk/Notebook.xml: * en/Gtk/NotebookPage.xml: * en/GConf/ClientBase.xml: update for recent cvs changes svn path=/trunk/gtk-sharp/; revision=21990
This commit is contained in:
parent
a5b70aa2f9
commit
19629688fa
|
@ -1,3 +1,10 @@
|
|||
2004-01-08 John Luke <jluke@cfl.rr.com>
|
||||
|
||||
* en/Gtk/RadioButton.xml:
|
||||
* en/Gtk/Notebook.xml:
|
||||
* en/Gtk/NotebookPage.xml:
|
||||
* en/GConf/ClientBase.xml: update for recent cvs changes
|
||||
|
||||
2004-01-08 John Luke <jluke@cfl.rr.com>
|
||||
|
||||
* */*/.xml: run updater
|
||||
|
|
|
@ -53,13 +53,13 @@
|
|||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName=".ctor">
|
||||
<MemberSignature Language="C#" Value="public ClientBase ();" />
|
||||
<MemberSignature Language="C#" Value="protected ClientBase ();" />
|
||||
<MemberType>Constructor</MemberType>
|
||||
<ReturnValue />
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<returns>To be added: an object of type 'GConf.ClientBase'</returns>
|
||||
<returns>a <see cref="T:GConf.ClientBase" /></returns>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
|
|
@ -703,8 +703,9 @@
|
|||
<Docs>
|
||||
<summary>Creates a new <see cref="T:Gtk.Label" /> without text.</summary>
|
||||
<returns>a <see cref="T:Gtk.Label" /></returns>
|
||||
<remarks></remarks>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
</Type>
|
||||
</Type>
|
|
@ -1049,5 +1049,21 @@ class NotebookSample
|
|||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="PageNum">
|
||||
<MemberSignature Language="C#" Value="public int PageNum (Gtk.Widget child);" />
|
||||
<MemberType>Method</MemberType>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Int32</ReturnType>
|
||||
</ReturnValue>
|
||||
<Parameters>
|
||||
<Parameter Name="child" Type="Gtk.Widget" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<param name="child">a <see cref="T:Gtk.Widget" /></param>
|
||||
<returns>a <see cref="T:System.Int32" /></returns>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
</Type>
|
|
@ -30,34 +30,6 @@
|
|||
</Interfaces>
|
||||
<Attributes />
|
||||
<Members>
|
||||
<Member MemberName="Num">
|
||||
<MemberSignature Language="C#" Value="public static int Num (Gtk.Notebook notebook, Gtk.Widget child);" />
|
||||
<MemberType>Method</MemberType>
|
||||
<ReturnValue>
|
||||
<ReturnType>System.Int32</ReturnType>
|
||||
</ReturnValue>
|
||||
<Parameters>
|
||||
<Parameter Name="notebook" Type="Gtk.Notebook" />
|
||||
<Parameter Name="child" Type="Gtk.Widget" />
|
||||
</Parameters>
|
||||
<Docs>
|
||||
<summary>Returns the number of the NotebookPage containing the
|
||||
widget 'child' in the Notebook.
|
||||
</summary>
|
||||
<param name="notebook">The Notebook that contains the widget 'child'.</param>
|
||||
<param name="child">The widget we are looking for.</param>
|
||||
<returns>The number of the NotebookPage containing the given
|
||||
widget. -1 if the widget is not found in the Notebook.
|
||||
</returns>
|
||||
<remarks>
|
||||
<para>
|
||||
Returns the number of the NotebookPage containing a
|
||||
given widget in a given Notebook or -1 if the widget is not
|
||||
found.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName=".ctor">
|
||||
<MemberSignature Language="C#" Value="public NotebookPage (IntPtr raw);" />
|
||||
<MemberType>Constructor</MemberType>
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
<summary>A choice from multiple buttons in a group.</summary>
|
||||
<remarks>
|
||||
<para>A single radio button performs the same basic function as a <see cref="Gtk.CheckButton" />, as its position in the object hierarchy reflects. It is only when multiple radio buttons are grouped together that they become a different user interface component in their own right.</para>
|
||||
<para>Every radio button is a member of some group of radio buttons. When one is selected, all other radio buttons in the same group are deselected. A <see cref="T:Gtk.RadioButton" /> is one way of giving the user a choice from many options.</para>
|
||||
<para>Radio button widgets are created with <see cref="C:Gtk.RadioButton(System.String)" />, if this is the first radio button in a group. In subsequent calls, the group you wish to add this button to should be passed as an argument.</para>
|
||||
</remarks>
|
||||
<para>Every radio button is a member of some group of radio buttons. When one is selected, all other radio buttons in the same group are deselected. A <see cref="T:Gtk.RadioButton" /> is one way of giving the user a choice from many options.</para>
|
||||
<para>Radio button widgets are created with <see cref="C:Gtk.RadioButton(System.String)" />, if this is the first radio button in a group. In subsequent calls, the group you wish to add this button to should be passed as an argument.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Base>
|
||||
<BaseTypeName>Gtk.CheckButton</BaseTypeName>
|
||||
|
@ -140,5 +140,18 @@
|
|||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Group">
|
||||
<MemberSignature Language="C#" Value="public GLib.SList Group { set; get; };" />
|
||||
<MemberType>Property</MemberType>
|
||||
<ReturnValue>
|
||||
<ReturnType>GLib.SList</ReturnType>
|
||||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>To be added</summary>
|
||||
<returns>a <see cref="T:GLib.SList" /></returns>
|
||||
<remarks>To be added</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
</Type>
|
||||
</Type>
|
|
@ -1955,4 +1955,4 @@ public class TreeViewDemo {
|
|||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
</Type>
|
||||
</Type>
|
|
@ -4523,4 +4523,4 @@
|
|||
</Docs>
|
||||
</Member>
|
||||
</Members>
|
||||
</Type>
|
||||
</Type>
|
Loading…
Reference in a new issue