Tcl8.6.10/Tk8.6.10 Documentation > Tk Commands > ttk_scale
Tcl/Tk Applications | Tcl Commands | Tk Commands | [incr Tcl] Package Commands | SQLite3 Package Commands | TDBC Package Commands | tdbc::mysql Package Commands | tdbc::odbc Package Commands | tdbc::postgres Package Commands | tdbc::sqlite3 Package Commands | Thread Package Commands | Tcl C API | Tk C API | [incr Tcl] Package C API | TDBC Package C API
- NAME
- ttk::scale — Create and manipulate a scale widget
- SYNOPSIS
- DESCRIPTION
- STANDARD OPTIONS
- -class, undefined, undefined
- -cursor, cursor, Cursor
- -style, style, Style
- -takefocus, takeFocus, TakeFocus
- -cursor, cursor, Cursor
- WIDGET-SPECIFIC OPTIONS
- -command, command, Command
- -from, from, From
- -length, length, Length
- -orient, orient, Orient
- -to, to, To
- -value, value, Value
- -variable, variable, Variable
- -from, from, From
- WIDGET COMMAND
- INTERNAL COMMANDS
- STYLING OPTIONS
- SEE ALSO
- KEYWORDS
NAME
ttk::scale — Create and manipulate a scale widgetSYNOPSIS
ttk::scale pathName ?options...?DESCRIPTION
A ttk::scale widget is typically used to control the numeric value of a linked variable that varies uniformly over some range. A scale displays a slider that can be moved along over a trough, with the relative position of the slider over the trough indicating the value of the variable.STANDARD OPTIONS
- -class, undefined, undefined
- -cursor, cursor, Cursor
- -style, style, Style
- -takefocus, takeFocus, TakeFocus
- -cursor, cursor, Cursor
WIDGET-SPECIFIC OPTIONS
- Command-Line Name: -command
- Database Name: command
- Database Class: Command
- Database Name: command
- Specifies the prefix of a Tcl command to invoke whenever the scale's value is changed via a widget command. The actual command consists of this option followed by a space and a real number indicating the new value of the scale.
- Command-Line Name: -from
- Database Name: from
- Database Class: From
- Database Name: from
- A real value corresponding to the left or top end of the scale.
- Command-Line Name: -length
- Database Name: length
- Database Class: Length
- Database Name: length
- Specifies the desired long dimension of the scale in screen units (i.e. any of the forms acceptable to Tk_GetPixels). For vertical scales this is the scale's height; for horizontal scales it is the scale's width.
- Command-Line Name: -orient
- Database Name: orient
- Database Class: Orient
- Database Name: orient
- Specifies which orientation whether the widget should be laid out horizontally or vertically. Must be either horizontal or vertical or an abbreviation of one of these.
- Command-Line Name: -to
- Database Name: to
- Database Class: To
- Database Name: to
- Specifies a real value corresponding to the right or bottom end of the scale. This value may be either less than or greater than the -from option.
- Command-Line Name: -value
- Database Name: value
- Database Class: Value
- Database Name: value
- Specifies the current floating-point value of the variable. If -variable is set to an existing variable, specifying -value has no effect (the variable value takes precedence).
- Command-Line Name: -variable
- Database Name: variable
- Database Class: Variable
- Database Name: variable
- Specifies the name of a global variable to link to the scale. Whenever the value of the variable changes, the scale will update to reflect this value. Whenever the scale is manipulated interactively, the variable will be modified to reflect the scale's new value.
WIDGET COMMAND
INTERNAL COMMANDS
- pathName coords ?value?
- Get the coordinates corresponding to value, or the coordinates corresponding to the current value of the -value option if value is omitted.
STYLING OPTIONS
The class name for a ttk::scale is TScale.Dynamic states: active.
TProgressbar styling options configurable with ttk::style are:
-background color
-borderwidth amount
-darkcolor color
-groovewidth amount
-lightcolor color
-sliderwidth amount
-troughcolor color
-troughrelief relief
Some options are only available for specific themes.
See the ttk::style manual page for information on how to configure ttk styles.