Home | History | Annotate | Download | only in gobject

Lines Matching defs:NOTIFY

119   NOTIFY,
324 property_notify_context.quark_notify_queue = g_quark_from_static_string ("GObject-notify-queue");
333 class->notify = NULL;
336 * GObject::notify:
340 * The notify signal is emitted on an object when one of its
350 * g_signal_connect (text_view->buffer, "notify::paste-target-list",
356 * detail strings for the notify signal.
358 gobject_signals[NOTIFY] =
359 g_signal_new (g_intern_static_string ("notify"),
362 G_STRUCT_OFFSET (GObjectClass, notify),
770 g_signal_emit (object, gobject_signals[NOTIFY], g_quark_from_string (pspecs[i]->name), pspecs[i]);
798 * non-zero, the emission of "notify" signals on @object is
823 * Emits a "notify" signal for the property @property_name on @object.
868 * and when it reaches zero, all queued "notify" signals are emitted.
1935 GWeakNotify notify;
1947 wstack->weak_refs[i].notify (wstack->weak_refs[i].data, wstack->object);
1954 * @notify: callback to invoke before the object is freed
1955 * @data: extra data to pass to notify
1965 GWeakNotify notify,
1972 g_return_if_fail (notify != NULL);
1988 wstack->weak_refs[i].notify = notify;
1996 * @notify: callback to search for
2003 GWeakNotify notify,
2010 g_return_if_fail (notify != NULL);
2018 if (wstack->weak_refs[i].notify == notify &&
2030 g_warning ("%s: couldn't find weak ref %p(%p)", G_STRFUNC, notify, data);
2177 GToggleNotify notify;
2192 tstack->toggle_refs[0].notify (tstack->toggle_refs[0].data, tstack->object, is_last_ref);
2198 * @notify: a function to call when this reference is the
2201 * @data: data to pass to @notify
2217 * @object, a strong reference is held. The @notify callback is called
2236 GToggleNotify notify,
2243 g_return_if_fail (notify != NULL);
2268 tstack->toggle_refs[i].notify = notify;
2277 * @notify: a function to call when this reference is the
2280 * @data: data to pass to @notify
2289 GToggleNotify notify,
2296 g_return_if_fail (notify != NULL);
2304 if (tstack->toggle_refs[i].notify == notify &&
2322 g_warning ("%s: couldn't find toggle ref %p(%p)", G_STRFUNC, notify, data);
2386 /* if we went from 2->1 we need to notify toggle refs if any */
2403 /* if we went from 2->1 we need to notify toggle refs if any */