TVision
view release on metacpan or search on metacpan
demo/demo1.pl view on Meta::CPAN
use strict;
use TVision;
my $tapp = tnew 'TVApp';
my $desktop = $tapp->deskTop;
my $w = tnew TWindow=>([1,1,120,15],'Ð¼Ð¾Ñ Ð¾ÐºÐ½Ð¾, ÑоваÑиÑи',5);
my $w2 = tnew TWindow => ([16,1,120,30],'Ð¼Ð¾Ñ Ð¾ÐºÐ½Ð¾, ÑоваÑиÑи',5);
my $d = tnew TDialog => ([52,13,90,19],'dialog');
my $b2 = tnew TButton => ([1,1,30,3],'кнопка2',125,0);
my $b = tnew TButton => ([100,2,118,4],'кнопка',123,0);
my $checkboxes = tnew TCheckBoxes => ([3,3,81,9],['a'..'s']);
my $radiobtns = tnew TRadioButtons => ([3,23,81,29],['z'..'dt']);
my $e = tnew TInputLine => ([3,31,81,32],100);
my $st = tnew TStaticText => ([5,10,100,11],"ÑÑаÑ.ÑекÑÑ");
my $sb1 = tnew TScrollBar => ([51,11,100,11]);
my $sb2 = tnew TScrollBar => ([1,1,20,1]);
my $ind = tnew TIndicator => ([1,21,10,21]);
#my $tedit = tnew TEditor => (50,6,110,36, $TVision::NULL, $TVision::NULL, $TVision::NULL, 1000);
my $tedit = tnew TEditor => ([1,1,110,16], $sb1, $sb2, $ind, 1000);
$desktop->insert($w);
$desktop->insert($w2);
$desktop->insert($e);
$desktop->insert($radiobtns);
$desktop->insert($d);
$w->insert($b2);
$w->insert($checkboxes);
$w->insert($st);
$desktop->insert($b);
$w2->insert($tedit);
$tapp->on_idle(sub {$::e++});
#$tapp->handleEvent(sub {print "handleEvent\n"});
$tapp->onCommand(sub {
my ($cmd, $arg) = @_;
print "command[@_]\n";
if ($cmd == 123) {
#button pressed
$e->setData("[".$e->getData."]");
$b->setTitle("пеÑекнопка");
$e->blockCursor;
$b->locate([15,15,30,17]);
}
elsif ($cmd == 125) {
$e->normalCursor;
}
});
$tapp->run;
print "r=$::r e=$::e, input-line->getData =", $e->getData(), ";\n";
( run in 1.724 second using v1.01-cache-2.11-cpan-364913b4093 )