November 1999
Intermediate to advanced
832 pages
19h 28m
English
For each instance of a widget, a new command is created that operates on that widget. This is called the widget instance command. Its name is the same as the Tk pathname of the widget. In the clock example, all that is done on instances is to query and change their attributes. Most of the work is done by Tk_ConfigureWidget and ClockConfigure, which are shown in the next section. The ClockInstanceCmd command procedure is shown in the next example:
static int ClockInstanceCmd(clientData, interp, argc, argv) ClientData clientData;/* A pointer to a Clock struct */ Tcl_Interp *interp; /* The interpreter */ int argc; /* The number of arguments */ char *argv[]; /* The ... |
Read now
Unlock full access