NAME
Tk::Multi::Canvas - Tk composite widget with a scroll window and more
SYNOPSIS
use Tk::Multi::Manager;
use VcsTools::GraphWidget;
my $wmgr = $mw -> MultiManager ( 'title' => 'log test' ,
'menu' => $w_menu ) -> pack ();
$toto = $wmgr -> newSlave('type'=>'MultiVcsGraph', title => 'graph try',
'list' => [1 .. 50 ]) ;
$toto -> createLine(1,1,100,100, -fill => 'red') ;
DESCRIPTION
This composite widget is intented to provide a canvas to draw a VCS revision tree associated with a listbox containing a list of all the revisions.
Note that this widget is derived from Tk::Multi::Any, hence all the functionnalities provided by the Tk::Multi module are provided to this widget.
This widget features :
a scrollable Canvas. This canvas should be used to draw the revision graph
A print button (The shell print command may be modified by setting $printCmd to the appropriate shell command. By default, it is set to 'lp -opostscript')
a clear button
a list box
This widget will forward all unrecognized commands to the Canvas object.
Note that this widget should be created only by the Multi::Manager.
WIDGET-SPECIFIC OPTIONS
title
Some text which will be displayed above the test window.
menu_button
The log window feature a set of menu items which must be added in a menu. This menu ref must be passed with the menu_button prameter to the object during its instaciation
WIDGET-SPECIFIC METHODS
print()
Will raise a popup window with an Entry to modify the actual print command, a print button, a default button (to restore the default print command), and a cancel button.
doPrint()
Print the label and the content of the text window. The print is invoked by dumping the text content into a piped command.
You may want to set up a new command to print correctly on your machine. You may do it by using the setPrintCmd method or by invoking the 'print' method.
setPrintCmd('print command')
Will set the $printCmd class variable to the passed string. You may use this method to set the appropriate print command on your machine. Note that using this method will affect all other Tk::Multi::Canvas object since the modified variable is not an instance variable but a class variable.
clear()
Is just a delete('1.0','end') .
Delegated methods
By default all widget method are delegated to the Text widget. Excepted :
command(-label => 'some text', -command => sub {...} )
Delegated to the menu entry managed by a Tk::Multi::Manager. Calling this method will add a new command to the aforementionned menu.
TO DO
I'm not really satisfied with print management. May be one day, I'll write a print management composite widget which will look like Netscape's print window. But that's quite low on my priority list. Any volunteer ?
AUTHOR
Dominique Dumont, Dominique_Dumont@grenoble.hp.com
Copyright (c) 1998 Dominique Dumont. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
perl(1), Tk(3), Tk::Multi(3), Tk::Multi::Manager(3)