mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 13:25:37 +00:00
formatting fixes from updater rerun
svn path=/trunk/gtk-sharp/; revision=49649
This commit is contained in:
parent
bc2d3e81e0
commit
a461ba8984
|
@ -238,7 +238,7 @@ void LongComputation ()
|
||||||
<remarks>To be added.</remarks>
|
<remarks>To be added.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName="Invoke">
|
<Member MemberName="Invoke">
|
||||||
<MemberSignature Language="C#" Value="public static void Invoke (EventHandler d);" />
|
<MemberSignature Language="C#" Value="public static void Invoke (EventHandler d);" />
|
||||||
<MemberType>Method</MemberType>
|
<MemberType>Method</MemberType>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
|
@ -256,16 +256,13 @@ void LongComputation ()
|
||||||
multiple threads to perform operations on Gtk objects as it
|
multiple threads to perform operations on Gtk objects as it
|
||||||
the toolkit is not thread-safe.
|
the toolkit is not thread-safe.
|
||||||
<para>
|
<para>
|
||||||
This mechanism is simpler to use than <see
|
This mechanism is simpler to use than <see cref="T:Gtk.ThreadNotify" /> since it does not require the
|
||||||
cref="T:Gtk.ThreadNotify"/> since it does not require the
|
|
||||||
creation of a notifier per event.
|
creation of a notifier per event.
|
||||||
</para>
|
</para><para>
|
||||||
<para>
|
|
||||||
This is particularly useful with C# 2.0 as it is possible
|
This is particularly useful with C# 2.0 as it is possible
|
||||||
to use anonymous methods with it, for example:
|
to use anonymous methods with it, for example:
|
||||||
</para>
|
</para><example>
|
||||||
<example>
|
<code lang="C#">
|
||||||
<code lang="C#">
|
|
||||||
using Gtk;
|
using Gtk;
|
||||||
using Gdk;
|
using Gdk;
|
||||||
using System;
|
using System;
|
||||||
|
@ -314,11 +311,10 @@ void LongComputation ()
|
||||||
args.RetVal = true;
|
args.RetVal = true;
|
||||||
}
|
}
|
||||||
</code>
|
</code>
|
||||||
</example>
|
</example></remarks>
|
||||||
</remarks>
|
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName="Invoke">
|
<Member MemberName="Invoke">
|
||||||
<MemberSignature Language="C#" Value="public static void Invoke (object sender, EventArgs args, EventHandler d);" />
|
<MemberSignature Language="C#" Value="public static void Invoke (object sender, EventArgs args, EventHandler d);" />
|
||||||
<MemberType>Method</MemberType>
|
<MemberType>Method</MemberType>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
|
@ -340,15 +336,12 @@ void LongComputation ()
|
||||||
multiple threads to perform operations on Gtk objects as it
|
multiple threads to perform operations on Gtk objects as it
|
||||||
the toolkit is not thread-safe.
|
the toolkit is not thread-safe.
|
||||||
<para>
|
<para>
|
||||||
This mechanism is simpler to use than <see
|
This mechanism is simpler to use than <see cref="T:Gtk.ThreadNotify" /> since it does not require the
|
||||||
cref="T:Gtk.ThreadNotify"/> since it does not require the
|
|
||||||
creation of a notifier per event.
|
creation of a notifier per event.
|
||||||
</para>
|
</para><para>
|
||||||
<para>
|
|
||||||
This is particularly useful with C# 2.0 as it is possible
|
This is particularly useful with C# 2.0 as it is possible
|
||||||
to use anonymous methods with it, for example:
|
to use anonymous methods with it, for example:
|
||||||
</para>
|
</para><example>
|
||||||
<example>
|
|
||||||
<code lang="C#">
|
<code lang="C#">
|
||||||
using Gtk;
|
using Gtk;
|
||||||
using Gdk;
|
using Gdk;
|
||||||
|
@ -398,8 +391,7 @@ void LongComputation ()
|
||||||
args.RetVal = true;
|
args.RetVal = true;
|
||||||
}
|
}
|
||||||
</code>
|
</code>
|
||||||
</example>
|
</example></remarks>
|
||||||
</remarks>
|
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
</Members>
|
</Members>
|
||||||
|
|
|
@ -200,7 +200,8 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
||||||
<Parameters />
|
<Parameters />
|
||||||
<Docs>
|
<Docs>
|
||||||
<summary>Removes all nodes from the store.</summary>
|
<summary>Removes all nodes from the store.</summary>
|
||||||
<remarks></remarks>
|
<remarks>
|
||||||
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
</Members>
|
</Members>
|
||||||
|
|
|
@ -11,11 +11,9 @@
|
||||||
<summary>Multi-threaded integration with Gtk support.</summary>
|
<summary>Multi-threaded integration with Gtk support.</summary>
|
||||||
<remarks>
|
<remarks>
|
||||||
<para>
|
<para>
|
||||||
You should consider using <see
|
You should consider using <see cref="M:Gtk.Application.Invoke" /> instead of this class as it
|
||||||
cref="M:Gtk.Application.Invoke"/> instead of this class as it
|
|
||||||
provides a simpler interface.
|
provides a simpler interface.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>The ThreadNotify class is used to invoke methods in the Gtk+ thread. Since Gtk is not a thread-safe toolkit, only a single thread at a time might be making calls into Gtk.</para>
|
<para>The ThreadNotify class is used to invoke methods in the Gtk+ thread. Since Gtk is not a thread-safe toolkit, only a single thread at a time might be making calls into Gtk.</para>
|
||||||
<para>Typically applications will be executing the main Gtk+ main loop and when threads are done processing work, they invoke <see cref="M:Gtk.ThreadNotify.WakeupMain()" /> to invoke a method on the main Gtk+ thread.</para>
|
<para>Typically applications will be executing the main Gtk+ main loop and when threads are done processing work, they invoke <see cref="M:Gtk.ThreadNotify.WakeupMain()" /> to invoke a method on the main Gtk+ thread.</para>
|
||||||
<example>
|
<example>
|
||||||
|
|
|
@ -81,6 +81,11 @@
|
||||||
the individual column values.
|
the individual column values.
|
||||||
</remarks>
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
|
<Attributes>
|
||||||
|
<Attribute>
|
||||||
|
<AttributeName>System.Obsolete(Message="This is no longer needed; it gets detected by Gtk#", IsError=False)</AttributeName>
|
||||||
|
</Attribute>
|
||||||
|
</Attributes>
|
||||||
</Member>
|
</Member>
|
||||||
<Member MemberName="ListOnly">
|
<Member MemberName="ListOnly">
|
||||||
<MemberSignature Language="C#" Value="public bool ListOnly { set; get; };" />
|
<MemberSignature Language="C#" Value="public bool ListOnly { set; get; };" />
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
<Interfaces />
|
<Interfaces />
|
||||||
<Attributes>
|
<Attributes>
|
||||||
<Attribute>
|
<Attribute>
|
||||||
<AttributeName>System.AttributeUsage(AllowMultiple=True, Inherited=True, ValidOn=System.AttributeTargets.Property)</AttributeName>
|
<AttributeName>System.AttributeUsage(AllowMultiple=True, Inherited=True, ValidOn=System.AttributeTargets.Property|Field)</AttributeName>
|
||||||
</Attribute>
|
</Attribute>
|
||||||
</Attributes>
|
</Attributes>
|
||||||
<Members>
|
<Members>
|
||||||
|
|
Loading…
Reference in a new issue