I have to give you points for hubris, asking for all that functionality out of a simple Table widget. :-) But down to business:

First, always use warnings and use strict. It catches alot of little errors.

Second, you probably need to change widgets, to do what you want. It seems like a simple question, but it is full of complexities, especially the dragging-all-selected with the mouse to copy, which I will not even address, unless you want to switch to a Canvas widget.

First, the Tk::Table widget is very limited in functionality. There is no selection mechanism or type, so you would have to do all the row-col juggling yourself. This is how you would approach it. Change your column and row headers to buttons, and in their command callbacks, you will need to loop thru all the appropriate cells, and change their color to what you want to be "selected color". Then setup another mouse binding, say "Button 3" , a right click, so that whatever column header you click on after a selection has been made, will loop thru all the selected entries of the source row, and insert them into the appropriate entries in the target row. I only show a print here, I leave the work to you..... it's alot of details.

See second example below for another widget you might try.that has selection built in. You can use the shift-button1 to select sections of columns or rows, or entire rows or columns by clicking the headers. The copying will still be a tedious task of looping thru all cells, and transferring them 1 by 1.

Finally the third example, is a drag-n-drop. I include it to give you a clue as to how difficult it is to move data between separate widgets. It use an HList. The HList, Listbox, and Text widgets, are about the only Tk widgets that can do small amounts of crude drag-n-drop. Like I said, if you really need it, (DnD), go with a Canvas type widget, build your own cell-table, and drag all your want. DnD is preety hairy and bug-prone, which is why you see so little of it in use.

#!/usr/bin/perl use warnings; use strict; use Tk; use Tk::Table; use Tk::Entry; my $mw = new MainWindow; my $title = $mw->title( "kapsule" ); my $show_table_frame = $mw->Frame() ->pack( -side => "top", -fill => "both", -anchor => "nw", -padx => "1 +0" ); my $button = $mw->Button( -text => "show", #-font => "verdanafont 10 bold", -command => sub { if ( $show_table_frame->ismapped ) { $show_table_frame->packForget(); } else { $show_table_frame->pack(); } } )->pack(); my $show_table = $show_table_frame->Table( -columns => 3, -rows => 5, -scrollbars => "o", -fixedrows => 1, -fixedcolumns => 0, -relief => 'raised', -takefocus => "0", -pady => "5" ); my %chs; # column headers foreach my $col(1..3){ $chs{$col}{'button'} = $show_table->Button( -text => "Col $col ", -width => 15, -relief => 'ridge', -bg=>'white', -command => sub{ print "Col $col selected\n"; for my $row(1..4){ print $chs{$col}{$row}{'ent'}->get,"\n"; $chs{$col}{$row}{'ent'}->configure(-bg=>'li +ghtyellow'); } } ); $show_table->put(0, $col , $chs{$col}{'button'} ); } for ( my $col = 1 ; $col < 4 ; $col++ ) { for ( my $row = 1 ; $row < 5 ; $row++ ) { $chs{$col}{$row}{'ent'} = $show_table->Entry( -font => "verdana 10" )->pack( -ipady => "1 +5" ); $chs{$col}{$row}{'ent'}->insert(0, int rand 100); $show_table->put( $row, $col, $chs{$col}{$row}{'ent'} ); } } $show_table->pack(); MainLoop;
#!/usr/bin/perl use strict; use warnings; use Tk; use Tk::TableMatrix; use Tk::TableMatrix::Spreadsheet; my $top = MainWindow->new; my $arrayVar = {}; print "Filling Array...\n"; my ($rows,$cols) = (40000, 10); foreach my $row (0..($rows-1)){ $arrayVar->{"$row,0"} = "$row"; } foreach my $col (0..($cols-1)){ $arrayVar->{"0,$col"} = "$col"; } print "Creating Table...\n"; sub colSub{ my $col = shift; return "OddCol" if( $col > 0 && $col%2) ; } my $label = $top->Label(-text => "TableMatrix v2 Example") ->pack( -expand => 1, -fill => 'both'); my $t = $top->Scrolled('Spreadsheet', -rows => $rows, -cols => $cols, -width => 6, -height => 12, -titlerows => 1, -titlecols => 1, -variable => $arrayVar, -coltagcommand => \&colSub, -colstretchmode => 'last', -flashmode => 1, -flashtime => 2, -wrap=>1, -rowstretchmode => 'last', -selectmode => 'extended', -selecttype=>'cell', -selecttitles => 0, -drawmode => 'slow', -scrollbars=>'se', -sparsearray=>0 )->pack(-expand => 1, -fill => 'both'); #my $realmatrix = $t->Subwidget('scrolled'); $top->Button( -text => "Clear", -command => sub{&clear})->pack(-expand => 1, -fill => 'x'); $top->Button( -text => "Fill", -command => sub{&fill})->pack(-expand => 1, -fill => 'x'); $top->Button( -text => "Exit", -command => sub{$top->destroy})->pack(-expand => 1, -fill => 'x' +); $t->colWidth( -2 => 8, -1 => 9, 0=> 12, 4=> 14); $arrayVar->{"1,1"} = 42; Tk::MainLoop; ######################################### sub TMRefresh { #Required input TableMatrix object. #use to force matrix to update, a code trick return if (!$_[0]); $_[0]->configure(-padx =>($_[0]->cget(-padx))); #$realmatrix->update; #$t->update; #$top->update; #$t->see("100,100"); #trick to force update? #$t->see("end"); #$t->see("1,1"); } ####################################### sub clear{ #$t->clearAll('0,0','end'); foreach my $row(1..$rows){ foreach my $col(1..$cols){ $arrayVar->{"$row,$col"} = 0; } } &TMRefresh($t); } ##################################### sub fill{ foreach my $row(1..$rows){ foreach my $col(1..$cols){ $arrayVar->{"$row,$col"} = 1000; } } &TMRefresh($t); } #######################################
#!/usr/bin/perl -w use Tk; use Tk::DragDrop; use Tk::DropSite; use Tk::HList; use strict; use vars qw($top $f $lb_src $lb_dest $dnd_token $drag_entry); #works $top = new MainWindow; $top->Label( -text => "Drag items from the left HList to the right one +" )->pack; $f = $top->Frame->pack; $lb_src = $f->Scrolled( 'HList', -scrollbars => "osoe", -selectmode => 'dragdrop' )->pack( -side => "left" ); $lb_dest = $f->Scrolled( 'HList', -scrollbars => "osoe", -selectmode => 'dragdrop' )->pack( -side => "left" ); my $i = 0; foreach ( sort keys %ENV ) { $lb_src->add( $i++, -text => $_ ); } # Define the source for drags. # Drags are started while pressing the left mouse button and moving th +e # mouse. Then the StartDrag callback is executed. $dnd_token = $lb_src->DragDrop( -event => '<B1-Motion>', -sitetypes => ['Local'], -startcommand => sub { StartDrag($dnd_token) }, ); # Define the target for drops. $lb_dest->DropSite( -droptypes => ['Local'], -dropcommand => [ \&Drop, $lb_dest, $dnd_token ], ); MainLoop; sub StartDrag { my ($token) = @_; my $w = $token->parent; # $w is the source hlist my $e = $w->XEvent; $drag_entry = $w->nearest( $e->y ); # get the hlist entry under + cursor if ( defined $drag_entry ) { # Configure the dnd token to show the hlist entry $token->configure( -text => $w->entrycget( $drag_entry, '-text +' ) ); # Show the token my ( $X, $Y ) = ( $e->X, $e->Y ); $token->MoveToplevelWindow( $X, $Y ); $token->raise; $token->deiconify; $token->FindSite( $X, $Y, $e ); } } # Accept a drop and insert a new item in the destination hlist and del +ete # the item from the source hlist sub Drop { my ( $lb, $dnd_source ) = @_; $lb->add( $drag_entry, -text => $dnd_source->cget( -text ) ); $lb_src->delete( "entry", $drag_entry ); $lb->see($drag_entry); }

I'm not really a human, but I play one on earth Remember How Lucky You Are

In reply to Re: Perl/Tk: How to select all and copy/paste all contents of one column of a table ? by zentara
in thread Perl/Tk: How to select all and copy/paste all contents of one column of a table ? by kapsule

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.