* makefile: Some makefile changes.

* en/Gtk/Entry.xml: Patch from Lee Mallabone
<mono-docs@fonicmonkey.net> to add some documentation text for the
Gtk.Entry class.

svn path=/trunk/gtk-sharp/; revision=11655
This commit is contained in:
Duncan Mak 2003-02-17 22:35:11 +00:00
parent 7661dafe09
commit a2d6bdffbc
3 changed files with 183 additions and 144 deletions

View File

@ -1,4 +1,17 @@
2003-02-17 Duncan Mak <duncan@ximian.com>
* makefile: Some makefile changes.
* en/Gtk/Entry.xml: Patch from Lee Mallabone
<mono-docs@fonicmonkey.net> to add some documentation text for the
Gtk.Entry class.
2003-02-14 Duncan Mak <duncan@ximian.com>
* en/*: Updated the docs and added a new Maintainer attribute, also
fixed the generator to produce 'ref/out' modifiers for parameters.
2003-02-14 Duncan Mak <duncan@ximian.com>
* makefile: Added a makefile.
* all.xml: Indexer file for the doc browser.
* all.xml: Indexer file for the doc browser.

View File

@ -1,14 +1,18 @@
<Type Name="Entry" FullName="Gtk.Entry">
<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>To be added</ThreadSafetyStatement>
<ThreadSafetyStatement>Entry is not a thread safe object</ThreadSafetyStatement>
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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>
@ -48,10 +52,10 @@
<Parameter Name="new_text" Type="System.String" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="new_text">To be added: an object of type 'string'</param>
<returns>To be added: an object of type 'int'</returns>
<remarks>To be added</remarks>
<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">
@ -64,9 +68,9 @@
<Parameter Name="evnt" Type="Gdk.Event" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="evnt">To be added: an object of type 'Gdk.Event'</param>
<remarks>To be added</remarks>
<summary>Specific implementation of Gtk.CellEditable.StartEditing for the Entry widget.</summary>
<param name="evnt"></param>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="FinishEditing">
@ -77,8 +81,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Specific implementation of Gtk.CellEditable.FinishEditing for the Entry widget.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="RemoveWidget">
@ -89,8 +93,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Specific implementation of Gtk.CellEditable.RemoveWidget for the Entry widget.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="SelectRegion">
@ -104,10 +108,10 @@
<Parameter Name="end" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="start">To be added: an object of type 'int'</param>
<param name="end">To be added: an object of type 'int'</param>
<remarks>To be added</remarks>
<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">
@ -121,11 +125,11 @@
<Parameter Name="end_pos" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="start_pos">To be added: an object of type 'int'</param>
<param name="end_pos">To be added: an object of type 'int'</param>
<returns>To be added: an object of type 'string'</returns>
<remarks>To be added</remarks>
<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">
@ -139,10 +143,10 @@
<Parameter Name="end_pos" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="start_pos">To be added: an object of type 'int'</param>
<param name="end_pos">To be added: an object of type 'int'</param>
<remarks>To be added</remarks>
<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">
@ -153,8 +157,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Specific implementation of Gtk.Editable.CopyClipboard for the Entry widget.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="DeleteSelection">
@ -165,8 +169,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -180,11 +184,11 @@
<Parameter Name="end" Type="System.Int32&amp;" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="start">To be added: an object of type 'int&amp;'</param>
<param name="end">To be added: an object of type 'int&amp;'</param>
<returns>To be added: an object of type 'bool'</returns>
<remarks>To be added</remarks>
<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">
@ -195,8 +199,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Copies any selected text to the clipboard and deletes it from the entry.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="InsertText">
@ -211,11 +215,11 @@
<Parameter Name="position" Type="System.Int32&amp;" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="new_text">To be added: an object of type 'string'</param>
<param name="new_text_length">To be added: an object of type 'int'</param>
<param name="position">To be added: an object of type 'int&amp;'</param>
<remarks>To be added</remarks>
<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">
@ -226,8 +230,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -241,10 +245,12 @@
<Parameter Name="y" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="x">To be added: an object of type 'int'</param>
<param name="y">To be added: an object of type 'int'</param>
<remarks>To be added</remarks>
<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">
@ -255,8 +261,8 @@
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary></summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
@ -267,10 +273,10 @@
<Parameter Name="gtype" Type="System.UInt32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="gtype">To be added: an object of type 'uint'</param>
<returns>To be added: an object of type 'Gtk.Entry'</returns>
<remarks>To be added</remarks>
<summary>Internal Constructor</summary>
<param name="gtype"></param>
<returns>A new Entry widget</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
@ -281,10 +287,10 @@
<Parameter Name="raw" Type="System.IntPtr" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="raw">To be added: an object of type 'IntPtr'</param>
<returns>To be added: an object of type 'Gtk.Entry'</returns>
<remarks>To be added</remarks>
<summary>Internal constructor</summary>
<param name="raw"></param>
<returns>A new Entry widget</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
@ -293,9 +299,9 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<returns>To be added: an object of type 'Gtk.Entry'</returns>
<remarks>To be added</remarks>
<summary>Construct a new entry widget</summary>
<returns>Creates an entry widget with empty contents</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="GType">
@ -305,9 +311,9 @@
<ReturnType>System.UInt32</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added</summary>
<returns>To be added: an object of type 'uint'</returns>
<remarks>To be added</remarks>
<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">
@ -320,10 +326,10 @@
<Parameter Name="value" Type="System.Boolean" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'bool'</param>
<returns>To be added: an object of type 'bool'</returns>
<remarks>To be added</remarks>
<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">
@ -336,10 +342,10 @@
<Parameter Name="value" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'int'</param>
<returns>To be added: an object of type 'int'</returns>
<remarks>To be added</remarks>
<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">
@ -349,9 +355,9 @@
<ReturnType>Pango.Layout</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added</summary>
<returns>To be added: an object of type 'Pango.Layout'</returns>
<remarks>To be added</remarks>
<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">
@ -359,15 +365,15 @@
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Boolean" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'bool'</param>
<returns>To be added: an object of type 'bool'</returns>
<remarks>To be added</remarks>
<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">
@ -380,10 +386,10 @@
<Parameter Name="value" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'int'</param>
<returns>To be added: an object of type 'int'</returns>
<remarks>To be added</remarks>
<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">
@ -393,9 +399,9 @@
<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>
<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">
@ -405,9 +411,9 @@
<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>
<summary>The length of the selected text</summary>
<returns>the number of selected characters</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="Text">
@ -420,10 +426,10 @@
<Parameter Name="value" Type="System.String" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'string'</param>
<returns>To be added: an object of type 'string'</returns>
<remarks>To be added</remarks>
<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">
@ -448,10 +454,10 @@
<Parameter Name="value" Type="System.Int32" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'int'</param>
<returns>To be added: an object of type 'int'</returns>
<remarks>To be added</remarks>
<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">
@ -464,10 +470,10 @@
<Parameter Name="value" Type="System.Boolean" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'bool'</param>
<returns>To be added: an object of type 'bool'</returns>
<remarks>To be added</remarks>
<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">
@ -480,10 +486,12 @@
<Parameter Name="value" Type="System.Boolean" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'bool'</param>
<returns>To be added: an object of type 'bool'</returns>
<remarks>To be added</remarks>
<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">
@ -496,10 +504,10 @@
<Parameter Name="value" Type="System.Boolean" />
</Parameters>
<Docs>
<summary>To be added</summary>
<param name="value">To be added: an object of type 'bool'</param>
<returns>To be added: an object of type 'bool'</returns>
<remarks>To be added</remarks>
<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">
@ -508,8 +516,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -518,8 +526,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Implements the EditingDone method of the <see cref="T:Gtk.CellEditable"/> interface. </summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="TextInserted">
@ -528,8 +536,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Connect to this event to be notified when text is inserted into the Entry.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="TextDeleted">
@ -538,8 +546,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>Connect to this event to be notified when text is deleted from the Entry.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="Changed">
@ -548,8 +556,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<summary>When the contents of the Entry change, this event is fired.</summary>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="MoveCursor">
@ -558,8 +566,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -568,8 +576,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -578,8 +586,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -588,8 +596,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -598,8 +606,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -608,8 +616,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -619,7 +627,7 @@
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<remarks>Data pertaining to this event is encapsulated in a <see cref="T:GtkSharp.PopulatePopupHandler"/>.</remarks>
</Docs>
</Member>
<Member MemberName="ToggleOverwrite">
@ -628,8 +636,8 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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">
@ -638,9 +646,9 @@
<ReturnValue />
<Parameters />
<Docs>
<summary>To be added</summary>
<remarks>To be added</remarks>
<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>
</Type>

View File

@ -1,14 +1,32 @@
LIBDIR=/usr/lib
BROWSER=../../monodoc/browser/browser.exe
ASSEMBLER=../../monodoc/browser/assembler.exe
GENERATOR=generator.exe
GENERATOR=../../monodoc/generator/generator.exe
all: tree
all: docs tree
b:
mono --debug $(BROWSER)
tree:
mono $(ASSEMBLER) --ecma en/ -o documentation
docs: glib pango atk gtk gdk gnome glade
glib:
mono --debug $(GENERATOR) $(LIBDIR)/glib-sharp.dll -o en -f
pango:
mono --debug $(GENERATOR) $(LIBDIR)/pango-sharp.dll -o en -f
atk:
mono --debug $(GENERATOR) $(LIBDIR)/atk-sharp.dll -o en -f
gtk:
mono --debug $(GENERATOR) $(LIBDIR)/gtk-sharp.dll -o en -f
gdk:
mono --debug $(GENERATOR) $(LIBDIR)/gdk-sharp.dll -o en -f
gnome:
mono --debug $(GENERATOR) $(LIBDIR)/gnome-sharp.dll -o en -f
glade:
mono --debug $(GENERATOR) $(LIBDIR)/glade-sharp.dll -o en -f
clean:
rm *.tree
rm *zip