HyperWorks Tools

hwtk::scale

hwtk::scale

Previous topic Next topic No expanding text in this topic  

hwtk::scale

Previous topic Next topic JavaScript is required for expanding text JavaScript is required for the print function  

NAME

hwtk::scale - Create and manipulate a scale widget.

 

DESCRIPTION

A hwtk::scale widget is typically used to control the numeric value of a linked variable that varies uniformly over some range.

hwtk::scale

 

CLASS DIAGRAM

::hwtk::widget::HWScale::hwtk::interface::HWIWidget::hwtk::interface::HWIBase::itk::Archetypedigraph HWScale { layout = "dot"; rankdir = LR; ratio = "compress"; edge [color="#333333"] node [shape=rect, style="rounded,filled", fontname="sans-serif, serif", color="#000000", fillcolor="#FCFFF6", penwidth=0.5]; Archetype [label="Archetype", fillcolor="#FFF5FF", tooltip="::itk::Archetype", URL="../_auto/architecture.html"]; HWIBase [label="HWIBase", fillcolor="#E0FFFF", tooltip="::hwtk::interface::HWIBase", ]; HWIWidget [label="HWIWidget", fillcolor="#E0FFFF", tooltip="::hwtk::interface::HWIWidget", ]; HWScale [label="HWScale", fillcolor="#FFEAD8", tooltip="::hwtk::widget::HWScale", URL="scale.html"]; Archetype -> HWIBase; HWIBase -> HWIWidget; HWIWidget -> HWScale; }

 

SYNOPSIS

hwtk::scale - pathName ?option value? ...

 

STANDARD OPTIONS

-clientdata, clientData, ClientData

-help, help, Text

-helpcommand, helpcommand, Command

 

WIDGET-SPECIFIC OPTIONS

 

Command-Line Name: -command

Database Name: command

Database Class: 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

A real value corresponding to the left or top end of the scale.

 

Command-Line Name: -length

Database Name: length

Database Class: 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

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

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

Specifies the current floating-point value of the variable.

 

Command-Line Name: -variable

Database Name: variable

Database Class: 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

In addition to the standard configure, cget, identify, instate, and state commands, scale support the following additional widget 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.

 

pathName get ?x y?

Get the current value of the -value option, or the value corresponding to the coordinates x,y if they are specified. X and y are pixel coordinates relative to the scale widget origin.

 

pathName set ?value?

Set the value of the widget (i.e. the -value option) to value. The value will be clipped to the range given by the -from and -to options. Note that setting the linked variable (i.e. the variable named in the -variable option) does not cause such clipping.

 

EXAMPLES

 

proc ScaleValues {w idx} {

    set c [lindex "Red Orange Yellow Green Blue Violet" [tcl::mathfunc::int $idx]]

    $w configure -foreground $c -text "Color: $c"

}

 

hwtk::dialog .dlg

set recess [.dlg recess]

label $recess.label

hwtk::scale $recess.scale -from 0 -to 5 -command [list ScaleValues $recess.label]

pack $recess.label $recess.scale

 

.dlg post;