/[iselect]/ISelect.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /ISelect.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 12 by dpavlin, Thu Oct 25 15:50:56 2007 UTC revision 13 by dpavlin, Thu Oct 25 16:08:43 2007 UTC
# Line 7  use Term::Screen; Line 7  use Term::Screen;
7  use Carp qw/cluck confess/;  use Carp qw/cluck confess/;
8  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
9    
10  our $VERSION = '0.00';  use base qw/Class::Accessor/;
11    __PACKAGE__->mk_accessors( qw/
12    lines
13    
14    debug
15    / );
16    
17    
18    our $VERSION = '0.01';
19    
20  =head1 NAME  =head1 NAME
21    
# Line 15  Term::ISelect - perl only implementation Line 23  Term::ISelect - perl only implementation
23    
24  =head1 METHODS  =head1 METHODS
25    
26    =head2 new
27    
28      my $iselect = Term::ISelect->new({
29            lines => [
30                    'first line',
31                    '{s}second selectable line',
32                    '',
33                    'last line',
34            ],                                                          
35            debug => 1
36      });
37    
38  =cut  =cut
39    
40  my $scr;  my $scr;
# Line 212  sub screen { Line 232  sub screen {
232          $scr->clrscr();          $scr->clrscr();
233  }  }
234    
235    =head1 SEE ALSO
236    
237    L<http://www.ossp.org/pkg/tool/iselect/> - Interactive Terminal Selection
238    written by Ralf S. Engelschall which is original implementation in C
239    
240    =head1 AUTHOR
241    
242    Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>
243    
244    =head1 COPYRIGHT & LICENSE
245    
246    Copyright 2006-2007 Dobrica Pavlinusic, All Rights Reserved.
247    
248    This program is free software; you can redistribute it and/or modify it
249    under the same terms as Perl itself.
250    
251    =cut
252    
253  1;  1;

Legend:
Removed from v.12  
changed lines
  Added in v.13

  ViewVC Help
Powered by ViewVC 1.1.26