From 50f42c6c5171af96394cc1ffe41fcc8269cbc95a Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Sat, 28 Jun 2008 12:44:38 +0000 Subject: Document GObject.handler_block_by_func/handler_unblock_by_func 2008-06-28 Johan Dahlin * docs/reference/pygobject.xml: Document GObject.handler_block_by_func/handler_unblock_by_func svn path=/trunk/; revision=789 --- docs/reference/pygobject.xml | 52 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 49 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/reference/pygobject.xml b/docs/reference/pygobject.xml index f8c6df2..ac41e47 100644 --- a/docs/reference/pygobject.xml +++ b/docs/reference/pygobject.xml @@ -117,6 +117,16 @@ linkend="method-gobject--handler-unblock">handler_unblock handler_block_by_func + callable + + + handler_unblock_by_func + callable + + + emit detailed_signal @@ -797,9 +807,45 @@ identifier - The handler_unblock() method unblocks -the signal handler with the specified handler_id -thereby allowing it to be invoked when the associated signal is + + + + gobject.GObject.handler_block_by_func + + + handler_block_by_func + callable + + + + callable : + a callable python object + + + + The handler_block_by_func() method blocks the +all signal handler connected to a specific callable from +being invoked until the callable is unblocked. + + + + + gobject.GObject.handler_unblock_by_func + + + handler_unblock_by_func + callback + + + + callable : + a callable python object + + + + The handler_unblock_by_func() method unblocks +all signal handler connected to a specified callable +thereby allowing it to be invoked when the associated signals are emitted. -- cgit