#include "TclEvents.h"Include dependency graph for TclEvents.c:

Go to the source code of this file.
Functions | |
| int | GetWITH_GUI (void) |
| void | flushTKEvents (void) |
| int | tcl_check_one_event (void) |
| int | TclEventsLoop (void) |
| void flushTKEvents | ( | void | ) |
Definition at line 8 of file TclEvents.c.
References GetWITH_GUI().
00009 { 00010 if( GetWITH_GUI() ) 00011 { 00012 while (Tcl_DoOneEvent(TCL_ALL_EVENTS | TCL_DONT_WAIT)==1) 00013 { 00014 } 00015 } 00016 }
Here is the call graph for this function:

| int GetWITH_GUI | ( | void | ) |
TODO : comment
Definition at line 297 of file inisci-c.c.
References WITH_GUI.
00298 { 00299 return WITH_GUI; 00300 }
| 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 | ) |
1.5.1