Patches from Todd Berman

svn path=/trunk/gtk-sharp/; revision=30249
This commit is contained in:
Miguel de Icaza 2004-06-23 23:23:24 +00:00
parent 1dc455cd70
commit 872f6f1667
3 changed files with 25 additions and 14 deletions

View File

@ -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>An enumeration that describes the mode of an input device.</summary>
<remarks>To be added</remarks>
</Docs>
<Base>
@ -37,7 +37,7 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<summary>The device is disabled and will not report any events.</summary>
<remarks>To be added</remarks>
</Docs>
</Member>
@ -49,7 +49,7 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<summary>The device is enabled. The device's coordinate space maps to the entire screen.</summary>
<remarks>To be added</remarks>
</Docs>
</Member>
@ -61,7 +61,7 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<summary>The device is enabled. The device's coordinate space is mapped to a single window. The manner in which this window is chosen is undefined, but it will typically be the same way in which the focus window for key events is determined.</summary>
<remarks>To be added</remarks>
</Docs>
</Member>

View File

@ -78,10 +78,12 @@
<Parameter Name="evnt" Type="Gdk.Event" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="widget">a <see cref="T:Gtk.Widget" /></param>
<param name="evnt">a <see cref="T:Gdk.Event" /></param>
<remarks>To be added</remarks>
<summary>Propagate an event from one widget to another.</summary>
<param name="widget">
<see cref="T:Gtk.Widget" /> to propagate event to.</param>
<param name="evnt">
<see cref="T:Gdk.Event" /> to propagate.</param>
<remarks>This function should be rarely used, look into event handler overriding instead.</remarks>
</Docs>
</Member>
<Member MemberName="BindingsActivate">
@ -159,9 +161,9 @@
<ReturnType>System.UInt32</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added</summary>
<returns>a <see cref="T:System.UInt32" /></returns>
<remarks>To be added</remarks>
<summary>Returns a uint representing the unix time of the current event.</summary>
<returns>Returns the unix time for the current event.</returns>
<remarks>None.</remarks>
</Docs>
</Member>
<Member MemberName="RgbToHsv">

View File

@ -660,9 +660,18 @@
<Parameter Name="clipboard" Type="Gtk.Clipboard" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="clipboard">an object of type <see cref="T:Gtk.Clipboard" /></param>
<remarks>To be added</remarks>
<summary>Copies the buffer's selected text to the given <see cref="T:Gtk.Clipboard" />.</summary>
<param name="clipboard">The <see cref="T:Gtk.Clipboard" /> to copy the text to.</param>
<remarks>
<para>Copying a <see cref="T:Gtk.TextView" />'s selected text:</para>
<example>
<code lang="C#"> void Copy (Gtk.TextView view) {
Gtk.TextBuffer buffer = view.Buffer;
Gtk.Clipboard board = Clipboard.Get (Gdk.Selection.Clipboard);
buffer.CopyClipboard (board);
} </code>
</example>
</remarks>
</Docs>
</Member>
<Member MemberName="MoveMark">