mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 17:20:07 +00:00
Bug 680822 — Document return value of GtkWidget::draw
Document the boolean accumulator used by GtkWidget::draw and a few other GtkWidget signals. Closes: https://bugzilla.gnome.org/show_bug.cgi?id=680822
This commit is contained in:
parent
9d3a49bbb6
commit
f92a092bac
@ -1721,6 +1721,9 @@ gtk_widget_class_init (GtkWidgetClass *klass)
|
||||
* restore it. The signal emission takes care of calling cairo_save()
|
||||
* before and cairo_restore() after invoking the handler.
|
||||
*
|
||||
* Returns: %TRUE to stop other handlers from being invoked for the event.
|
||||
% %FALSE to propagate the event further.
|
||||
*
|
||||
* Since: 3.0
|
||||
*/
|
||||
widget_signals[DRAW] =
|
||||
@ -1739,6 +1742,9 @@ gtk_widget_class_init (GtkWidgetClass *klass)
|
||||
* GtkWidget::mnemonic-activate:
|
||||
* @widget: the object which received the signal.
|
||||
* @arg1:
|
||||
*
|
||||
* Returns: %TRUE to stop other handlers from being invoked for the event.
|
||||
* %FALSE to propagate the event further.
|
||||
*/
|
||||
widget_signals[MNEMONIC_ACTIVATE] =
|
||||
g_signal_new (I_("mnemonic-activate"),
|
||||
@ -3037,6 +3043,9 @@ gtk_widget_class_init (GtkWidgetClass *klass)
|
||||
* GtkWidget::show-help:
|
||||
* @widget: the object which received the signal.
|
||||
* @help_type:
|
||||
*
|
||||
* Returns: %TRUE to stop other handlers from being invoked for the event.
|
||||
* %FALSE to propagate the event further.
|
||||
*/
|
||||
widget_signals[SHOW_HELP] =
|
||||
g_signal_new (I_("show-help"),
|
||||
|
Loading…
Reference in New Issue
Block a user