File: reindex.pl

package info (click to toggle)
perl-tk 1%3A800.025-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 18,444 kB
  • ctags: 19,081
  • sloc: ansic: 206,740; perl: 40,187; makefile: 4,371; sh: 2,373; yacc: 762
file content (33 lines) | stat: -rwxr-xr-x 654 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl

use lib qw(/home1/gbartels/textlist);
use Tk;

use Tk::TextReindex qw(Tk::ROText ROTextReindex);

$mw=new MainWindow;

my $idx;

$w=$mw->ROTextReindex()->pack(-side => "top");
$t=$mw->Label(-textvariable => \$idx)->pack(-side => "bottom");

$w->bind('<Key>',sub{$idx=$w->index("insert")});

$w->insert('end',"abcd\n");
$w->insert('end',"efgh\n");
$w->insert('end',"mnop\n");
$w->insert('end',"qrst\n");
$w->insert('end',"uvwx\n");

$w->insert('2.0',"ijkl\n");

my $string = $w->get('4.0');


my $result = "reading index 4.0 : expect string to equal >q<, actual value is $string \n";
$w->insert('end',$result);

print $result;

MainLoop;