Looking for a "Select All" feature in TCL


 
Thread Tools Search this Thread
Top Forums Programming Looking for a "Select All" feature in TCL
# 1  
Old 06-29-2010
Looking for a "Select All" feature in TCL

I hope thi sis simple...

I have a TCL script which has several checkboxes. Is there a way to have one of the checkboxes be a "select all" and select/deselect all of the other boxes?

Can you show me a mini-sample?

Thanks... Scott E.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. What is on Your Mind?

New Feature: Tagging Threads as "Solved"

We just added a new feature. When tagging a thread, if you tag the thread "solved" the title of the thread will show up as blue (#0000FF) in various places (forum view, top stats, etc.) So, if you want to show your thread as "solved" simply add a "solved" tag to the thread taglist. ... (16 Replies)
Discussion started by: Neo
16 Replies

3. Shell Programming and Scripting

TCL: syntax error in expression with "*"

I'm using tcl scripts in ns2 ( network simulator) through cygwin. It works fine , however, I downloaded an example when i run it , I got the following syntax error: syntax error in expression with " *2" : unexpected operator * while executing : "expr $bw *2" invoked from within: "$ns... (1 Reply)
Discussion started by: ENG_MOHD
1 Replies

4. Red Hat

to disable "out off office" feature on QMAIL.

How can I disable out of office feature on qmail. We don't want to be use this feature by users. Especially our boss doesn't want because clients have smartphone so they can answer from everywhere! (0 Replies)
Discussion started by: getrue
0 Replies

5. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

6. Programming

Need a "select all" feature in TCL

I hope this is simple... (I tried looking for help in the Shell Programming and Scripting thread, but got no responses.) I have a TCL script which has several checkboxes. Is there a way to have one of the checkboxes serve as a "select all" and select/deselect all of the other boxes? Can you... (1 Reply)
Discussion started by: scottwevans
1 Replies

7. Shell Programming and Scripting

"directory checksum error" when attempting to install tcl

OS: HP-UX Programs I want to install: expect and tcl I'm lost. I bought the book. I began reading the book. I want to install expect. I've been able to download the .z, and extract it successfully. But, of course, it apparently needs tcl and possibly tk also, and ... I... (0 Replies)
Discussion started by: instant000
0 Replies

8. IP Networking

Which release version of Solaris 10 have "snoop -I" feature

In one of Sun docs I found that a new option, -I, is added to the snoop command.This option specifies for the command to use the new IP layer devices instead of the underlying link-layer device to display traffic data. it is used to enhance IP observability. But in Solaris 10 with release verstion... (0 Replies)
Discussion started by: anando.1980
0 Replies

9. Post Here to Contact Site Administrators and Moderators

vBulletin Exclude Forums from "Get New Posts" Feature

First I would like to say you run an awesome site. I use it pretty much everyday... I am a member of a local Jeep Club Virtual Jeep Club - Powered by vBulletin and we run vBulletin Version 3.7.0. You have a feature we would like to add. In "User CP" -> "Edit Options" you have: Exclude... (3 Replies)
Discussion started by: Ikon
3 Replies
Login or Register to Ask a Question
tixSelect(n)						       Tix Built-In Commands						      tixSelect(n)

__________________________________________________________________________________________________________________________________________________

NAME
tixSelect - Create and manipulate tixSelect widgets SYNOPSIS
tixSelect pathName ?options? SUPER-CLASS The TixSelect class is derived from the TixLabelWidget class and inherits all the commands, options and subwidgets of its super-class. STANDARD OPTIONS
The Select widget supports all the standard options of a frame widget. See the options(n) manual entry for details on the standard options. WIDGET-SPECIFIC OPTIONS [-allowzero allowZero] A boolean value that specifies whether the selection can be empty. When set to false, at least one button subwidget must be selected at any time. Note: When the Select widget is first constructed, the default selection is always empty, even if -allowzero is set to false. [-button- type buttonType] The type of buttons to be used as subwidgets inside the Select widget. By default, the standard Tk button widget class is used. [-command command] Specifies the TCL command to be executed when the -value of the Select widget is changed. This command will be invoked with two arguments. The first is the name of the button subwidget that has toggled. The second is a boolean value indicating whether the button subwidget is selected. This command is executed only when the -disableCallback option is set to false. [-disablecall- back disableCallback] A boolean value indicating whether callbacks should be disabled. When set to true, the TCL command specified by the -command option is not executed when the -value of the Select widget changes. Name: orientation Class: Orientation Switch: -orientation Alias: -orient Specifies the orientation of the button subwidgets. Only the values horizontal and vertical are recognized. This is a static option and it can only be assigned during the creation of the widget. [-label label] Specifies the string to display as the label of this Select widget. [-labelside labelSide] Specifies where the label should be displayed relative to the Select widget. Valid options are: top, left, right, bottom, none or acrosstop. [-padx padX] Specifies the horizontal padding between two neighboring button sub- widgets. This is a static option and it can only be assigned during the creation of the widget. [-padx padY] Specifies the vertical padding between two neighboring button subwidgets. This is a static option and it can only be assigned during the creation of the widget. [-radio radio] A boolean value that specifies whether the Select widget should act as a radio-box. When set to true, at most one button subwidget can be selected at any time. This is a static option and it can only be assigned during the creation of the widget. [-selectedbg selectedBg] Specifies the background color of all the selected button subwidgets. [-state state] Speci- fies the state of all the buttons inside the Select widget. Only the values normal and disabled are recognized. When the state is set to disabled, all user actions on this Select widget are ignore. [-validatecmd validateCmd] Specifies a TCL command to be called when the -value of the Select widget is about to change. This command is called with one parameter -- the new -value entered by the user. This command is to validate this new value by returning a value it deems valid. [-value value] The value of a Select widget is a list of the names of the button subwidgets that have been selected by the user. When you assign the value of a Select widget using the "config -value" widget command, the TCL command specified by the -command option will be invoked if some button subwidgets are toggled. [-variable variable] Specifies the global variable in which the value of the Select widget should be stored. The value of a Select widget is stored as a list of the names of the button subwidgets that have been selected by the user. The value of the Select widget will be automatically updated when this variable is changed. SUBWIDGETS
Name: label Class: Label The label subwidget. In addition, all the button subwidgets created as a result of the add widget command can be accessed by the subwidget command. They are identified by the buttonName parameter to the add widget command. Here is an example: set s [tixSelect .s] pack $s $s add eat -text Eat $s add sleep -text Sleep $s subwidget eat config -fg green $s subwidget sleep config -fg red _________________________________________________________________ DESCRIPTION
The tixSelect command creates a new window (given by the pathName argument) and makes it into a Select widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the Select widget such as its cur- sor and relief. The Select widget is a container of button subwidgets. It can be used to provide radio-box or check-box style of selection options for the user. WIDGET COMMANDS
The tixSelect command creates a new Tcl command whose name is the same as the path name of the Select widget's window. This command may be used to invoke various operations on the widget. It has the following general form: pathName option ?arg arg ...? PathName is the name of the command, which is the same as the Select widget's path name. Option and the args determine the exact behavior of the command. The following commands are possible for Select widgets: pathName add buttonName ?option value ... ? Adds a new button subwidget with the name buttonName into the Select widget. Additional configuration options can be given to con- figure the new button subwidget. pathName cget option Returns the current value of the configuration option given by option. Option may have any of the values accepted by the tixSelect command. pathName configure ?option? ?value option value ...? Query or modify the configuration options of the widget. If no option is specified, returns a list describing all of the available options for pathName (see Tk_ConfigureInfo for information on the format of this list). If option is specified with no value, then the command returns a list describing the one named option (this list will be identical to the corresponding sublist of the value returned if no option is specified). 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. Option may have any of the values accepted by the tixSelect command. pathName invoke buttonName Invokes the button subwidget with the name buttonName. pathName subwidget name ?args? When no options are given, returns the pathname of the subwidget of the specified name. When options are given, the widget command of the specified subwidget will be called with these options. BINDINGS
When the user presses the left mouse button over the a button subwidget, it will be toggled and the -value option of the tixSelect widget will be changed. EXAMPLE
The following example creates a radio-box style iconbar for the user to choose one value among eat, work or sleep. set s [tixSelect .s -radio true -allowzero false] $s add eat -bitmap [tix getbitmap eat] $s add work -bitmap [tix getbitmap work] $s add sleep -bitmap [tix getbitmap sleep] KEYWORDS
Tix(n), Container Widget Tix 4.0 tixSelect(n)