Help for this page

Select Code to Download


  1. or download this
    my $gv = $root->Scrolled('GraphViz', 
                                 -background => '#B0C0FF', 
                                 -scrollbars=>'se',
                                 ) ->pack (-side=>'top',-expand 
                                            =>1, -fill=>'both');
    
  2. or download this
    my $canvas = $gv->Subwidget("canvas');
    $canvas->bind('<Configure>', sub {
    ...
                                      print $w->Width . " and " . $w->Heig
    +ht . "\n";
                                      &redo_layout();
                                     };
    
  3. or download this
    $root->bind('<Configure>', sub {
                                      my $w = shift;
                                      print $w->Width . " and " . $w->Heig
    +ht . "\n";
                                      &redo_layout();
                                     };