mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 05:55:33 +00:00
41eed13456
svn path=/trunk/gtk-sharp/; revision=30356
180 lines
6.8 KiB
XML
180 lines
6.8 KiB
XML
<Type Name="EditableText" FullName="Atk.EditableText">
|
|
<TypeSignature Language="C#" Value="public abstract interface EditableText;" Maintainer="auto" />
|
|
<AssemblyInfo>
|
|
<AssemblyName>atk-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>The ATK interface implemented by components containing user-editable text content</summary>
|
|
<remarks>
|
|
<para>
|
|
<see cref="T:Atk.EditableText" /> should be implemented by UI components which
|
|
contain text which the user can edit, via the <see
|
|
cref="T:Atk.Object" /> corresponding to that component (see <see cref="T:Atk.Object" />).
|
|
</para>
|
|
<para>
|
|
<see cref="T:Atk.EditableText" /> is a subclass of <see
|
|
cref="T:Atk.Text" />, and as such, an
|
|
object which implements AtkEditableText is by definition an
|
|
<see cref="T:Atk.Text" /> implementor as well.
|
|
</para>
|
|
</remarks>
|
|
</Docs>
|
|
<Base />
|
|
<Interfaces>
|
|
<Interface>
|
|
<InterfaceName>GLib.IWrapper</InterfaceName>
|
|
</Interface>
|
|
</Interfaces>
|
|
<Attributes />
|
|
<Members>
|
|
<Member MemberName="DeleteText">
|
|
<MemberSignature Language="C#" Value="public virtual void DeleteText (int start_pos, int end_pos);" />
|
|
<MemberType>Method</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Void</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
<Parameter Name="start_pos" Type="System.Int32" />
|
|
<Parameter Name="end_pos" Type="System.Int32" />
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Delete text</summary>
|
|
<param name="start_pos">start position</param>
|
|
<param name="end_pos">end position</param>
|
|
<remarks>
|
|
<para>
|
|
This only deletes text up to, but not including <paramref
|
|
name="end_pos" />.
|
|
</remarks>
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="PasteText">
|
|
<MemberSignature Language="C#" Value="public virtual void PasteText (int position);" />
|
|
<MemberType>Method</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Void</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
<Parameter Name="position" Type="System.Int32" />
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Paste text from clipboard to specified position.</summary>
|
|
<param name="position">position to paste</param>
|
|
<remarks />
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="CutText">
|
|
<MemberSignature Language="C#" Value="public virtual void CutText (int start_pos, int end_pos);" />
|
|
<MemberType>Method</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Void</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
<Parameter Name="start_pos" Type="System.Int32" />
|
|
<Parameter Name="end_pos" Type="System.Int32" />
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Cut text</summary>
|
|
<param name="start_pos">start position</param>
|
|
<param name="end_pos">end position</param>
|
|
<remarks>
|
|
<para>
|
|
This method only cuts the text up to <paremref
|
|
name="end_pos" />, it does not include the text at that position.
|
|
</para>
|
|
</remarks>
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="CopyText">
|
|
<MemberSignature Language="C#" Value="public virtual void CopyText (int start_pos, int end_pos);" />
|
|
<MemberType>Method</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Void</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
<Parameter Name="start_pos" Type="System.Int32" />
|
|
<Parameter Name="end_pos" Type="System.Int32" />
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Copy text</summary>
|
|
<param name="start_pos">start position</param>
|
|
<param name="end_pos">end position</param>
|
|
<remarks>
|
|
<para>
|
|
This method only copies the text up to <paremref
|
|
name="end_pos" />, it does not include the text at that position.
|
|
</para>
|
|
</remarks>
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="SetRunAttributes">
|
|
<MemberSignature Language="C#" Value="public virtual bool SetRunAttributes (GLib.SList attrib_set, int start_offset, int end_offset);" />
|
|
<MemberType>Method</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Boolean</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
<Parameter Name="attrib_set" Type="GLib.SList" />
|
|
<Parameter Name="start_offset" Type="System.Int32" />
|
|
<Parameter Name="end_offset" Type="System.Int32" />
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Sets the attributes for a specified range.</summary>
|
|
<param name="attrib_set">an <see cref="T:Atk.AttributeSet" /></param>
|
|
<param name="start_offset">start of range in which to set attributes</param>
|
|
<param name="end_offset">end of range in which to set attributes</param>
|
|
<returns>
|
|
<see langword="true" /> if attributes successfully set for
|
|
the specified range, otherwise <see langword="false"/>
|
|
</returns>
|
|
<remarks>
|
|
<para>
|
|
Sets the attributes for a specified range. See the
|
|
ATK_ATTRIBUTE macros (such as ATK_ATTRIBUTE_LEFT_MARGIN)
|
|
for examples of attributes that can be set. Note that
|
|
other attributes that do not have corresponding
|
|
ATK_ATTRIBUTE macros may also be set for certain text
|
|
widgets.
|
|
</para>
|
|
</remarks>
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="TextContents">
|
|
<MemberSignature Language="C#" Value="public virtual string TextContents { set; };" />
|
|
<MemberType>Property</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.String</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Set text contents of text.</summary>
|
|
<param name="value"> string to set for text contents of text</param>
|
|
<returns>contents of text</returns>
|
|
<remarks />
|
|
</Docs>
|
|
</Member>
|
|
<Member MemberName="InsertText">
|
|
<MemberSignature Language="C#" Value="public virtual int InsertText (string str1ng);" />
|
|
<MemberType>Method</MemberType>
|
|
<ReturnValue>
|
|
<ReturnType>System.Int32</ReturnType>
|
|
</ReturnValue>
|
|
<Parameters>
|
|
<Parameter Name="str1ng" Type="System.String" />
|
|
</Parameters>
|
|
<Docs>
|
|
<summary>Insert text at a given position.</summary>
|
|
<param name="str1ng">the text to insert</param>
|
|
<returns>the position after the text has been inserted</returns>.
|
|
<remarks />
|
|
</Docs>
|
|
</Member>
|
|
</Members>
|
|
</Type> |