hwtk::inputdialog
A hwtk::inputdialog implements a modal dialog to ask user for a value. It displays a label and/or image, and an editor based on input type. Will return the value when OK is pressed.
Format
hwtk::inputdialog - pathName ?option value? …
Standard Options
- -clientdata
- Database name: clientData
- -cursor
- Database name: cursor
- -image
- Database name: image
- -text
- Database name: text
Widget Specific Options
- -buttonboxpos
- Database name: buttonBoxPos
- -destroyonunpost
- Database name: destroyonunpost
- -initialvalue
- Database name: initialValue
- -inputtype
- Database name: inputType
- -title
- Database name: title
- -parent
- Database name: parent
- -valuelistcommand
- Database name: valueListCommand
- -x
- Database name: x
- -y
- Database name: y
Widget Command
The widget is a singleton and its instance is not directly visible by the user. hwtk::inputdialog command will configure and post the dialog instance, hold by the framework. Does not support the standard widget commands like configure, cget.
Example
hwtk::inputdialog -title "Input Dialog"
proc retValues {args} {return list "item a" "item b" "item c"}
hwtk::inputdialog -title "Input Dialog" \
-image add-24.png -text "Choose the items to add:" \
-inputtype combobox -valuelistcommand retValues