From 0b6932cf263ac3dc68640e3f59e0d83678315aea Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Fri, 1 Aug 2008 22:52:06 +0000 Subject: Separate the glib and gobject bindings in the manual. 2008-08-02 Johan Dahlin * docs/Makefile.am: * docs/reference/pyglib-constants.xml: * docs/reference/pyglib-functions.xml: * docs/reference/pyglib-maincontext.xml: * docs/reference/pyglib-mainloop.xml: * docs/reference/pygobject-classes.xml: * docs/reference/pygobject-constants.xml: * docs/reference/pygobject-functions.xml: * docs/reference/pygobject-maincontext.xml: * docs/reference/pygobject-mainloop.xml: Separate the glib and gobject bindings in the manual. svn path=/trunk/; revision=910 --- docs/reference/pygobject-mainloop.xml | 202 ---------------------------------- 1 file changed, 202 deletions(-) delete mode 100644 docs/reference/pygobject-mainloop.xml (limited to 'docs/reference/pygobject-mainloop.xml') diff --git a/docs/reference/pygobject-mainloop.xml b/docs/reference/pygobject-mainloop.xml deleted file mode 100644 index d90f534..0000000 --- a/docs/reference/pygobject-mainloop.xml +++ /dev/null @@ -1,202 +0,0 @@ - - - - - - gobject.MainLoop - - an object representing the main event loop of a PyGTK - application. - - - - Synopsis - - - gobject.MainLoop - - gobject.MainLoop - contextNone - is_running0 - - - get_context - - - is_running - - - quit - - - run - - - - - - - Ancestry - -+-- gobject.MainLoop - - - - - - Description - - gobject.MainLoop -represents a main event loop. A gobject.MainLoop -is created with the gobject.MainLoop() -constructor. After adding the initial event sources, the run() -method is called. This continuously checks for new events from each of the -event sources and dispatches them. Finally, the processing of an event from -one of the sources leads to a call to the quit() -method to exit the main loop, and the run() -method returns. - - It is possible to create new instances of gobject.MainLoop -recursively. This is often used in PyGTK applications -when showing modal dialog boxes. Note that event sources are associated with -a particular gobject.MainContext, -and will be checked and dispatched for all main loops associated with that -gobject.MainContext. - - PyGTK contains wrappers of some of these -functions, e.g. the gtk.main(), gtk.main_quit() -and gtk.events_pending() -functions. - - - - - Constructor - - - gobject.MainLoop - contextNone - is_runningNone - - - - context : - a gobject.MainContext - or None to use the default - context. - - - is_running : - if TRUE indicates that the - loop is running. This is not very important since calling the run() - method will set this to TRUE - anyway. - - - Returns : - a new gobject.MainLoop - object. - - - - Creates a new gobject.MainLoop -object. - - - - - Methods - - - gobject.MainLoop.get_context - - - get_context - - - - Returns : - the gobject.MainContext - the mainloop is associated with - - - - The get_context() method returns the -gobject.MainContext -that the mainloop was created with. - - - - - gobject.MainLoop.is_running - - - is_running - - - - Returns : - TRUE if the mainloop is - currently being run. - - - - The is_running() method checks to see -if the mainloop is currently being run via the run() -method. - - - - - gobject.MainLoop.quit - - - quit - - - The quit() method stops the mainloop -from running. Any subsequent calls to the run() -method will return immediately. - - - - - gobject.MainLoop.run - - - run - - - The run() method runs a mainloop until -the quit() -method is called. If this is called for the thread of the loop's gobject.MainContext, -it will process events from the loop, otherwise it will simply wait. - - - - - - -- cgit