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 /
git /
mingw64 /
lib /
tk8.6 /
ttk /
[ HOME SHELL ]
Name
Size
Permission
Action
altTheme.tcl
3.52
KB
-rw-rw-rw-
aquaTheme.tcl
3.42
KB
-rw-rw-rw-
button.tcl
2.86
KB
-rw-rw-rw-
clamTheme.tcl
4.55
KB
-rw-rw-rw-
classicTheme.tcl
3.66
KB
-rw-rw-rw-
combobox.tcl
11.98
KB
-rw-rw-rw-
cursors.tcl
4.51
KB
-rw-rw-rw-
defaults.tcl
4.31
KB
-rw-rw-rw-
entry.tcl
16.59
KB
-rw-rw-rw-
fonts.tcl
5.44
KB
-rw-rw-rw-
menubutton.tcl
6.3
KB
-rw-rw-rw-
notebook.tcl
5.44
KB
-rw-rw-rw-
panedwindow.tcl
2.15
KB
-rw-rw-rw-
progress.tcl
1.06
KB
-rw-rw-rw-
scale.tcl
2.63
KB
-rw-rw-rw-
scrollbar.tcl
3.17
KB
-rw-rw-rw-
sizegrip.tcl
2.34
KB
-rw-rw-rw-
spinbox.tcl
4.7
KB
-rw-rw-rw-
treeview.tcl
9.57
KB
-rw-rw-rw-
ttk.tcl
4.7
KB
-rw-rw-rw-
utils.tcl
8.24
KB
-rw-rw-rw-
vistaTheme.tcl
9.26
KB
-rw-rw-rw-
winTheme.tcl
2.72
KB
-rw-rw-rw-
xpTheme.tcl
1.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cursors.tcl
# # Map symbolic cursor names to platform-appropriate cursors. # # The following cursors are defined: # # standard -- default cursor for most controls # "" -- inherit cursor from parent window # none -- no cursor # # text -- editable widgets (entry, text) # link -- hyperlinks within text # crosshair -- graphic selection, fine control # busy -- operation in progress # forbidden -- action not allowed # # hresize -- horizontal resizing # vresize -- vertical resizing # # Also resize cursors for each of the compass points, # {nw,n,ne,w,e,sw,s,se}resize. # # Platform notes: # # Windows doesn't distinguish resizing at the 8 compass points, # only horizontal, vertical, and the two diagonals. # # OSX doesn't have resize cursors for nw, ne, sw, or se corners. # We use the Tk-defined X11 fallbacks for these. # # X11 doesn't have a "forbidden" cursor (usually a slashed circle); # "pirate" seems to be the conventional cursor for this purpose. # # Windows has an IDC_HELP cursor, but it's not available from Tk. # # Tk does not support "none" on Windows. # namespace eval ttk { variable Cursors # Use X11 cursor names as defaults, since Tk supplies these # on all platforms. # array set Cursors { "" "" none none standard left_ptr text xterm link hand2 crosshair crosshair busy watch forbidden pirate hresize sb_h_double_arrow vresize sb_v_double_arrow nresize top_side sresize bottom_side wresize left_side eresize right_side nwresize top_left_corner neresize top_right_corner swresize bottom_left_corner seresize bottom_right_corner move fleur } # Platform-specific overrides for Windows and OSX. # switch [tk windowingsystem] { "win32" { array set Cursors { none {} standard arrow text ibeam link hand2 crosshair crosshair busy wait forbidden no vresize size_ns nresize size_ns sresize size_ns wresize size_we eresize size_we hresize size_we nwresize size_nw_se swresize size_ne_sw neresize size_ne_sw seresize size_nw_se } } "aqua" { if {[package vsatisfies [package provide Tk] 8.5]} { # appeared 2007-04-23, Tk 8.5a6 array set Cursors { standard arrow text ibeam link pointinghand crosshair crosshair busy watch forbidden notallowed hresize resizeleftright vresize resizeupdown nresize resizeup sresize resizedown wresize resizeleft eresize resizeright } } } } } ## ttk::cursor $cursor -- # Return platform-specific cursor for specified symbolic cursor. # proc ttk::cursor {name} { variable Cursors return $Cursors($name) } ## ttk::setCursor $w $cursor -- # Set the cursor for specified window. # # [ttk::setCursor] should be used in <Motion> bindings # instead of directly calling [$w configure -cursor ...], # as the latter always incurs a server round-trip and # can lead to high CPU load (see [#1184746]) # proc ttk::setCursor {w name} { variable Cursors if {[info exists Cursors($name)]} { set cursorname $Cursors($name) } else { set cursorname $name } if {[$w cget -cursor] ne $cursorname} { $w configure -cursor $cursorname } } ## ttk::saveCursor $w $saveVar $excludeList -- # Set variable $saveVar to the -cursor value from widget $w, # if either: # a. $saveVar does not yet exist # b. the currently user-specified cursor for $w is not in # $excludeList proc ttk::saveCursor {w saveVar excludeList} { upvar $saveVar sv if {![info exists sv]} { set sv [$w cget -cursor] } if {[$w cget -cursor] ni $excludeList} { set sv [$w cget -cursor] } } ## Interactive test harness: # proc ttk::CursorSampler {f} { ttk::frame $f set r 0 foreach row { {nwresize nresize neresize} { wresize move eresize} {swresize sresize seresize} {text link crosshair} {hresize vresize ""} {busy forbidden ""} {none standard ""} } { set c 0 foreach cursor $row { set w $f.${r}${c} ttk::label $w -text $cursor -cursor [ttk::cursor $cursor] \ -relief solid -borderwidth 1 -padding 3 grid $w -row $r -column $c -sticky nswe grid columnconfigure $f $c -uniform cols -weight 1 incr c } grid rowconfigure $f $r -uniform rows -weight 1 incr r } return $f } if {[info exists argv0] && $argv0 eq [info script]} { wm title . "[array size ::ttk::Cursors] cursors" pack [ttk::CursorSampler .f] -expand true -fill both bind . <KeyPress-Escape> [list destroy .] focus .f } #*EOF*
Close