Patch from Michal Dominik

svn path=/trunk/gtk-sharp/; revision=56307
This commit is contained in:
Miguel de Icaza 2006-01-31 02:50:11 +00:00
parent 134474301d
commit 5f1c7a56dd

View file

@ -8,7 +8,7 @@
</AssemblyInfo> </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> <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> <Docs>
<summary>Represents a Grab--- the part of a widget that can be dragged with the mouse.</summary> <summary>Grab methods allow you to limit the keyboard and mouse interaction to a particular widget or window.</summary>
<remarks /> <remarks />
</Docs> </Docs>
<Base> <Base>
@ -26,8 +26,8 @@
<Parameter Name="widget" Type="Gtk.Widget" /> <Parameter Name="widget" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>Adds a Grab to the widget.</summary> <summary>Makes the specified widget the currently grabbed widget. This means that interaction with other widgets in the same application is blocked and mouse as well as keyboard events are delivered to this widget.</summary>
<param name="widget">a <see cref="T:Gtk.Widget" /></param> <param name="widget">The <see cref="T:Gtk.Widget" /> that grabs keyboard and pointer events.</param>
<remarks /> <remarks />
</Docs> </Docs>
</Member> </Member>
@ -41,8 +41,8 @@
<Parameter Name="widget" Type="Gtk.Widget" /> <Parameter Name="widget" Type="Gtk.Widget" />
</Parameters> </Parameters>
<Docs> <Docs>
<summary>Removes a Grab from the widget.</summary> <summary>Removes the grab from the given widget. You have to pair calls to <see cref="T:Gtk.Grab.Add" /> and <see cref="T:Gtk.Grab.Remove" />.</summary>
<param name="widget">a <see cref="T:Gtk.Widget" /></param> <param name="widget">The <see cref="T:Gtk.Widget" /> which gives up the grab.</param>
<remarks /> <remarks />
</Docs> </Docs>
</Member> </Member>
@ -52,7 +52,7 @@
<ReturnValue /> <ReturnValue />
<Parameters /> <Parameters />
<Docs> <Docs>
<summary>Basic constructor.</summary> <summary>Don't use.</summary>
<remarks /> <remarks />
</Docs> </Docs>
</Member> </Member>
@ -63,10 +63,10 @@
<ReturnType>Gtk.Widget</ReturnType> <ReturnType>Gtk.Widget</ReturnType>
</ReturnValue> </ReturnValue>
<Docs> <Docs>
<summary>Gets the current Widget for this Grab object.</summary> <summary>Queries the current grab of the default window group.</summary>
<value>a <see cref="T:Gtk.Widget" /></value> <value>A <see cref="T:Gtk.Widget" /> which currently has the grab or <see langword="null" /> if no grab is active.</value>
<remarks /> <remarks />
</Docs> </Docs>
</Member> </Member>
</Members> </Members>
</Type> </Type>