__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# 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
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| images | Folder | 0755 |
|
|
| msgs | Folder | 0755 |
|
|
| ttk | Folder | 0755 |
|
|
| bgerror.tcl | File | 8.33 KB | 0644 |
|
| button.tcl | File | 20.34 KB | 0644 |
|
| choosedir.tcl | File | 9.43 KB | 0644 |
|
| clrpick.tcl | File | 20.91 KB | 0644 |
|
| comdlg.tcl | File | 8.17 KB | 0644 |
|
| console.tcl | File | 31.44 KB | 0644 |
|
| dialog.tcl | File | 5.68 KB | 0644 |
|
| entry.tcl | File | 17.34 KB | 0644 |
|
| focus.tcl | File | 4.74 KB | 0644 |
|
| fontchooser.tcl | File | 17.3 KB | 0644 |
|
| iconlist.tcl | File | 16.45 KB | 0644 |
|
| icons.tcl | File | 10.63 KB | 0644 |
|
| listbox.tcl | File | 14.35 KB | 0644 |
|
| megawidget.tcl | File | 9.34 KB | 0644 |
|
| menu.tcl | File | 37.51 KB | 0644 |
|
| mkpsenc.tcl | File | 28.66 KB | 0644 |
|
| msgbox.tcl | File | 15.98 KB | 0644 |
|
| obsolete.tcl | File | 5.46 KB | 0644 |
|
| optMenu.tcl | File | 1.55 KB | 0644 |
|
| palette.tcl | File | 7.98 KB | 0644 |
|
| panedwindow.tcl | File | 5.05 KB | 0644 |
|
| safetk.tcl | File | 7.2 KB | 0644 |
|
| scale.tcl | File | 8.19 KB | 0644 |
|
| scrlbar.tcl | File | 12.43 KB | 0644 |
|
| spinbox.tcl | File | 15.58 KB | 0644 |
|
| tclIndex | File | 19.79 KB | 0644 |
|
| tearoff.tcl | File | 5 KB | 0644 |
|
| text.tcl | File | 32.94 KB | 0644 |
|
| tk.tcl | File | 22.85 KB | 0644 |
|
| tkAppInit.c | File | 4.51 KB | 0644 |
|
| tkfbox.tcl | File | 37.42 KB | 0644 |
|
| unsupported.tcl | File | 10.01 KB | 0644 |
|
| xmfbox.tcl | File | 25.39 KB | 0644 |
|