Interactive Tablelist Cell Editing Using Tk Core Widgets
For Tablelist Version 5.13
by
Csaba Nemethi
csaba.nemethi@t-online.deContents
- Overview
- Interactive Cell Editing Using the entry Widget
- Interactive Cell Editing Using the text Widget
- Interactive Cell Editing Using the spinbox Widget
- Interactive Cell Editing Using the checkbutton Widget
- Interactive Cell Editing Using the menubutton Widget
Overview
Tablelist supports interactive cell editing with the aid of the Tk core entry, text, spinbox, checkbutton, and menubutton widgets. These widgets are automatically registered for cell editing, hence the only action needed for using one of them for editing the cells of a given column is as follows:
Use the tablelist widget's columnconfigure
subcommand to set the given column's -editable option
to true and its -editwindow
option to entry, text,
spinbox, checkbutton, or
menubutton, respectively. (These options
are supported at cell level, too, with the aid of the cellconfigure
subcommand.) Since the default value of the
-editwindow column configuration option is
entry, it is not necessary to set it explicitly
if the editing should take place with the aid of an embedded entry
widget.
Interactive Cell Editing Using the entry Widget
- DESCRIPTION
- As mentioned above, the interactive cell editing in a tablelist
widget takes place per default with the aid of an embedded entry
widget. Refer to the INTERACTIVE CELL EDITING
section of the reference page describing the
tablelist::tablelistcommand for details on the editing process. - KEYWORDS
- tablelist, editing, entry
Interactive Cell Editing Using the text Widget
- DESCRIPTION
- The temporary embedded text widget used for interactive cell
editing will be created with its
-padxand-padyoptions set to2, its-wrapoption set tonone, and its initial height set to the number of lines contained in it. There is, however, an exception from this rule: If the-wrapoption of the cell's column was set to true and Tk version 8.5 or higher is being used, then the text widget's-wrapoption will be set towordand its initial height will equal the number of display lines (taking into account the line wraps) contained in it. You can use the script corresponding to the-editstartcommandtablelist configuration option to override the initial settings according to your needs. - If the text widget's
-wrapoption was set towordorchar(either by Tablelist or from within the above-mentioned script) and Tk version 8.5 or higher is being used, then, whenever its width changes (e.g., due to interactive column resizing), its height will be set automatically to the number of display lines contained in it. (The number of display lines is retrieved with the aid of thecount -displaylinestext widget subcommand, introduced in Tk 8.5.) - If the widget callback package Wcb was loaded into
the interpreter (via
package require Wcborpackage require wcb) then the text widget's height will be updated automatically whenever text is inserted into or deleted from it, which makes the editing much more user-friendly. This is achieved by using an appropriately defined after-insertand after-deletecallback for the edit window. You can use the script corresponding to the-editstartcommandtablelist configuration option to define further callbacks for the text widget. (The above-mentioned callback is created viawcb::cbappend, after returning from that script.) - The
Tabkey is reserved for navigation between the editable cells, but the user can insert a tabulator character into the text widget by pressingControl-i. - Unlike in the case of the other widgets used for
interactive cell editing, the
ReturnandKP_Enterkeys insert a newline character into the text widget.Control-jcan also be used for inserting a newline.Control-ReturnandControl-KP_Enterterminate the editing and destroy the edit window. Control-HomeandControl-Endhave their well-known text widget-specific bindings, just likeMeta-<andMeta->iftk_strictMotifis false. Again, this is different from the behavior of the other widgets used for interactive cell editing. For jumping into the first/last editable cell, the user can pressAlt-Home/Alt-EndorMeta-Home/Meta-End(Command-Home/Command-Endon Mac OS Classic and Mac OS X Aqua).- KEYWORDS
- tablelist, editing, text
Interactive Cell Editing Using the spinbox Widget
- DESCRIPTION
- The temporary embedded spinbox widget used for interactive cell
editing will be created with its
-stateoption set tonormal, which makes the widget editable. You can use the script corresponding to the-editstartcommandtablelist configuration option to set the state of the spinbox toreadonlyor define validations for it, as well as for setting its (range of) values and its-wrapoption. - KEYWORDS
- tablelist, editing, spinbox
Interactive Cell Editing Using the checkbutton Widget
- DESCRIPTION
- On Windows, Mac OS Classic, and Mac OS X Aqua the temporary
embedded checkbutton widget used for interactive cell editing will
be created with explicitly set values for its
-borderwidth,-font,-padx,-pady, and-variableoptions. In an X11 environment it will be created with explicitly set values for its-borderwidth,-indicatoron,-image,-selectimage,-selectcolor, and-variableoptions. You can use the script corresponding to the-editstartcommandtablelist configuration option to set any other options, like-offvalueand-onvalue, according to the internal values of the cells. Since the default values of the-offvalueand-onvaluecheckbutton options are0and1, you don't need to change these options if the cells have the same internal values0and1. - KEYWORDS
- tablelist, editing, checkbutton
Interactive Cell Editing Using the menubutton Widget
- DESCRIPTION
- The temporary embedded menubutton widget used for interactive
cell editing will be created with explicitly set values for its
-anchor,-indicatoron,-justify,-padx,-pady,-relief, and-textvariableoptions. In addition, a menu with its-tearoffoption set to0and an appropriate script as the value of its-postcommandoption is created and set as the value of the menubutton's-menuoption. In an X11 environment, the menu's appearance is adapted to that of the tablelist widget by setting its-background,-foreground,-activebackground,-activeforeground, and-activeborderwidthoptions to appropriate values. You can use the script corresponding to the-editstartcommandtablelist configuration option to set any other options of the menubutton and/or its associated menu. You will, however, need this script in the first place for populating the menu, preferably with radiobutton entries. For every radiobutton entry added to the menu, the Tablelist implementation will make sure that its value (which can be specified by setting the entry's-valueor-labeloption) will be displayed in the menubutton as its text when the entry is selected. (Tablelist achieves this by setting the menu entry's-variableoption to the value of the menubutton's-textvariableoption.) For menu entries of types other than radiobutton (e.g., for command entries) it is the responsibility of the application to make sure that the selected entry's text will be shown in the menubutton (for example, with the aid of the menu entry's-commandoption). - KEYWORDS
- tablelist, editing, menubutton