File: README.debian

package info (click to toggle)
libtk-objscanner-perl 2.010-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 120 kB
  • ctags: 20
  • sloc: perl: 493; makefile: 39
file content (35 lines) | stat: -rw-r--r-- 746 bytes parent folder | download
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
34
35
This is the package for libtk-objscanner-perl

A few pieces of errata:

  1) make test does not seem to work. Most of the testing done for 
  this package has been done by hand

  2) 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.

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

Also, this module has been modified to use Scalar::Util, rather than the
deprecated WeakRef.pm module;