mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 05:36:56 +00:00
New from jluke
svn path=/trunk/gtk-sharp/; revision=30451
This commit is contained in:
parent
01ceb1afbe
commit
41c578d85a
|
@ -29,7 +29,7 @@
|
||||||
<Parameter Name="gc" Type="Gdk.GC" />
|
<Parameter Name="gc" Type="Gdk.GC" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>Releases the <see cref="T:Gdk.GC" /> that is passed in.</summary>
|
||||||
<param name="gc">a <see cref="T:Gdk.GC" /></param>
|
<param name="gc">a <see cref="T:Gdk.GC" /></param>
|
||||||
<remarks>To be added</remarks>
|
<remarks>To be added</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
<Parameter Name="values_mask" Type="Gdk.GCValuesMask" />
|
<Parameter Name="values_mask" Type="Gdk.GCValuesMask" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>Returns a <see cref="T:Gdk.GC" /> with the specified values.</summary>
|
||||||
<param name="depth">a <see cref="T:System.Int32" /></param>
|
<param name="depth">a <see cref="T:System.Int32" /></param>
|
||||||
<param name="colormap">a <see cref="T:Gdk.Colormap" /></param>
|
<param name="colormap">a <see cref="T:Gdk.Colormap" /></param>
|
||||||
<param name="values">a <see cref="T:Gdk.GCValues" /></param>
|
<param name="values">a <see cref="T:Gdk.GCValues" /></param>
|
||||||
|
|
|
@ -149,9 +149,9 @@
|
||||||
<ReturnType>Gdk.Event</ReturnType>
|
<ReturnType>Gdk.Event</ReturnType>
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>Obtains a copy of the event currently being processed by Gtk#.</summary>
|
||||||
<returns>a <see cref="T:Gdk.Event" /></returns>
|
<returns>a <see cref="T:Gdk.Event" /></returns>
|
||||||
<remarks>To be added</remarks>
|
<remarks>For example, if you get a <see cref="E:Gtk.Button.Clicked" /> event from <see cref="T:Gtk.Button" />, the current event will be the <see cref="T:Gdk.EventButton" /> that triggered the <see cref="E:Gtk.Button.Clicked" /> signal. If there is no current event, the function returns <see langword="null" />.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName="CurrentEventTime">
|
<Member MemberName="CurrentEventTime">
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
<ReturnType>System.UInt32</ReturnType>
|
<ReturnType>System.UInt32</ReturnType>
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>Returns a uint representing the unix time of the current event.</summary>
|
<summary>Returns a <see cref="T:System.UInt32" /> representing the unix time of the current event.</summary>
|
||||||
<returns>Returns the unix time for the current event.</returns>
|
<returns>Returns the unix time for the current event.</returns>
|
||||||
<remarks>None.</remarks>
|
<remarks>None.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
|
@ -319,9 +319,22 @@
|
||||||
</ReturnValue>
|
</ReturnValue>
|
||||||
<Parameters />
|
<Parameters />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>To be added</summary>
|
<summary>Checks if any events are pending.</summary>
|
||||||
<returns>a <see cref="T:System.Boolean" /></returns>
|
<returns>a <see cref="T:System.Boolean" /></returns>
|
||||||
<remarks>To be added</remarks>
|
<remarks>This can be used to update the GUI and invoke timeouts etc. while doing some time intensive computation.
|
||||||
|
|
||||||
|
<example>
|
||||||
|
<code lang="C#">
|
||||||
|
/* computation going on */
|
||||||
|
...
|
||||||
|
while (Gtk.Global.EventsPending)
|
||||||
|
{
|
||||||
|
Gtk.Application.RunIteration ();
|
||||||
|
}
|
||||||
|
...
|
||||||
|
/* computation continued */
|
||||||
|
</code>
|
||||||
|
</example></remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName="TypeClass">
|
<Member MemberName="TypeClass">
|
||||||
|
|
Loading…
Reference in a new issue