mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 17:05:27 +00:00
faaccd7e0b
new methods to allow arbitrary setup and teardown code around the managed call. When passing a type with "complicated" marshalling requirements as a ref or out param, first assign the value to a temporary variable (in Setup), then pass the temp as the ref or out param (in ToString), and then assign the new value back to the original argument (in Finish). * generator/Signal.cs: * generator/SignalHandler.cs: Update to generate correct glue for signals with "ref" or "out" params. (#70566) * generator/VirtualMethod.cs: Update for ManagedCallString change * generator/IGeneratable.cs: add comments explaining what each member does * gtk/Gtk.metadata: mark Editable.InsertText's "position" arg * pass-by-ref * sample/Size.cs: connect to the SizeRequested event and override it, to test/demo the changes svn path=/trunk/gtk-sharp/; revision=37854
91 lines
3.2 KiB
XML
91 lines
3.2 KiB
XML
<Type Name="TextInsertedArgs" FullName="Gtk.TextInsertedArgs">
|
|
<TypeSignature Language="C#" Value="public class TextInsertedArgs : GLib.SignalArgs" Maintainer="auto" />
|
|
<AssemblyInfo>
|
|
<AssemblyName>gtk-sharp</AssemblyName>
|
|
<AssemblyPublicKey>
|
|
</AssemblyPublicKey>
|
|
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
|
<AssemblyCulture>neutral</AssemblyCulture>
|
|
<Attributes />
|
|
</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>Event data.</summary>
|
|
<remarks>
|
|
<para>The following events invoke <see cref="T:Gtk.TextInsertedHandler" /> delegates which pass event data via this class:</para>
|
|
<para>
|
|
<list type="bullet">
|
|
<item>
|
|
<term>
|
|
<see cref="M:Gnome.Entry.TextInserted" />
|
|
</term>
|
|
</item>
|
|
<item>
|
|
<term>
|
|
<see cref="M:Gnome.FileEntry.TextInserted" />
|
|
</term>
|
|
</item>
|
|
<item>
|
|
<term>
|
|
<see cref="M:Gtk.Entry.TextInserted" />
|
|
</term>
|
|
</item>
|
|
</list>
|
|
</para>
|
|
</remarks>
|
|
</Docs>
|
|
<Base>
|
|
<BaseTypeName>GLib.SignalArgs</BaseTypeName>
|
|
</Base>
|
|
<Interfaces />
|
|
<Attributes />
|
|
<Members>
|
|
<Member MemberName=".ctor">
|
|
<MemberSignature Language="C#" Value="public TextInsertedArgs ();" />
|
|
<MemberType>Constructor</MemberType>
|
|
<ReturnValue />
|
|
<Parameters />
|
|
<Docs>
|
|
<summary>Public Constructor.</summary>
|
|
<returns>A new <see cref="T:Gtk.TextInsertedArgs" />.</returns>
|
|
<remarks>Create a new <see cref="T:Gtk.TextInsertedArgs" /> instance with this constructor if you need to invoke a <see cref="T:Gtk.TextInsertedHandler" /> delegate.</remarks>
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="Position">
|
|
<MemberSignature Language="C#" Value="public int Position { set; get; };" />
|
|
<MemberType>Property</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Int32</ReturnType>
|
|
</ReturnValue>
|
|
<Docs>
|
|
<summary>The position at which to insert the new text. On return, it should point to the position after the inserted text.</summary>
|
|
<returns>An integer, the insert position.</returns>
|
|
<remarks />
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="Length">
|
|
<MemberSignature Language="C#" Value="public int Length { get; };" />
|
|
<MemberType>Property</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Int32</ReturnType>
|
|
</ReturnValue>
|
|
<Docs>
|
|
<summary>The length of the inserted text.</summary>
|
|
<returns>An integer, the length of the inserted text.</returns>
|
|
<remarks />
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="Text">
|
|
<MemberSignature Language="C#" Value="public string Text { get; };" />
|
|
<MemberType>Property</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.String</ReturnType>
|
|
</ReturnValue>
|
|
<Docs>
|
|
<summary>The text that was inserted.</summary>
|
|
<returns>A string that was inserted.</returns>
|
|
<remarks />
|
|
</Docs>
|
|
</Member>
|
|
</Members>
|
|
</Type> |