tablelist::addDateMentry Commandtablelist::addTimeMentry Commandtablelist::addFixedPointMentry Commandtablelist::addIPAddrMentry CommandThe multi-entry package Mentry is a library extension for Tcl/Tk version 8.0 or higher, written in pure Tcl/Tk code. Its download location is
http://www.nemethi.de
Tablelist supports interactive cell editing with the aid of the
mentry widgets of type "Date", "Time",
"FixedPoint", and "IPAddr". The
steps needed for using one of these widgets for editing the cells
of a given column are as follows:
columnconfigure
subcommand to set the given column's -editable option
to true and its -editwindow
option to the value returned by the command mentioned above.
(These options are supported at cell level, too, with the aid of
the cellconfigure
subcommand.)tablelist::addDateMentry Commandtablelist::addDateMentry - Register the mentry
widget of type "Date" for interactive cell
editingtablelist::addDateMentry format separator ?-gmt? ?name?
mentry::dateMentry command from the Mentry
package for interactive cell editing in tablelist widgets.
The format and separator
arguments have the same meanings as in the
mentry::dateMentry command. If the
-gmt argument is present then both the internal
clock value and its external date representation in the mentry
widget will be viewed as Greenwich Mean Time, otherwise as local
time. The second optional argument specifies the name to be
used for the mentry widget as the value of the -editwindow
column or cell configuration option. It may be any string
that is different from entry,
spinbox, checkbutton,
ttk::entry,
ttk::checkbutton, and
ttk::combobox. The default is
dateMentry. The command returns its
name argument.name as
the value of its -editwindow option must
contain as internal cell values date information in seconds
(displayed with the aid of a command given by the -formatcommand
column configuration option). The finishediting
subcommand of the Tcl command associated with the tablelist widget
will retrieve the contents of the embedded window used for
interactive cell editing by invoking the
mentry::getClockVal command. The value
returned by this command (a clock value in seconds or one of the
error strings "EMPTY", "BAD",
"BAD_DATE", or "BAD_YEAR") will be passed
to the script corresponding to the -editendcommand
tablelist configuration option (if any), as its last
argument. If this value is one of the above error strings
then the script should reject the mentry's contents by invoking the
rejectinput
subcommand.tablelist::addTimeMentry Commandtablelist::addTimeMentry - Register the mentry
widget of type "Time" for interactive cell
editingtablelist::addTimeMentry format separator ?-gmt? ?name?
mentry::timeMentry command from the Mentry
package for interactive cell editing in tablelist widgets.
The format and separator
arguments have the same meanings as in the
mentry::timeMentry command. If the
-gmt argument is present then both the internal
clock value and its external time representation in the mentry
widget will be viewed as Greenwich Mean Time, otherwise as local
time. The second optional argument specifies the name to be
used for the mentry widget as the value of the -editwindow
column or cell configuration option. It may be any string
that is different from entry,
spinbox, checkbutton,
ttk::entry,
ttk::checkbutton, and
ttk::combobox. The default is
timeMentry. The command returns its
name argument.name as
the value of its -editwindow option must
contain as internal cell values time information in seconds
(displayed with the aid of a command given by the -formatcommand
column configuration option). The finishediting
subcommand of the Tcl command associated with the tablelist widget
will retrieve the contents of the embedded window used for
interactive cell editing by invoking the
mentry::getClockVal command. The value
returned by this command (a clock value in seconds or one of the
error strings "EMPTY" or "BAD") will be
passed to the script corresponding to the -editendcommand
tablelist configuration option (if any), as its last
argument. If this value is one of the above error strings
then the script should reject the mentry's contents by invoking the
rejectinput
subcommand.tablelist::addFixedPointMentry Commandtablelist::addFixedPointMentry - Register the
mentry widget of type "FixedPoint" for interactive
cell editingtablelist::addFixedPointMentry count1 count2 ?-comma? ?name?
mentry::fixedPointMentry command from the
Mentry package for interactive cell editing in tablelist
widgets. The count1,
count2, and -comma
arguments have the same meanings as in the
mentry::fixedPointMentry command. The
second optional argument specifies the name to be used for the
mentry widget as the value of the -editwindow
column or cell configuration option. It may be any string
that is different from entry,
spinbox, checkbutton,
ttk::entry,
ttk::checkbutton, and
ttk::combobox. The default is
fixedPointMentry_count1.count2
(e.g., fixedPointMentry_6.2) or
fixedPointMentry_count1,count2
(e.g., fixedPointMentry_6,2), depending on the
presence of the optional -comma argument.
The command returns its name argument.name as
the value of its -editwindow option must
contain real numbers as internal cell values. The finishediting
subcommand of the Tcl command associated with the tablelist widget
will retrieve the contents of the embedded window used for
interactive cell editing by invoking the
mentry::getReal command. The value
returned by this command (a real number or the error string
"EMPTY") will be passed to the script corresponding to
the -editendcommand
tablelist configuration option (if any), as its last
argument. If this value is the above error string then the
script should reject the mentry's contents by invoking the
rejectinput
subcommand.tablelist::addIPAddrMentry Commandtablelist::addIPAddrMentry - Register the mentry
widget of type "IPAddr" for interactive cell
editingtablelist::addIPAddrMentry ?name?
tablelist::addIPAddrMentry command from the
Mentry package for interactive cell editing in tablelist
widgets. The optional argument specifies the name to be used
for the mentry widget as the value of the -editwindow
column or cell configuration option. It may be any string
that is different from entry,
spinbox, checkbutton,
ttk::entry,
ttk::checkbutton, and
ttk::combobox. The default is
ipAddrMentry. The command returns its
name argument.name as
the value of its -editwindow option must
contain IP addresses as internal cell values. The finishediting
subcommand of the Tcl command associated with the tablelist widget
will retrieve the contents of the embedded window used for
interactive cell editing by invoking the
mentry::getIPAddr command. The value
returned by this command (an IP address or the error string
"EMPTY") will be passed to the script corresponding to
the -editendcommand
tablelist configuration option (if any), as its last
argument. If this value is the above error string then the
script should reject the mentry's contents by invoking the
rejectinput
subcommand.