forked from AuroraMiddleware/gtk
Merge branch 'matthiasc/for-master' into 'master'
widget-factory: Add a default button Closes #3975 See merge request GNOME/gtk!3725
This commit is contained in:
commit
9885bedb7d
@ -2902,7 +2902,7 @@ bad things might happen.</property>
|
||||
|
||||
<action-widgets>
|
||||
<action-widget response="cancel">cancel_info_dialog</action-widget>
|
||||
<action-widget response="ok">doit_info_dialog</action-widget>
|
||||
<action-widget response="ok" default="true">doit_info_dialog</action-widget>
|
||||
</action-widgets>
|
||||
</object>
|
||||
<object class="GtkDialog" id="action_dialog">
|
||||
|
@ -895,8 +895,8 @@ gtk_cell_view_new_with_text (const char *text)
|
||||
* @markup: the text to display in the cell view
|
||||
*
|
||||
* Creates a new `GtkCellView` widget, adds a `GtkCellRendererText`
|
||||
* to it, and makes it show @markup. The text can be
|
||||
* marked up with the [Pango text markup language][PangoMarkupFormat].
|
||||
* to it, and makes it show @markup. The text can be marked up with
|
||||
* the [Pango text markup language](https://docs.gtk.org/Pango/pango_markup.html).
|
||||
*
|
||||
* Returns: A newly created `GtkCellView` widget.
|
||||
*/
|
||||
|
@ -641,7 +641,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
* GtkIconView::select-all:
|
||||
* @iconview: the object on which the signal is emitted
|
||||
*
|
||||
* A [keybinding signal][GtkSignalAction]
|
||||
* A [keybinding signal][class.Gtk.SignalAction]
|
||||
* which gets emitted when the user selects all items.
|
||||
*
|
||||
* Applications should not connect to it, but may emit it with
|
||||
@ -663,7 +663,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
* GtkIconView::unselect-all:
|
||||
* @iconview: the object on which the signal is emitted
|
||||
*
|
||||
* A [keybinding signal][GtkSignalAction]
|
||||
* A [keybinding signal][class@Gtk.SignalAction]
|
||||
* which gets emitted when the user unselects all items.
|
||||
*
|
||||
* Applications should not connect to it, but may emit it with
|
||||
@ -685,7 +685,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
* GtkIconView::select-cursor-item:
|
||||
* @iconview: the object on which the signal is emitted
|
||||
*
|
||||
* A [keybinding signal][GtkSignalAction]
|
||||
* A [keybinding signal][class@Gtk.SignalAction]
|
||||
* which gets emitted when the user selects the item that is currently
|
||||
* focused.
|
||||
*
|
||||
@ -708,7 +708,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
* GtkIconView::toggle-cursor-item:
|
||||
* @iconview: the object on which the signal is emitted
|
||||
*
|
||||
* A [keybinding signal][GtkSignalAction]
|
||||
* A [keybinding signal][class@Gtk.SignalAction]
|
||||
* which gets emitted when the user toggles whether the currently
|
||||
* focused item is selected or not. The exact effect of this
|
||||
* depend on the selection mode.
|
||||
@ -732,7 +732,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
* GtkIconView::activate-cursor-item:
|
||||
* @iconview: the object on which the signal is emitted
|
||||
*
|
||||
* A [keybinding signal][GtkSignalAction]
|
||||
* A [keybinding signal][class@Gtk.SignalAction]
|
||||
* which gets emitted when the user activates the currently
|
||||
* focused item.
|
||||
*
|
||||
@ -763,7 +763,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
|
||||
* @modify: whether to modify the selection
|
||||
*
|
||||
* The ::move-cursor signal is a
|
||||
* [keybinding signal][GtkSignalAction]
|
||||
* [keybinding signal][class@Gtk.SignalAction]
|
||||
* which gets emitted when the user initiates a cursor movement.
|
||||
*
|
||||
* Applications should not connect to it, but may emit it with
|
||||
|
@ -1336,7 +1336,7 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
|
||||
* @modify: whether to modify the selection
|
||||
*
|
||||
* The `GtkTreeView`::move-cursor signal is a [keybinding
|
||||
* signal][GtkSignalAction] which gets emitted when the user
|
||||
* signal][class@Gtk.SignalAction] which gets emitted when the user
|
||||
* presses one of the cursor keys.
|
||||
*
|
||||
* Applications should not connect to it, but may emit it with
|
||||
|
Loading…
Reference in New Issue
Block a user