Window Items |
||||
|
Items of type window cause a particular window to be displayed at a given position on the canvas. Window items are created with widget commands of the following form: (#<widget> 'create 'window x y ?option value option value ...?) (#<widget> 'create 'window coordList ?option value option value ...?) The arguments x and y or coordList specify the coordinates of a point used to position the window on the display (see the #:anchor option below for more information on how bitmaps are displayed). After the coordinates there may be any number of option-value pairs, each of which sets one of the configuration options for the item. These same option-value pairs may be used in itemconfigure widget commands to change the item's configuration. The following standard options are supported by window items: #:state #:tags The following extra options are supported for window items:
Note: due to restrictions in the ways that windows are managed, it is not possible to draw other graphical items (such as lines and images) on top of window items. A window item always obscures any graphics that overlap it, regardless of their order in the display list. |