hwtk::label
Displays a text string and/or image.
Format
hwtk::label - pathName ?option value? …
Description
A hwtk::label widget displays a textual label and/or image. The label may be linked to a Tcl variable to automatically change the displayed text.
Standard Options
- -borderwidth
- Database name: borderWidth
- -clientdata
- Database name: clientData
- -compound
- Database name: compound
- -cursor
- Database name: cursor
- -help
- Database name: help
- -helpcommand
- Database name: helpcommand
- -image
- Database name: image
- -relief
- Database name: relief
- -state
- Database name: state
- -takefocus
- Database name: takeFocus
- -text
- Database name: text
- -textvariable
- Database name: textVariable
- -underline
- Database name: underline
- -width
- Database name: width
Widget-Specific Options
- -anchor
- Database name: anchor
- -justify
- Database name: justify
- -padding
- Database name: padding
- -relief
- Database name: relief
- -wraplength
- Database name: wrapLength
Widget Command
- pathName configure ?option? ?value option value …?
- Query or modify the configuration options of the widget. If one or more option-value pairs are specified, then the command modifies the given widget option(s) to have the given value(s); in this case the command returns an empty string. If option is specified with no value, then the command returns a list describing the named option: the elements of the list are the option name, database name, database class, default value, and current value. If no option is specified, returns a list describing all of the available options for pathName.
- pathName cget option
- Returns the current value of the configuration option given by option.
- pathName identify element x y
- Returns the name of the element under the point given by x and y, or an empty string if the point does not lie within any element. x and y are pixel coordinates relative to the widget. Some widgets accept other identify subcommands.
- pathName instate statespec ?script?
- Test the widget’s state. If script is not specified, returns 1 if the
widget state matches statespec and 0 otherwise. If script is specified,
equivalent to
if{[pathNameinstatestateSpec]}script
- pathName state ?stateSpec?
- Modify or inquire widget state. If stateSpec is
present, sets the widget state: for each flag in
stateSpec, sets the corresponding flag or clears it
if prefixed by an exclamation point. Returns a new state spec indicating
which flags were changed:
will restore pathName to the original state. If stateSpec is not specified, returns a list of the currently-enabled state flags.setchanges[pathNamestatespec]
pathNamestate$changes
Example
#::hwtk::label
::hwtk::dialog .d -title "::hwtk::label"
set f [.d recess]
::hwtk::label $f.l1 -relief sunken -image productHyperWorks-24.png -help "Image label"
::hwtk::label $f.l2 -text "Text label" -help "Text label with flat relief"
::hwtk::label $f.l3 -text "Text label relief raised" -relief raised -help "Text label with raised relief"
grid $f.l1 -sticky w
grid $f.l2 -sticky w
grid $f.l3 -sticky w
.d post