TclEvents.h File Reference

#include "TCL_Global.h"

Include dependency graph for TclEvents.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

int tcl_check_one_event (void)
void flushTKEvents (void)
int TclEventsLoop (void)


Function Documentation

void flushTKEvents ( void   ) 

Definition at line 8 of file TclEvents.c.

Referenced by C2F(), OpenTCLsci(), sxevents(), TextMessage1(), xevents1(), Xorgetchar(), and XtMyLoop().

00009 {
00010         if( GetWITH_GUI() ) 
00011         {
00012                 while (Tcl_DoOneEvent(TCL_ALL_EVENTS | TCL_DONT_WAIT)==1)
00013                 {
00014                 }
00015         }
00016 }

Here is the caller graph for this function:

int tcl_check_one_event ( void   ) 

Definition at line 18 of file TclEvents.c.

References GetWITH_GUI().

00019 {
00020         int bRes=0;
00021 
00022         if( GetWITH_GUI() ) 
00023         {
00024                 bRes=Tcl_DoOneEvent ( TCL_DONT_WAIT);
00025         }
00026         return bRes;
00027 }

Here is the call graph for this function:

int TclEventsLoop ( void   ) 

Definition at line 29 of file TclEvents.c.

Referenced by TextMessage1().

00030 {
00031         return (Tcl_DoOneEvent (TCL_ALL_EVENTS | TCL_DONT_WAIT) == 1);
00032 }

Here is the caller graph for this function:


Generated on Sun Mar 4 16:13:29 2007 for Scilab [trunk] by  doxygen 1.5.1