webservice contributions from deejay1@srem.org

svn path=/trunk/gtk-sharp/; revision=100125
This commit is contained in:
Mike Kestner 2008-04-08 18:23:04 +00:00
parent 1c0083d2ca
commit 28a6603695
4 changed files with 12 additions and 10 deletions

View File

@ -14,7 +14,7 @@
<see cref="T:Gtk.Image" /> can be used as a container for a <see cref="T:Gdk.Pixbuf" />
or a <see cref="T:Gdk.PixbufAnimation" /> to get custom interfaces.
<see cref="T:Gtk.Image" /> cannot launch events, it is necessary to
include it inside a <see cref="T:Gtk.EventBox" /> for that purpose.
include it inside an <see cref="T:Gtk.EventBox" /> for that purpose.
</remarks>
</Docs>
<Base>
@ -860,4 +860,4 @@ If the value is <see langword="null" />, the image will be looked up on the call
</Docs>
</Member>
</Members>
</Type>
</Type>

View File

@ -83,12 +83,14 @@
pass <see langword="null" /> to get an empty label
widget.
</summary>
<param name="str">The text of the label</param>
<param name="str">The text of the label. Pass <see langword="null" /> for no text.</param>
<remarks>
<para>
Creates a new label with the given text inside it. You can
pass <see langword="null" /> to get an empty label
widget.
widget. If <paramref name="str" /> contains an underscore,
the <see cref="P:Gtk.Lable.UseUnderline" /> property is
automatically set to <see langword="true" />.
</para>
</remarks>
</Docs>

View File

@ -489,7 +489,7 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
<Parameters>
</Parameters>
<Docs>
<summary>Sets or obtains yhe width of the horizontal border arround the tabs.</summary>
<summary>Sets or obtains the width of the horizontal border around the tabs.</summary>
<value>Returns the horizontal width of the border.</value>
<remarks>Default value is 2.</remarks>
</Docs>
@ -533,7 +533,7 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
<Parameters>
</Parameters>
<Docs>
<summary>Sets or obtains the width of the vertical border arround the tabs.</summary>
<summary>Sets or obtains the width of the vertical border around the tabs.</summary>
<value>Returns the vertical width of the border.</value>
<remarks>Default value is 2.</remarks>
</Docs>
@ -555,7 +555,7 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
<Parameters>
</Parameters>
<Docs>
<summary>Sets the width of the border arround the tabs..</summary>
<summary>Sets the width of the border around the tabs..</summary>
<value />
<remarks>Default value is 2. This is a easy the change <see cref="P:Gtk.Notebook.TabHborder" /> and <see cref="P:Gtk.Notebook.TabVborder" /> at the same time. Use those properties to read the width.</remarks>
</Docs>
@ -615,7 +615,7 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
<Parameters>
</Parameters>
<Docs>
<summary>Indicates if the popup menu in enabled.</summary>
<summary>Indicates if the popup menu is enabled.</summary>
<value>Returns true if the popup menu is enabled and false if not.</value>
<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>
</Docs>
@ -1026,7 +1026,7 @@ Don't forget to call the Show method on the widget or else the new page will not
<Parameter Name="position" Type="System.Int32" />
</Parameters>
<Docs>
<summary>Inserts a page into the notebook</summary>
<summary>Inserts a page into the notebook at the given position.</summary>
<param name="child">The <see cref="T:Gtk.Widget" /> to use as
the contents of the page.</param>
<param name="tab_label">

View File

@ -998,7 +998,7 @@ Console.WriteLine("Width: {0}, Height: {1}" , width , height);</code>
<value>The <paramref name="window" /> position. See also <see cref="T:Gtk.WindowPosition" />.</value>
<remarks>
<para>
This property will alow you to define where a <paramref name="window" /> must be displayed on the screen. It work with the <see cref="T:Gtk.WindowPosition" /> enum, so maybe you should check it before use it.
This property will alow you to define where a <paramref name="window" /> should be displayed on the screen. Position values are described in the <see cref="T:Gtk.WindowPosition" /> definition.
</para>
</remarks>
</Docs>