[Mono-docs-list] Re: [Gtk-sharp-list] Documentation effort: Documenting Gtk#

Lee Mallabone mono-docs@fonicmonkey.net
15 Feb 2003 12:06:57 -0500


--=-9oLRvxl7H8USbX8scXgP
Content-Type: text/plain
Content-Transfer-Encoding: 7bit



Please find attached my first attempt at documenting Gtk.Entry.

Comments, constructive criticism appreciated...

There are 2 incomplete sections - PopulateHandler, and ScrollOffset because I couldn't figure them out well enough to write decent documentation. Help appreciated.

I don't have commit privileges, so if the appropriate person could reject/commit this, I'd be grateful.

If there aren't any glaring problems with this doc, I'll start the Gtk.*Box classes next.

Cheers,

Lee.


--=-9oLRvxl7H8USbX8scXgP
Content-Disposition: attachment; filename=Entry.xml
Content-Type: text/xml; name=Entry.xml; charset=ANSI_X3.4-1968
Content-Transfer-Encoding: 7bit

<Type Name="Entry" FullName="Gtk.Entry" mono-doc-maintainer="Lee Mallabone">
  <TypeSignature Language="C#" Value="public class Entry : Gtk.Widget, Editable, IWrapper, CellEditable, Implementor, IWrapper, IWrapper, IDisposable" Maintainer="auto" />
  <AssemblyInfo>
    <AssemblyName>gtk-sharp</AssemblyName>
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
    <Attributes />
  </AssemblyInfo>
  <ThreadSafetyStatement>Entry is not a thread safe object</ThreadSafetyStatement>
  <Docs>
    <summary>An Entry is a single-line text entry widget.</summary>
    <remarks><para>This widget should be used to retrieve small amounts of text from the user. A fairly large set of key bindings are supported by default. If the entered text is longer than the allocation of the widget, the widget will scroll so that the cursor position is visible.</para>
<para>
See also the <see cref="T:Gtk.TextView"/> widget for displaying and editing large amounts of text.
</para>
</remarks>
  </Docs>
  <Base>
    <BaseTypeName>Gtk.Widget</BaseTypeName>
  </Base>
  <Interfaces>
    <Interface>
      <InterfaceName>Gtk.Editable</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>GLib.IWrapper</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>Gtk.CellEditable</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>Atk.Implementor</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>GLib.IWrapper</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>GLib.IWrapper</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>System.IDisposable</InterfaceName>
    </Interface>
  </Interfaces>
  <Attributes />
  <Members>
    <Member MemberName="InsertText">
      <MemberSignature Language="C#" Value="public int InsertText (string new_text);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="new_text" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>Add arbitrary text to the entry.</summary>
        <param name="new_text">the text to add</param>
        <returns>The number of characters added</returns>
        <remarks>Use this method to insert a string at the current CursorPosition.</remarks>
      </Docs>
    </Member>
    <Member MemberName="StartEditing">
      <MemberSignature Language="C#" Value="public virtual void StartEditing (Gdk.Event evnt);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="evnt" Type="Gdk.Event" />
      </Parameters>
      <Docs>
        <summary>Specific implementation of Gtk.CellEditable.StartEditing for the Entry widget.</summary>
        <param name="evnt"></param>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="FinishEditing">
      <MemberSignature Language="C#" Value="public virtual void FinishEditing ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Specific implementation of Gtk.CellEditable.FinishEditing for the Entry widget.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="RemoveWidget">
      <MemberSignature Language="C#" Value="public virtual void RemoveWidget ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Specific implementation of Gtk.CellEditable.RemoveWidget for the Entry widget.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="SelectRegion">
      <MemberSignature Language="C#" Value="public virtual void SelectRegion (int start, int end);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="start" Type="System.Int32" />
        <Parameter Name="end" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>Specific implementation of Gtk.Editable.SelectRegion for the Entry widget.</summary>
        <param name="start"></param>
        <param name="end"></param>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="GetChars">
      <MemberSignature Language="C#" Value="public virtual string GetChars (int start_pos, int end_pos);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="start_pos" Type="System.Int32" />
        <Parameter Name="end_pos" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>Specific implementation of Gtk.Editable.GetChars for the Entry widget.</summary>
        <param name="start_pos">The index of the first character to get, (zero-indexed).</param>
        <param name="end_pos">The index of the character to retrieve up to.</param>
        <returns>A string representing the characters from <paramref name="start_pos"/>, up to, but not including <paramref name="end_pos"/>. If <paramref name="end_pos"/> is negative, then the the characters retrieved will be those characters from <paramref name="start_pos"/> to the end of the text. </returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <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>Specific implementation of Gtk.Editable.DeleteText for the Entry widget.</summary>
        <param name="start_pos"></param>
        <param name="end_pos"></param>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="CopyClipboard">
      <MemberSignature Language="C#" Value="public virtual void CopyClipboard ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Specific implementation of Gtk.Editable.CopyClipboard for the Entry widget.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="DeleteSelection">
      <MemberSignature Language="C#" Value="public virtual void DeleteSelection ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Specific implementation of Gtk.Editable.DeleteSelection for the Entry widget. Deletes the currently selected text from the Entry.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="GetSelectionBounds">
      <MemberSignature Language="C#" Value="public virtual bool GetSelectionBounds (out int start, out int end);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="start" Type="System.Int32&amp;" />
        <Parameter Name="end" Type="System.Int32&amp;" />
      </Parameters>
      <Docs>
        <summary>Get the the positions of the start and end of the current selection, if there is one.</summary>
        <param name="start">output variable for the character index of the selection start</param>
        <param name="end">output variable for the character index of the end of the selection</param>
        <returns>true if there is a selection, false otherwise</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="CutClipboard">
      <MemberSignature Language="C#" Value="public virtual void CutClipboard ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Copies any selected text to the clipboard and deletes it from the entry.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="InsertText">
      <MemberSignature Language="C#" Value="public virtual void InsertText (string new_text, int new_text_length, ref int position);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="new_text" Type="System.String" />
        <Parameter Name="new_text_length" Type="System.Int32" />
        <Parameter Name="position" Type="System.Int32&amp;" />
      </Parameters>
      <Docs>
        <summary>Inserts text at a specific position in the Entry.</summary>
        <param name="new_text">The text to add to the Entry</param>
        <param name="new_text_length">The length of the new text to add, in bytes.</param>
        <param name="position">An in/out parameter. The caller initializes it to the position at which to insert the text. After the call it points at the position after the newly inserted text.</param>
        <remarks>Implements the Gtk.Editable.InsertText interface method for this Entry.</remarks>
      </Docs>
    </Member>
    <Member MemberName="PasteClipboard">
      <MemberSignature Language="C#" Value="public virtual void PasteClipboard ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>Causes the contents of the clipboard to be pasted into the Entry at the current cursor position. </summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="GetLayoutOffsets">
      <MemberSignature Language="C#" Value="public void GetLayoutOffsets (int x, int y);" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="x" Type="System.Int32" />
        <Parameter Name="y" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>Obtains the position of the PangoLayout used to render text in the entry, in widget coordinates.</summary>
        <param name="x">X offset output of the layout</param>
        <param name="y">Y offset output of the layout</param>
        <remarks>Useful if you want to line up the text in an entry with some other text, e.g. when using the entry to implement editable cells in a sheet widget.

Also useful to convert mouse events into coordinates inside the PangoLayout, e.g. to take some action if some part of the entry text is clicked. </remarks>
      </Docs>
    </Member>
    <Member MemberName="Finalize">
      <MemberSignature Language="C#" Value="protected virtual void Finalize ();" />
      <MemberType>Method</MemberType>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary></summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="protected Entry (uint gtype);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="gtype" Type="System.UInt32" />
      </Parameters>
      <Docs>
        <summary>Internal Constructor</summary>
        <param name="gtype"></param>
        <returns>A new Entry widget</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public Entry (IntPtr raw);" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters>
        <Parameter Name="raw" Type="System.IntPtr" />
      </Parameters>
      <Docs>
        <summary>Internal constructor</summary>
        <param name="raw"></param>
        <returns>A new Entry widget</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="public Entry ();" />
      <MemberType>Constructor</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Construct a new entry widget</summary>
        <returns>Creates an entry widget with empty contents</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="GType">
      <MemberSignature Language="C#" Value="public static uint GType { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.UInt32</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>Get the type of this object, as registered with the GLib object system.</summary>
        <returns>A number that uniquely identifies this type in the GLib object system.</returns>
        <remarks>Mostly for internal use.</remarks>
      </Docs>
    </Member>
    <Member MemberName="IsEditable">
      <MemberSignature Language="C#" Value="public virtual bool IsEditable { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <summary>Implements the concrete version of Gtk.Editable.IsEditable, to determine if the text of the Entry can be edited.</summary>
        <param name="value">true to allow editing of the Entry, false otherwise.</param>
        <returns>true if the Entry is editable, false otherwise.</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="Position">
      <MemberSignature Language="C#" Value="public virtual int Position { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>The position of the cursor.</summary>
        <param name="value">the new cursor position, in characters.</param>
        <returns>the current cursor position</returns>
        <remarks>The cursor is displayed before the character with the given (base 0) index in the widget. The value must be less than or equal to the number of characters in the widget. A value of -1 indicates that the position should be set after the last character in the entry. Note that this position is in characters, not in bytes. </remarks>
      </Docs>
    </Member>
    <Member MemberName="Layout">
      <MemberSignature Language="C#" Value="public Pango.Layout Layout { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>Pango.Layout</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>Get the object used by this Entry for text layout</summary>
        <returns>The Pango.Layout used to render the text of this entry</returns>
        <remarks>This property is read only.</remarks>
      </Docs>
    </Member>
    <Member MemberName="Visibility">
      <MemberSignature Language="C#" Value="public bool Visibility { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>		
      <Parameters>
        <Parameter Name="value" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <summary>Determine whether to display characters entered, or whether to mask them</summary>
        <param name="value">true to display characters in the Entry, false to mask them</param>
        <returns>true if characters are being displayed, false if they are being masked</returns>
        <remarks>This property should be used to create entry widgets for sensitive data such as passwords.</remarks>
      </Docs>
    </Member>
    <Member MemberName="MaxLength">
      <MemberSignature Language="C#" Value="public int MaxLength { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>The maximum number of characters that can be placed in this Entry.</summary>
        <param name="value">How many characters to limit this Entry to</param>
        <returns>The maximum number of characters that can currently be set in this Entry</returns>
        <remarks>This property can be useful for ensuring no more than a specific number of characters are put in an entry.</remarks>
      </Docs>
    </Member>
    <Member MemberName="CursorPosition">
      <MemberSignature Language="C#" Value="public int CursorPosition { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>The position of the cursor in the Entry's text</summary>
        <returns>The current character of the cursor.</returns>
        <remarks>Use this property to manipulate the position of the cursor - it is displayed before the character with the given (base 0) index in the widget. The value must be less than or equal to the number of characters in the widget. A value of -1 indicates that the position should be set after the last character in the entry. Note that this position is in characters, not in bytes.</remarks>
      </Docs>
    </Member>
    <Member MemberName="SelectionBound">
      <MemberSignature Language="C#" Value="public int SelectionBound { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>The length of the selected text</summary>
        <returns>the number of selected characters</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="Text">
      <MemberSignature Language="C#" Value="public string Text { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.String" />
      </Parameters>
      <Docs>
        <summary>Manipulate the current text contents of an Entry</summary>
        <param name="value">The new string to display in the Entry - overwrites any existing text in the widget.</param>
        <returns>The current text in an Entry</returns>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="ScrollOffset">
      <MemberSignature Language="C#" Value="public int ScrollOffset { get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>To be added</summary>
        <returns>To be added: an object of type 'int'</returns>
        <remarks>To be added</remarks>
      </Docs>
    </Member>
    <Member MemberName="WidthChars">
      <MemberSignature Language="C#" Value="public int WidthChars { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Int32</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Int32" />
      </Parameters>
      <Docs>
        <summary>Changes the size request of the entry to be about the right size for <paramref name="n_chars"/> characters.</summary>
        <param name="value">Requested width, in characters</param>
        <returns>The number of characters requested</returns>
        <remarks>Note that it changes the size request, the size can still be affected by how you pack the widget into containers. If n_chars is -1, the size reverts to the default entry size.</remarks>
      </Docs>
    </Member>
    <Member MemberName="Editable">
      <MemberSignature Language="C#" Value="public bool Editable { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <summary>Whether or not this Entry is editable</summary>
        <param name="value">true to make this Entry read-only, false to allow editing.</param>
        <returns>true if this entry can be edited, false otherwise</returns>
        <remarks>Set this property to false if you need to stop input into an Entry widget. For displaying textual data, it is more normal to use a <see cref="T:Gtk.Label"/> instead.</remarks>
      </Docs>
    </Member>
    <Member MemberName="ActivatesDefault">
      <MemberSignature Language="C#" Value="public bool ActivatesDefault { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <summary>Determine whether to activate the 'default widget' in the window when the return key is pressed.</summary>
        <param name="value">set to true to activate the default button when enter is pressed, false otherwise</param>
        <returns>true if the default button will be activated, false otherwise.</returns>
        <remarks><para>If the value is true, pressing Enter in the entry will activate the default widget for the window containing the entry. This usually means that the dialog box containing the entry will be closed, since the default widget is usually one of the dialog buttons.</para>
<para>
(For experts: if the value is true, the entry calls ActivateDefault() on the <see cref="T:Gtk.Window"/> containing the entry, in the default handler for the "activate" event).</para></remarks>
      </Docs>
    </Member>
    <Member MemberName="HasFrame">
      <MemberSignature Language="C#" Value="public bool HasFrame { set; get; };" />
      <MemberType>Property</MemberType>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="value" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <summary>Whether or not this Entry should be surrounded by a 3D frame</summary>
        <param name="value">true to surround this Entry in a frmae (the default), false otherwise.</param>
        <returns>true if a frame surrounds this Entry, false otherwise</returns>
        <remarks>Unless there is a very specific reason for doing so, this property is best left to its default to ensure consistency in Entry widgets across applications.</remarks>
      </Docs>
    </Member>
    <Member MemberName="WidgetRemoved">
      <MemberSignature Language="C#" Value="public virtual event EventHandler WidgetRemoved;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Implements the WidgetRemoved method of the <see cref="T:Gtk.CellEditable"/> interface. This will effectively destroy the Entry.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="EditingDone">
      <MemberSignature Language="C#" Value="public virtual event EventHandler EditingDone;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Implements the EditingDone method of the <see cref="T:Gtk.CellEditable"/> interface. </summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="TextInserted">
      <MemberSignature Language="C#" Value="public virtual event GtkSharp.TextInsertedHandler TextInserted;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to be notified when text is inserted into the Entry.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="TextDeleted">
      <MemberSignature Language="C#" Value="public virtual event GtkSharp.TextDeletedHandler TextDeleted;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to be notified when text is deleted from the Entry.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="Changed">
      <MemberSignature Language="C#" Value="public virtual event EventHandler Changed;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>When the contents of the Entry change, this event is fired.</summary>
        <remarks></remarks>
      </Docs>
    </Member>
    <Member MemberName="MoveCursor">
      <MemberSignature Language="C#" Value="public event GtkSharp.MoveCursorHandler MoveCursor;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event handler to be notified when the cursor of an Entry moves</summary>
        <remarks>Data pertaining to this event is passed with a <see cref="T:GtkSharp.MoveCursorHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="ClipboardCut">
      <MemberSignature Language="C#" Value="public event EventHandler ClipboardCut;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to be notified when the user 'cuts' a selection in the Entry.</summary>
        <remarks>Connect to this event with a standard <see cref="T:System.EventHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="Activated">
      <MemberSignature Language="C#" Value="public event EventHandler Activated;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to be notified when the user hits 'return'.</summary>
        <remarks>Connect to this event with a standard <see cref="T:System.EventHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="DeleteFromCursor">
      <MemberSignature Language="C#" Value="public event GtkSharp.DeleteFromCursorHandler DeleteFromCursor;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to find out when text is deleted from the Entry by the user.</summary>
        <remarks>Data pertaining to this event is encapsulated in a <see cref="T:GtkSharp.DeleteFromCursorHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="ClipboardPasted">
      <MemberSignature Language="C#" Value="public event EventHandler ClipboardPasted;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to be notified when the clipboard contents are pasted into this Entry.</summary>
        <remarks>Connect to this event with a standard <see cref="T:System.EventHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="ClipboardCopied">
      <MemberSignature Language="C#" Value="public event EventHandler ClipboardCopied;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to be notified when the contents of the Entry are copied to the clipboard.</summary>
        <remarks>Connect to this event with a standard <see cref="T:System.EventHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="PopulatePopup">
      <MemberSignature Language="C#" Value="public event GtkSharp.PopulatePopupHandler PopulatePopup;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>To be added</summary>
        <remarks>Data pertaining to this event is encapsulated in a <see cref="T:GtkSharp.PopulatePopupHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="ToggleOverwrite">
      <MemberSignature Language="C#" Value="public event EventHandler ToggleOverwrite;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to discover when the Overwrite state has been changed by the user. This is usually done by pressing the 'Insert' key on a keyboard.</summary>
        <remarks>Connect to this event with a standard <see cref="T:System.EventHandler"/>.</remarks>
      </Docs>
    </Member>
    <Member MemberName="InsertAtCursor">
      <MemberSignature Language="C#" Value="public event GtkSharp.InsertAtCursorHandler InsertAtCursor;" />
      <MemberType>Event</MemberType>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>Connect to this event to discover when text is inserted at the cursor position - usually when the user types something in.</summary>
        <remarks>Data pertaining to this event is encapsulated in an <see cref="T:GtkSharp.InsertAtCursorHandler"/>.</remarks>
      </Docs>
    </Member>
  </Members>
</Type>

--=-9oLRvxl7H8USbX8scXgP--