File: README.Debian

package info (click to toggle)
libtk-objscanner-perl 2.012-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 160 kB
  • ctags: 17
  • sloc: perl: 497; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (6)
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
This is the package for libtk-objscanner-perl

The example may or may not work for you. A very simple demo
would be:

#######################

#!/usr/bin/perl -w

use strict;
use Tk;
use Tk::ObjScanner;



my $mw = MainWindow->new();
my $obj = {'foo' => 'bar'};

my $scanner = $mw->ObjScanner( caller => $obj, title=>"windows")->pack;

MainLoop;


#######################

If this simple program doesn't work, please bug the package. The author's
demo is included for advanced functionality explication.