controlwidget - Collection of widgets for displaying and controlling numerical values
The controlwidget package focuses on the display and interactive control of numerical values. It mimicks several of the meters and controls found in laboratory settings but also daily life: volt meters, equalizers and tachometers to name a few. They can be seen as alternatives for the scale widget.
Note: The package has not sofar been tested extensively, and that may result in an unexpected appearance if you use sizes that are different than the defaults. Also not all options for the coloring of the various parts and fonts and so on have been tested, so that may be another source of bugs.
A last note: some parts have not been included in any option, most notably the colors of parts that require lighter and darker shades to cooperate.
The package distinguishes several typed of widgets:
Vertical meters: the value of the variable is translated into a vertical position, like with the coloured bars you find on your stereo installation.
Angle displays: the value of the variable is related to the angle of a needle, like with tachometers.
Interactive widgets: most widgets allow you to change the value of the variable by pressing the mouse button on the needle and shifting it up and down or left and right.
Non-interactive widgets: some widgets, like the thermometer widget, do not allow such interaction.
Logical or choice widgets: some widgets display the values as either on/off (or true/false) or as one of a set of discrete choices.
All widgets have in common, however, that you can connect them to a variable and that changing the variable changes the display. Forthermore, all widgets have the set and get methods to interact with the value that the widget displays (whether that is stored in a global variable or not).
They also have in common that their appearance and behaviour is determined by one or more options that you can set at creation time and often later on as well. The widgets are all based on the snit package, so that the methods configure and cget are available to set and get these options.
Currently the package contains these widgets of the vertical meter type:
Create a vertical meter consisting of an axis and a moveable arrow.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget:
Create a widget containing one or more vertical sliders and an axis. You can shift the slider handles interactively via the mouse.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget:
Create a widget containing one or more vertical bars resembling those found on hifi graphical equalizers. Note that it is a read-only widget.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget:
Create a thermometer widget (read-only)
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget:
These widgets all use a vertical axis and have the following options in common for configuring the axis:
The package contains the following widget based on angle displays:
Create a voltmeter-like widget.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget:
Create a tachometer-like widget.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget. In addition to the ones given for the voltmeter widget:
Create a rotating dial. You can drag the dial to change the value. With the shift button depressed the value changes slowly, with the control button depressed it changes fast. Similarly, you can control the dial via the mouse wheel, with the shift and control button working in the same way as with the mouse pointer. Note: The shift and control buttons currently have no effect on Windows.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget:
All these widgets have the following methods:
Return the current value or values shown in the widget
Reset the value or values shown in the widget. If the widget is associated with a variable, that variable is set as well.
New value or values for the widget
Two further widgets are available, meant to display logical values:
Create a LED-like widget.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget. In addition to the ones given for the voltmeter widget:
Create a matrix of radio buttons that behaves as a single widget.
Name of the widget to be created.
List of key-value pairs, controlling the appearance and behaviour of the widget. In addition to the ones given for the voltmeter widget:
The LED widget has the following public methods:
Set the state to "on"
Set the state to "off"
Set the state according to the value of "state"
New state for the LED widget
The radioMatrix widget has two public methods:
Return the index of the currently selected radio button
Select the radio button with index "index"
Index of the radio button to be set
The code for most of these widgets first appeared on the Wiki. In many cases, Arjen Markus merely refactored the code a bit and "snitified" some of them. The original code was developed by the following people:
Vertical meter, LED display, radio matrix: Ron Fox
Rotating dials: Gerhard Reithofer
Voltmeter and tachometer: Marco Maggi
Code for moving the needle: ?
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category controlwidget of the Tklib Trackers. Please also report any ideas for enhancements you may have for either package and/or documentation.
Copyright © 2010 Ron Fox <rfox@...>
Copyright © 2010 Gerhard Reithofer <...@...>
Copyright © 2010 Marco Maggi <...@...>
Copyright © 2010 Arjen Markus
<[email protected]>