Helter has asked for the wisdom of the Perl Monks concerning the following question:
$top->title("Diagram Viewer"); $top->configure(-background => 'white'); #<a menu bar at the top>...skipping some details my $menu_bar = $top->Frame()->pack(-side => 'top', -fill => 'x'); #skipping adding buttons to menu_bar.... # the next frames my $top_canvas_frame = $top->Frame()->packAdjust(-side => 'top', -expa +nd => 'both', -fill => 'both'); my $bottom_canvas_frame = $top->Frame()->pack(-side => 'bottom', -expa +nd => 'both', -fill => 'both'); my $blankCanvas = { canvas => newCanvas($top_canvas_frame)}; # here is where I can't figure out a way to insert another view $blank +Canvas into $bottom_canvas_frame so we can get dual views... <readmore>
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Duplicate views to a single canvas using Perl TK
by zentara (Cardinal) on May 03, 2008 at 15:56 UTC | |
by Helter (Chaplain) on May 03, 2008 at 17:20 UTC | |
by qumsieh (Scribe) on May 04, 2008 at 17:57 UTC | |
Re: Duplicate views to a single canvas using Perl TK
by Anonymous Monk on May 03, 2008 at 07:32 UTC | |
by Helter (Chaplain) on May 03, 2008 at 17:22 UTC |