Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
tk8.6 /
Delete
Unzip
Name
Size
Permission
Date
Action
demos
[ DIR ]
drwxr-xr-x
2023-12-23 09:39
images
[ DIR ]
drwxr-xr-x
2023-12-23 09:39
msgs
[ DIR ]
drwxr-xr-x
2023-12-23 09:39
ttk
[ DIR ]
drwxr-xr-x
2023-12-23 09:39
bgerror.tcl
8.05
KB
-rw-r--r--
2019-10-16 17:25
button.tcl
20.16
KB
-rw-r--r--
2019-10-16 17:25
choosedir.tcl
9.43
KB
-rw-r--r--
2019-10-16 17:25
clrpick.tcl
20.93
KB
-rw-r--r--
2019-10-16 17:25
comdlg.tcl
8.04
KB
-rw-r--r--
2019-10-16 17:25
console.tcl
32.02
KB
-rw-r--r--
2019-10-16 17:25
dialog.tcl
5.88
KB
-rw-r--r--
2019-10-16 17:25
entry.tcl
16.55
KB
-rw-r--r--
2019-10-16 17:25
focus.tcl
4.74
KB
-rw-r--r--
2019-10-16 17:25
fontchooser.tcl
15.47
KB
-rw-r--r--
2019-10-16 17:25
iconlist.tcl
15.6
KB
-rw-r--r--
2019-10-16 17:25
icons.tcl
10.63
KB
-rw-r--r--
2019-10-16 17:25
listbox.tcl
14.25
KB
-rw-r--r--
2019-10-16 17:25
megawidget.tcl
9.34
KB
-rw-r--r--
2019-10-16 17:25
menu.tcl
37.12
KB
-rw-r--r--
2019-10-16 17:25
mkpsenc.tcl
28.66
KB
-rw-r--r--
2019-10-16 17:25
msgbox.tcl
16.08
KB
-rw-r--r--
2019-10-16 17:25
obsolete.tcl
5.46
KB
-rw-r--r--
2019-10-16 17:25
optMenu.tcl
1.55
KB
-rw-r--r--
2019-10-16 17:25
palette.tcl
7.74
KB
-rw-r--r--
2019-10-16 17:25
panedwindow.tcl
5.05
KB
-rw-r--r--
2019-10-16 17:25
safetk.tcl
7.21
KB
-rw-r--r--
2019-10-16 17:25
scale.tcl
7.58
KB
-rw-r--r--
2019-10-16 17:25
scrlbar.tcl
12.45
KB
-rw-r--r--
2019-10-16 17:25
spinbox.tcl
15.27
KB
-rw-r--r--
2019-10-16 17:25
tclIndex
19.79
KB
-rw-r--r--
2019-10-16 17:25
tearoff.tcl
5.02
KB
-rw-r--r--
2019-10-16 17:25
text.tcl
32.31
KB
-rw-r--r--
2019-10-16 17:25
tk.tcl
22.6
KB
-rw-r--r--
2019-10-16 17:25
tkfbox.tcl
37.47
KB
-rw-r--r--
2019-10-16 17:25
unsupported.tcl
10.01
KB
-rw-r--r--
2019-10-16 17:25
xmfbox.tcl
25.46
KB
-rw-r--r--
2019-10-16 17:25
Save
Rename
# optMenu.tcl -- # # This file defines the procedure tk_optionMenu, which creates # an option button and its associated menu. # # Copyright (c) 1994 The Regents of the University of California. # Copyright (c) 1994 Sun Microsystems, Inc. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # ::tk_optionMenu -- # This procedure creates an option button named $w and an associated # menu. Together they provide the functionality of Motif option menus: # they can be used to select one of many values, and the current value # appears in the global variable varName, as well as in the text of # the option menubutton. The name of the menu is returned as the # procedure's result, so that the caller can use it to change configuration # options on the menu or otherwise manipulate it. # # Arguments: # w - The name to use for the menubutton. # varName - Global variable to hold the currently selected value. # firstValue - First of legal values for option (must be >= 1). # args - Any number of additional values. proc ::tk_optionMenu {w varName firstValue args} { upvar #0 $varName var if {![info exists var]} { set var $firstValue } menubutton $w -textvariable $varName -indicatoron 1 -menu $w.menu \ -relief raised -highlightthickness 1 -anchor c \ -direction flush menu $w.menu -tearoff 0 $w.menu add radiobutton -label $firstValue -variable $varName foreach i $args { $w.menu add radiobutton -label $i -variable $varName } return $w.menu }