mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 18:35:31 +00:00
Use recommended wording for events
svn path=/trunk/gtk-sharp/; revision=50212
This commit is contained in:
parent
7acfc652c9
commit
1852fbf0f1
|
@ -388,7 +388,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when there is a change to the global accelerator map.</summary>
|
||||
<summary>Raised when there is a change to the global accelerator map.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -582,7 +582,7 @@ This does not necessarily mean effective visibility. See <see cref="P:Gtk.Action
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when this action is activated.</summary>
|
||||
<summary>Event raised when this action is activated.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
<param name="page_increment">The increment to use to make major changes to the value.</param>
|
||||
<param name="page_size">The page size. In a <see cref="T:Gtk.Scrollbar" /> this is the size of the area that is currently visible.</param>
|
||||
<remarks>
|
||||
<para>When updating the values and properties of an Adjustment, remember to call the <see cref="M:Gtk.Adjustment.Changed" /> and/or <see cref="M:Gtk.Adjustment.ValueChanged" /> methods to ensure the correct events are fired.</para>
|
||||
<para>When updating the values and properties of an Adjustment, remember to call the <see cref="M:Gtk.Adjustment.Changed" /> and/or <see cref="M:Gtk.Adjustment.ValueChanged" /> methods to ensure the correct events are raised.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -96,7 +96,7 @@
|
|||
If the specified range is larger than the <see cref="T:Gtk.Adjustment.PageSize" />, then only the start of it will make up the new "current page".
|
||||
</para>
|
||||
<para>
|
||||
The <see cref="F:Gtk.Adjustment.ValueChanged" /> event will be fired if the <see cref="P:Gtk.Adjustment.Value" /> changes as a result of this method. <see cref="M:Gtk.Adjustment.Change" /> must be called manually if the <see cref="F:Gtk.Adjustment.Changed" /> event should be fired.
|
||||
The <see cref="F:Gtk.Adjustment.ValueChanged" /> event will be raised if the <see cref="P:Gtk.Adjustment.Value" /> changes as a result of this method. <see cref="M:Gtk.Adjustment.Change" /> must be called manually if the <see cref="F:Gtk.Adjustment.Changed" /> event should be raised.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -210,7 +210,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired when <see cref="M:Gtk.Adjustment.ChangeValue" /> is called.</summary>
|
||||
<summary>This event is raised when <see cref="M:Gtk.Adjustment.ChangeValue" /> is called.</summary>
|
||||
<remarks>
|
||||
<para>This event can be handled to be notified of changes to the Adjustment's value. However, this relies on all objects that change the <see cref="P:Gtk.Adjustment.Value" /> calling <see cref="M:Gtk.Adjustment.ChangeValue" />.</para>
|
||||
</remarks>
|
||||
|
@ -229,9 +229,9 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired when <see cref="M:Gtk.Adjustment.Change" /> is called.</summary>
|
||||
<summary>This event is raised when <see cref="M:Gtk.Adjustment.Change" /> is called.</summary>
|
||||
<remarks>
|
||||
<para>If the Adjustment's properties change, (such as <see cref="P:Gtk.Adjustment.Upper" />, <see cref="P:Gtk.Adjustment.Lower" /> etc.), it is up to whichever class changes the values to call <see cref="M:Gtk.Adjustment.Change" /> to ensure this event is fired.</para>
|
||||
<para>If the Adjustment's properties change, (such as <see cref="P:Gtk.Adjustment.Upper" />, <see cref="P:Gtk.Adjustment.Lower" /> etc.), it is up to whichever class changes the values to call <see cref="M:Gtk.Adjustment.Change" /> to ensure this event is raised.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -216,7 +216,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the current year of the Calendar is increased.</summary>
|
||||
<summary>Raised when the current year of the Calendar is increased.</summary>
|
||||
<remarks>
|
||||
<para>This may happen when the user explicitly advances the year, or when advancing from December to January.</para>
|
||||
</remarks>
|
||||
|
@ -235,7 +235,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user "double clicks" on a day.</summary>
|
||||
<summary>Raised when the user "double clicks" on a day.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -252,7 +252,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the current year of the Calendar is decreased.</summary>
|
||||
<summary>Raised when the current year of the Calendar is decreased.</summary>
|
||||
<remarks>
|
||||
<para>This may happen when the user explicitly advances the year, or when clicking 'back' from January to December.</para>
|
||||
</remarks>
|
||||
|
@ -271,7 +271,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the current month changes.</summary>
|
||||
<summary>Raised when the current month changes.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -288,7 +288,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the month of the Calendar moves to the next one.</summary>
|
||||
<summary>Raised when the month of the Calendar moves to the next one.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -305,7 +305,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a day is selected on the Calendar.</summary>
|
||||
<summary>Raised when a day is selected on the Calendar.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -322,7 +322,7 @@ void HandleDaySelected (object obj, EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the Calendar moves to the previous month.</summary>
|
||||
<summary>Raised when the Calendar moves to the previous month.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -478,7 +478,7 @@
|
|||
<Parameters />
|
||||
<Docs>
|
||||
<summary>
|
||||
This event is fired when the user cancels the process of
|
||||
This event is raised when the user cancels the process of
|
||||
editing a cell.
|
||||
</summary>
|
||||
<remarks>
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>An event that is fired whenever the state of the CheckMenuItem is toggled.</summary>
|
||||
<summary>An event that is raised whenever the state of the CheckMenuItem is toggled.</summary>
|
||||
<remarks>
|
||||
<para>Connect to this event with a standard <see cref="T:System.EventHandler" />.</para>
|
||||
</remarks>
|
||||
|
|
|
@ -147,7 +147,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired when the current color changes in the ColorSelection.</summary>
|
||||
<summary>This event is raised when the current color changes in the ColorSelection.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -355,8 +355,8 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a child widget is added to the container via <see cref="M:Gtk.Container.Add" />.</summary>
|
||||
<remarks>Note that this event is fired only when <see cref="M:Gtk.Container.Add" /> (or its C equivalent) is called. It is not a generic widget-added notification. For example, calling <see cref="M:Gtk.Box.PackStart" /> will not result in this event firing.</remarks>
|
||||
<summary>Raised when a child widget is added to the container via <see cref="M:Gtk.Container.Add" />.</summary>
|
||||
<remarks>Note that this event is raised only when <see cref="M:Gtk.Container.Add" /> (or its C equivalent) is called. It is not a generic widget-added notification. For example, calling <see cref="M:Gtk.Box.PackStart" /> will not result in this event firing.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
<Attribute>
|
||||
|
@ -372,7 +372,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the focus moves to a child widget of this container.</summary>
|
||||
<summary>Raised when the focus moves to a child widget of this container.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -389,8 +389,8 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a child widget is removed from this container</summary>
|
||||
<remarks>Note that this event is fired only when <see cref="M:Gtk.Container.Remove" /> (or its C equivalent) is called. If a <see cref="T:Gtk.Container" /> subclass defines additional methods for removing widgets, then calling those methods will not result in this event being fired.</remarks>
|
||||
<summary>Raised when a child widget is removed from this container</summary>
|
||||
<remarks>Note that this event is raised only when <see cref="M:Gtk.Container.Remove" /> (or its C equivalent) is called. If a <see cref="T:Gtk.Container" /> subclass defines additional methods for removing widgets, then calling those methods will not result in this event being raised.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
<Attribute>
|
||||
|
@ -406,7 +406,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this container's resizability is queried.</summary>
|
||||
<summary>Raised when this container's resizability is queried.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -172,7 +172,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the user inserts text.</summary>
|
||||
<summary>Raised whenever the user inserts text.</summary>
|
||||
<remarks>The default handler for this signal will normally be responsible for inserting the text, so by connecting to this signal and then stopping the signal with gtk_signal_emit_stop(), it is possible to modify the inserted text, or prevent it from being inserted entirely. (FIXME: Need Gtk# equivalent for gtk_signal_emit_stop().)</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -184,7 +184,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the user deletes text.</summary>
|
||||
<summary>Raised whenever the user deletes text.</summary>
|
||||
<remarks>The default handler for this signal will normally be responsible for inserting the text, so by connecting to this signal and then stopping the signal with gtk_signal_emit_stop(), it is possible to modify the inserted text, or prevent it from being inserted entirely. The <paramref name="start_pos" /> and <paramref name="end_pos" /> parameters are interpreted as for <see cref="F:Gtk.Editable.DeleteText()" />(FIXME: need equivalent for gtk_signal_emit_stop().)</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
|
@ -196,7 +196,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user has changed the contents of the widget.</summary>
|
||||
<summary>Raised when the user has changed the contents of the widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
</Member>
|
||||
|
|
|
@ -635,7 +635,7 @@ class EntrySample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>When the contents of the Entry change, this event is fired.</summary>
|
||||
<summary>When the contents of the Entry change, this event is raised.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -762,7 +762,7 @@ class EntrySample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the popup handler needs to be filled with data.</summary>
|
||||
<summary>Raised when the popup handler needs to be filled with data.</summary>
|
||||
<remarks>
|
||||
<para>Data pertaining to this event is encapsulated in a <see cref="T:Gtk.PopulatePopupArgs" />.</para>
|
||||
</remarks>
|
||||
|
|
|
@ -631,7 +631,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired every time the selected file changes.</summary>
|
||||
<summary>This event is raised every time the selected file changes.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -839,7 +839,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired every time the selected file changes.</summary>
|
||||
<summary>This event is raised every time the selected file changes.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -861,7 +861,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired every time the selected file changes.</summary>
|
||||
<summary>This event is raised every time the selected file changes.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -942,7 +942,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when the chooser changes the folder it's looking at.</summary>
|
||||
<summary>Event raised when the chooser changes the folder it's looking at.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -222,7 +222,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when the font is set.</summary>
|
||||
<summary>Event raised when the font is set.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the color of this widget changes.</summary>
|
||||
<summary>Raised when the color of this widget changes.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -103,7 +103,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget is moved.</summary>
|
||||
<summary>Raised when this widget is moved.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -1116,7 +1116,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the font style under the cursor is changed.</summary>
|
||||
<summary>Raised when the font style under the cursor is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1154,7 +1154,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the base URL of the document is changed.</summary>
|
||||
<summary>Raised when the base URL of the document is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1171,7 +1171,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the size of text is changed.</summary>
|
||||
<summary>Raised when the size of text is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1188,7 +1188,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the text style of this paragraph is changed.</summary>
|
||||
<summary>Raised when the text style of this paragraph is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1205,7 +1205,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired after a webpage is finished loading.</summary>
|
||||
<summary>Raised after a webpage is finished loading.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1242,7 +1242,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a command is issued to the widget.</summary>
|
||||
<summary>Raised when a command is issued to the widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1341,7 +1341,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired after an IFRAME is created.</summary>
|
||||
<summary>Raised after an IFRAME is created.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1358,7 +1358,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget is scrolled.</summary>
|
||||
<summary>Raised when the widget is scrolled.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1375,7 +1375,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the indent level of the current paragraph is changed.</summary>
|
||||
<summary>Raised when the indent level of the current paragraph is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1392,7 +1392,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the alignment of the current paragraph is changed.</summary>
|
||||
<summary>Raised when the alignment of the current paragraph is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1409,7 +1409,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the text color to insert is changed.</summary>
|
||||
<summary>Raised when the text color to insert is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1483,7 +1483,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a form submit button is clicked.</summary>
|
||||
<summary>Raised when a form submit button is clicked.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1500,7 +1500,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when an HTTP redirect is received.</summary>
|
||||
<summary>Raised when an HTTP redirect is received.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1576,7 +1576,7 @@ class X {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the base URL target is changed.</summary>
|
||||
<summary>Raised when the base URL target is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the HTML is changed.</summary>
|
||||
<summary>Raised when the HTML is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired when the contents of the HandleBox are reattached to the main window. </summary>
|
||||
<summary>This event is raised when the contents of the HandleBox are reattached to the main window. </summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -150,7 +150,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired when the contents of the handlebox are detached from the main window.</summary>
|
||||
<summary>This event is raised when the contents of the handlebox are detached from the main window.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<ReturnType>Gtk.Widget</ReturnType>
|
||||
</ReturnValue>
|
||||
<Docs>
|
||||
<summary>The top-level widget which was previously the parent of the widget that fired the event.</summary>
|
||||
<summary>The top-level widget which was previously the parent of the widget that raised the event.</summary>
|
||||
<value>A <see cref="T:Gtk.Widget" /></value>
|
||||
<remarks />
|
||||
</Docs>
|
||||
|
|
|
@ -203,7 +203,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when the preedit string is changed.</summary>
|
||||
<summary>Event raised when the preedit string is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -220,7 +220,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when pre-editing is started.</summary>
|
||||
<summary>Event raised when pre-editing is started.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -237,7 +237,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when the input method needs to delete the context text.</summary>
|
||||
<summary>Event raised when the input method needs to delete the context text.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -272,7 +272,7 @@
|
|||
<Parameters />
|
||||
<Docs>
|
||||
<summary>
|
||||
Event fired when the input method requires the context surrounding the cursor.
|
||||
Event raised when the input method requires the context surrounding the cursor.
|
||||
</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
|
@ -290,7 +290,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when pre-editing is completed.</summary>
|
||||
<summary>Event raised when pre-editing is completed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -219,7 +219,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the scroll adjustment units are set for this widget.</summary>
|
||||
<summary>Raised whenever the scroll adjustment units are set for this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -562,7 +562,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the sorting column has changed.</summary>
|
||||
<summary>Raised when the sorting column has changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -579,7 +579,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the display of a given row's children is toggled.</summary>
|
||||
<summary>Raised when the display of a given row's children is toggled.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -596,7 +596,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a row of data is inserted.</summary>
|
||||
<summary>Raised when a row of data is inserted.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -613,7 +613,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a row is deleted.</summary>
|
||||
<summary>Raised when a row is deleted.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -630,7 +630,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a row has changed.</summary>
|
||||
<summary>Raised when a row has changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -647,7 +647,7 @@ Iteration: In new versions of Gtk# (2.0 and up) this class implements the <see c
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the order of rows has changed.</summary>
|
||||
<summary>Raised when the order of rows has changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1435,7 +1435,7 @@ The above example creates a new three columns list store. The types of the colum
|
|||
<param name="path">a <see cref="T:Gtk.TreePath" />, pointer to the row whose children have been reordered</param>
|
||||
<param name="iter">a <see cref="T:Gtk.TreeIter" />, pointer to the row whose children have been reordered</param>
|
||||
<returns>a <see cref="T:System.Int32" /></returns>
|
||||
<remarks>This is part of the implementation of <see cref="T:Gtk.TreeModel" />. It should be called by other class methods that reorder rows so that the proper events are fired. (FIXME: since lists don't have parents/children, how does this get used in practice? There should be an example here.)</remarks>
|
||||
<remarks>This is part of the implementation of <see cref="T:Gtk.TreeModel" />. It should be called by other class methods that reorder rows so that the proper events are raised. (FIXME: since lists don't have parents/children, how does this get used in practice? There should be an example here.)</remarks>
|
||||
</Docs>
|
||||
</Member>
|
||||
<Member MemberName="Remove">
|
||||
|
|
|
@ -633,7 +633,7 @@ the label of a menu doesn't have to be a <see cref="T:Gtk.Label" />. it can be a
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a page of the notebook is selected.</summary>
|
||||
<summary>Raised when a page of the notebook is selected.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the plug window is reparented to the socket window.</summary>
|
||||
<summary>Raised when the plug window is reparented to the socket window.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired whenever this radio button is toggled.</summary>
|
||||
<summary>This event is raised whenever this radio button is toggled.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -151,7 +151,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user moves a slider.</summary>
|
||||
<summary>Raised when the user moves a slider.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -168,7 +168,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the value in this range changes.</summary>
|
||||
<summary>Raised when the value in this range changes.</summary>
|
||||
<remarks>
|
||||
<para>Connect to this event with a standard <see cref="T:System.EventHandler" /> to find out when the value changes.</para>
|
||||
</remarks>
|
||||
|
@ -187,7 +187,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the bounds of the range are adjusted.</summary>
|
||||
<summary>Raised when the bounds of the range are adjusted.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -278,7 +278,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the child widget is scrolled.</summary>
|
||||
<summary>Raised when the child widget is scrolled.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -295,7 +295,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the focus moves out of the scrolled window.</summary>
|
||||
<summary>Raised when the focus moves out of the scrolled window.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -399,7 +399,7 @@ private void OutputValue(object source, System.EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget outputs its value.</summary>
|
||||
<summary>Raised when this widget outputs its value.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -416,7 +416,7 @@ private void OutputValue(object source, System.EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired after the SpinButton's value changes.</summary>
|
||||
<summary>This event is raised after the SpinButton's value changes.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -433,7 +433,7 @@ private void OutputValue(object source, System.EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user inputs a new value.</summary>
|
||||
<summary>Raised when the user inputs a new value.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -450,7 +450,7 @@ private void OutputValue(object source, System.EventArgs args)
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired in order to change the button's value.</summary>
|
||||
<summary>Raised in order to change the button's value.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -203,7 +203,7 @@ class StatusbarSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>An event that is fired when a message is pushed onto the Statusbar's message stack using the <see cref="M:Gtk.Statusbar.Push" /> method.</summary>
|
||||
<summary>An event that is raised when a message is pushed onto the Statusbar's message stack using the <see cref="M:Gtk.Statusbar.Push" /> method.</summary>
|
||||
<remarks>
|
||||
<para>Connect to this event with a <see cref="T:Gtk.TextPushedHandler" />.</para>
|
||||
</remarks>
|
||||
|
@ -222,7 +222,7 @@ class StatusbarSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>An event that is fired when a message is popped off the Statusbar's message stack using the <see cref="M:Gtk.Statusbar.Pop" /> method.</summary>
|
||||
<summary>An event that is raised when a message is popped off the Statusbar's message stack using the <see cref="M:Gtk.Statusbar.Pop" /> method.</summary>
|
||||
<remarks>
|
||||
<para>Connect to this event with a <see cref="T:Gtk.TextPoppedHandler" />.</para>
|
||||
</remarks>
|
||||
|
|
|
@ -1435,7 +1435,7 @@ color or pixmap specified by this style for <paramref name="state" />.</summary>
|
|||
<Parameters />
|
||||
<Docs>
|
||||
<summary>
|
||||
Event fired when the aspects of the style specific to a
|
||||
Event raised when the aspects of the style specific to a
|
||||
particular colormap and depth are being cleaned up.
|
||||
</summary>
|
||||
<remarks>
|
||||
|
|
|
@ -607,7 +607,7 @@
|
|||
this function has been called on a mark;
|
||||
<see cref="P:Gtk.TextMark.Deleted" /> indicates that a mark no
|
||||
longer belongs to a buffer. The <see cref="E:Gtk.TextBuffer.MarkDeleted" /> event will
|
||||
be fired as notification after the mark is deleted.
|
||||
be raised as notification after the mark is deleted.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -945,7 +945,7 @@
|
|||
will automatically toggled to <see langword="true" />.
|
||||
</para>
|
||||
<para>
|
||||
Whenever this property is changed, the <see cref="E:Gtk.TextBuffer.ModifiedChanged" /> event is fired.
|
||||
Whenever this property is changed, the <see cref="E:Gtk.TextBuffer.ModifiedChanged" /> event is raised.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
@ -1276,7 +1276,7 @@
|
|||
<remarks>
|
||||
<para>
|
||||
The <see cref="E:Gtk.TextBuffer.InsertText" /> event is
|
||||
fired when a call to this method is made.
|
||||
raised when a call to this method is made.
|
||||
</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<Docs>
|
||||
<param name="o">To be added.</param>
|
||||
<param name="args">To be added.</param>
|
||||
<summary>An event that is fired when messages are popped from the message stack of a <see cref="T:Gtk.Statusbar" />.</summary>
|
||||
<summary>An event that is raised when messages are popped from the message stack of a <see cref="T:Gtk.Statusbar" />.</summary>
|
||||
<remarks>
|
||||
<para>This event passes data to its handlers with the <see cref="T:Gtk.TextPoppedArgs" /> class.</para>
|
||||
</remarks>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<Docs>
|
||||
<param name="o">To be added.</param>
|
||||
<param name="args">To be added.</param>
|
||||
<summary>An event that is fired when messages are pushed onto the message stack of a <see cref="T:Gtk.Statusbar" />.</summary>
|
||||
<summary>An event that is raised when messages are pushed onto the message stack of a <see cref="T:Gtk.Statusbar" />.</summary>
|
||||
<remarks>
|
||||
<para>This event passes data to its handlers with the <see cref="T:Gtk.TextPushedArgs" /> class.</para>
|
||||
</remarks>
|
||||
|
|
|
@ -784,7 +784,7 @@ Default value: 400
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever this text tag explicitly fires an event; general-purpose event.</summary>
|
||||
<summary>Raised whenever this text tag explicitly fires an event; general-purpose event.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -916,7 +916,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the adjustment values for the scrollbars are set.</summary>
|
||||
<summary>Raised whenever the adjustment values for the scrollbars are set.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -933,7 +933,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever an anchor (e.g. <see cref="M:Gtk.TextChildAnchor" />) is set within the TextView. </summary>
|
||||
<summary>Raised whenever an anchor (e.g. <see cref="M:Gtk.TextChildAnchor" />) is set within the TextView. </summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -950,7 +950,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the cursor is moved.</summary>
|
||||
<summary>Raised whenever the cursor is moved.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -967,7 +967,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the popup dialog on this object needs to be filled with data.</summary>
|
||||
<summary>Raised when the popup dialog on this object needs to be filled with data.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -984,7 +984,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when text is deleted from the cursor (usually by hitting Backspace or Delete).</summary>
|
||||
<summary>Raised when text is deleted from the cursor (usually by hitting Backspace or Delete).</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1001,7 +1001,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when text is copied to the clipboard.</summary>
|
||||
<summary>Raised when text is copied to the clipboard.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1018,7 +1018,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the keyboard focus changes.</summary>
|
||||
<summary>Raised when the keyboard focus changes.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1035,7 +1035,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user scrolls horizontally in this widget.</summary>
|
||||
<summary>Raised when the user scrolls horizontally in this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1052,7 +1052,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the insert/overwrite flag is toggled.</summary>
|
||||
<summary>Raised whenever the insert/overwrite flag is toggled.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1069,7 +1069,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever a selection is cut to the clipboard.</summary>
|
||||
<summary>Raised whenever a selection is cut to the clipboard.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1086,7 +1086,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever text is inserted at the cursor.</summary>
|
||||
<summary>Raised whenever text is inserted at the cursor.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1103,7 +1103,7 @@ class TextViewSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever text is pasted from the clipboard.</summary>
|
||||
<summary>Raised whenever text is pasted from the clipboard.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -150,7 +150,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Event fired when the toggle is changed.</summary>
|
||||
<summary>Event raised when the toggle is changed.</summary>
|
||||
<remarks>
|
||||
</remarks>
|
||||
</Docs>
|
||||
|
|
|
@ -422,7 +422,7 @@
|
|||
<Parameters />
|
||||
<Docs>
|
||||
<summary>
|
||||
This event is fired when the toolbar is displaying an
|
||||
This event is raised when the toolbar is displaying an
|
||||
overflow menu and is trying to determine if toolitem
|
||||
should appear in the overflow menu.
|
||||
</summary>
|
||||
|
|
|
@ -453,7 +453,7 @@ node is always the parent.</remarks>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the sort column is changed.</summary>
|
||||
<summary>Raised when the sort column is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -470,7 +470,7 @@ node is always the parent.</remarks>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the child state of a row is toggled.</summary>
|
||||
<summary>Raised when the child state of a row is toggled.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -487,7 +487,7 @@ node is always the parent.</remarks>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a new row is inserted into the tree.</summary>
|
||||
<summary>Raised when a new row is inserted into the tree.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -504,7 +504,7 @@ node is always the parent.</remarks>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a row is deleted from the tree.</summary>
|
||||
<summary>Raised when a row is deleted from the tree.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -521,7 +521,7 @@ node is always the parent.</remarks>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a tree row is changed.</summary>
|
||||
<summary>Raised when a tree row is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -538,7 +538,7 @@ node is always the parent.</remarks>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when rows are reordered or moved around.</summary>
|
||||
<summary>Raised when rows are reordered or moved around.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -392,9 +392,9 @@ class TreeSelectionSample
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the selection (may have) changed.</summary>
|
||||
<summary>Raised when the selection (may have) changed.</summary>
|
||||
<remarks>
|
||||
<para>This event is mostly a hint. It may only be fired once when a range of rows are selected, and it may occasionally be fired when nothing has happened.</para>
|
||||
<para>This event is mostly a hint. It may only be raised once when a range of rows are selected, and it may occasionally be raised when nothing has happened.</para>
|
||||
</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the sort column is changed.</summary>
|
||||
<summary>Raised when the sort column is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
</Member>
|
||||
|
|
|
@ -964,7 +964,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the scrollbar adjustment units are set.</summary>
|
||||
<summary>Raised whenever the scrollbar adjustment units are set.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -981,7 +981,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever a row of the TreeView is expanded.</summary>
|
||||
<summary>Raised whenever a row of the TreeView is expanded.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -998,7 +998,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the cursor is moved on this TreeView.</summary>
|
||||
<summary>Raised whenever the cursor is moved on this TreeView.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1015,7 +1015,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget wants to find out whether a row can be expanded or not.</summary>
|
||||
<summary>Raised when the widget wants to find out whether a row can be expanded or not.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1032,7 +1032,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the row the cursor is on is selected.</summary>
|
||||
<summary>Raised when the row the cursor is on is selected.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1049,7 +1049,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever a row is collapsed.</summary>
|
||||
<summary>Raised whenever a row is collapsed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1066,7 +1066,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the columns of this tree change.</summary>
|
||||
<summary>Raised when the columns of this tree change.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1083,7 +1083,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the row where the cursor is is expanded or collapsed.</summary>
|
||||
<summary>Raised when the row where the cursor is is expanded or collapsed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1100,7 +1100,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a row is activated; see <see cref="M:Gtk.TreeView.ActivateRow" />.</summary>
|
||||
<summary>Raised when a row is activated; see <see cref="M:Gtk.TreeView.ActivateRow" />.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1117,7 +1117,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the system wants to know whether a particular row can be collapsed.</summary>
|
||||
<summary>Raised when the system wants to know whether a particular row can be collapsed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1134,7 +1134,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the cursor changes (rows).</summary>
|
||||
<summary>Raised when the cursor changes (rows).</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1193,7 +1193,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the cursor toggles a row.</summary>
|
||||
<summary>Raised when the cursor toggles a row.</summary>
|
||||
<remarks>(FIXME: explain in more detail.)</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1210,7 +1210,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user begins a search of the tree.</summary>
|
||||
<summary>Raised when the user begins a search of the tree.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1227,7 +1227,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever all rows of the TreeView are selected.</summary>
|
||||
<summary>Raised whenever all rows of the TreeView are selected.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1244,7 +1244,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the parent row of the current row is selected.</summary>
|
||||
<summary>Raised when the parent row of the current row is selected.</summary>
|
||||
<remarks>(FIXME: explain in more detail.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1261,7 +1261,7 @@ This property tells GTK# that the user interface for your application requires u
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever all rows of the TreeView are specifically deselected.</summary>
|
||||
<summary>Raised whenever all rows of the TreeView are specifically deselected.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -168,7 +168,7 @@ namespace GtkSamples {
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>This event is fired when the <see cref="P:Gtk.Viewport.VAdjustment" /> or <see cref="P:Gtk.Viewport.HAdjustment" /> properties are set.</summary>
|
||||
<summary>This event is raised when the <see cref="P:Gtk.Viewport.VAdjustment" /> or <see cref="P:Gtk.Viewport.HAdjustment" /> properties are set.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
|
|
@ -1711,7 +1711,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever this widget (or its parent, if <see cref="M:Gtk.Widget.ChildVisible" /> is true for the parent) is told to hide itself.</summary>
|
||||
<summary>Raised whenever this widget (or its parent, if <see cref="M:Gtk.Widget.ChildVisible" /> is true for the parent) is told to hide itself.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1728,7 +1728,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever this widget is focused.</summary>
|
||||
<summary>Raised whenever this widget is focused.</summary>
|
||||
<remarks>The widget gets this signal as the user uses keyboard shortcuts or tabs through the widgets in a window.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1745,7 +1745,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever this widget's parent widget is set.</summary>
|
||||
<summary>Raised whenever this widget's parent widget is set.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1762,7 +1762,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a key is released within this widget.</summary>
|
||||
<summary>Raised when a key is released within this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1779,7 +1779,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever this widget is hidden.</summary>
|
||||
<summary>Raised whenever this widget is hidden.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1796,7 +1796,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the widget receives a request for a selection.</summary>
|
||||
<summary>Raised whenever the widget receives a request for a selection.</summary>
|
||||
<remarks>TODO: explain more about the X selection model </remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1813,7 +1813,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the text direction for this widget is changed.</summary>
|
||||
<summary>Raised when the text direction for this widget is changed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1830,7 +1830,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a drag action leaves this widget.</summary>
|
||||
<summary>Raised when a drag action leaves this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1847,7 +1847,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget is scrolled.</summary>
|
||||
<summary>Raised when the widget is scrolled.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1864,7 +1864,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired whenever the visibility state of the widget changes--- partially visible or fully visible, for example.</summary>
|
||||
<summary>Raised whenever the visibility state of the widget changes--- partially visible or fully visible, for example.</summary>
|
||||
<remarks>It may be preferable to handle a <see cref="T:Gtk.Widget.ExposeEvent" />instead.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1898,7 +1898,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget is mapped.</summary>
|
||||
<summary>Raised when this widget is mapped.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1915,7 +1915,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired on a source widget when the user begins a drag.</summary>
|
||||
<summary>Raised on a source widget when the user begins a drag.</summary>
|
||||
<remarks>To be added.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1932,7 +1932,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the hierarchy (parent or child relationships) of this widget or its parent or children changes.</summary>
|
||||
<summary>Raised when the hierarchy (parent or child relationships) of this widget or its parent or children changes.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1949,7 +1949,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the configuration of the window has changed (it has been moved or resized).</summary>
|
||||
<summary>Raised when the configuration of the window has changed (it has been moved or resized).</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1966,7 +1966,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a key is pressed within this widget.</summary>
|
||||
<summary>Raised when a key is pressed within this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -1983,7 +1983,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired just after the widget is mapped.</summary>
|
||||
<summary>Raised just after the widget is mapped.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2000,7 +2000,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget grabs the keyboard focus.</summary>
|
||||
<summary>Raised when this widget grabs the keyboard focus.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2017,7 +2017,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the pointer moves within this widget.</summary>
|
||||
<summary>Raised when the pointer moves within this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2034,7 +2034,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the state of the widget changes.</summary>
|
||||
<summary>Raised when the state of the widget changes.</summary>
|
||||
<remarks>See <see cref="T:Gtk.StateType" /> for the possible states of a widget.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2068,7 +2068,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a widget is unrealized.</summary>
|
||||
<summary>Raised when a widget is unrealized.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2085,7 +2085,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a (mouse) button is released on this widget.</summary>
|
||||
<summary>Raised when a (mouse) button is released on this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2102,7 +2102,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget gets a selection from the clipboard.</summary>
|
||||
<summary>Raised when this widget gets a selection from the clipboard.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2119,7 +2119,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when size is allocated for this widget.</summary>
|
||||
<summary>Raised when size is allocated for this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2136,7 +2136,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget's popup menu is activated.</summary>
|
||||
<summary>Raised when this widget's popup menu is activated.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2153,7 +2153,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget needs to be (fully or partially) redrawn.</summary>
|
||||
<summary>Raised when the widget needs to be (fully or partially) redrawn.</summary>
|
||||
<remarks>See <see cref="T:Gtk.ExposeEventArgs" />, <see cref="T:Gtk.ExposeEventHandler" />. </remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2170,7 +2170,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget is shown.</summary>
|
||||
<summary>Raised when the widget is shown.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2204,7 +2204,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget has just gained the focus.</summary>
|
||||
<summary>Raised when the widget has just gained the focus.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2221,7 +2221,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a button is pressed.</summary>
|
||||
<summary>Raised when a button is pressed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2255,7 +2255,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the help text is shown.</summary>
|
||||
<summary>Raised when the help text is shown.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2272,7 +2272,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a message is received from another application.</summary>
|
||||
<summary>Raised when a message is received from another application.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2289,7 +2289,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user is using a stylus or touch screen and their pointer comes near the widget.</summary>
|
||||
<summary>Raised when the user is using a stylus or touch screen and their pointer comes near the widget.</summary>
|
||||
<remarks>See <see cref="T:Gdk.EventProximity" /> for context.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2306,7 +2306,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user is using a stylus or touch screen and their pointer leaves the area near the widget.</summary>
|
||||
<summary>Raised when the user is using a stylus or touch screen and their pointer leaves the area near the widget.</summary>
|
||||
<remarks>See <see cref="T:Gdk.EventProximity" /> for context.</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2323,7 +2323,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget is destroyed.</summary>
|
||||
<summary>Raised when this widget is destroyed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2340,7 +2340,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget is the destination of a received selection.</summary>
|
||||
<summary>Raised when this widget is the destination of a received selection.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2357,7 +2357,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the drag-and-drop process gets data from a source widget.</summary>
|
||||
<summary>Raised when the drag-and-drop process gets data from a source widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2391,7 +2391,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired on a destination widget when it receives dragged data.</summary>
|
||||
<summary>Raised on a destination widget when it receives dragged data.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2408,7 +2408,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired on a source widget when the user is moving a dragged selection.</summary>
|
||||
<summary>Raised on a source widget when the user is moving a dragged selection.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2425,7 +2425,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when this widget needs to notify another object of its preferred size.</summary>
|
||||
<summary>Raised when this widget needs to notify another object of its preferred size.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2459,7 +2459,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when a <see cref="T:Gtk.Style" /> is set for this widget.t</summary>
|
||||
<summary>Raised when a <see cref="T:Gtk.Style" /> is set for this widget.t</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2476,7 +2476,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the focus leaves this widget.</summary>
|
||||
<summary>Raised when the focus leaves this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2510,7 +2510,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the widget is unmapped on the screen.</summary>
|
||||
<summary>Raised when the widget is unmapped on the screen.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2527,7 +2527,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired on a source widget when a drag operation is completed.</summary>
|
||||
<summary>Raised on a source widget when a drag operation is completed.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2544,7 +2544,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the current selection is cleared.</summary>
|
||||
<summary>Raised when the current selection is cleared.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2561,7 +2561,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when someone presses a mnemonic key.</summary>
|
||||
<summary>Raised when someone presses a mnemonic key.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2578,7 +2578,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired on a source widget when dragged data is dropped.</summary>
|
||||
<summary>Raised on a source widget when dragged data is dropped.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2595,7 +2595,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the mouse leaves this widget.</summary>
|
||||
<summary>Raised when the mouse leaves this widget.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2612,7 +2612,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the user has clicked on the "close" button in the window's frame (the button that is automatically set by the window manager).</summary>
|
||||
<summary>Raised when the user has clicked on the "close" button in the window's frame (the button that is automatically set by the window manager).</summary>
|
||||
<remarks>If the handler returns False, the widget will be destroyed (and the window closed), but if the handler returns True, nothing will be done. This is a good way to prevent the user from closing your application's window if there should be some cleanups first (like saving the document).</remarks>
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -2646,7 +2646,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired on a source widget when dragged data is deleted.</summary>
|
||||
<summary>Raised on a source widget when dragged data is deleted.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -3488,7 +3488,7 @@ handle focus grabs.</value>
|
|||
</ReturnValue>
|
||||
<Parameters />
|
||||
<Docs>
|
||||
<summary>Fired when the closures for this widget's accelerator change.</summary>
|
||||
<summary>Raised when the closures for this widget's accelerator change.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Attributes>
|
||||
|
@ -4349,7 +4349,7 @@ Widgets are required to honor the size allocation they receive; a size request i
|
|||
</Parameters>
|
||||
<Docs>
|
||||
<summary>
|
||||
Method fired when the <see cref="E:Gtk.Widget.AccelCanActivate" />
|
||||
Method raised when the <see cref="E:Gtk.Widget.AccelCanActivate" />
|
||||
event happens; override this for additional functionality.
|
||||
</summary>
|
||||
<param name="signal_id">a <see cref="T:System.UInt32" />, a signal ID</param>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
</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 type of help to display when the <see cref="M:Gtk.Widget.HelpShown" /> event is fired.</summary>
|
||||
<summary>The type of help to display when the <see cref="M:Gtk.Widget.HelpShown" /> event is raised.</summary>
|
||||
<remarks />
|
||||
</Docs>
|
||||
<Base>
|
||||
|
|
Loading…
Reference in a new issue