Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Tk: Creating label in hash

by Anonymous Monk
on Sep 18, 2013 at 11:06 UTC ( [id://1054636]=note: print w/replies, xml ) Need Help??


in reply to Tk: Creating label in hash

the line that right now is a comment is supposed to test if it worked, but the warning tells me it cant call the method on an uninitialized value, same for the print line. the labels are being created though, they also contain the right text and the bind works. what to do?

I'm back (network down)

Well, the cause of uninitialized value is the last link in the chain ->Label(...)->grid(...)->bind(...)

Label() returns an object, grid() returns that same object, bind returns nothing (actually bind returns an empty string)

an empty string is not an object so what you store in $cells{$row.$i} is the empty string

I used Basic debugging checklist item 4 ( Dumper ) to discover this :)

But like I said earlier,I strongly recommend rethinking the way you write code (Re^5: Multiple frames), for example

#!/usr/bin/perl -- ## perltidy -olq -csc -csci=10 -cscl="sub : BEGIN END if " -otr -opr +-ce -nibc -i=4 -pt=0 "-nsak=*" use strict; use warnings; use Tk; use Data::Dump qw/ dd /; Main( @ARGV ); exit( 0 ); sub Main { GoTk(); } sub GoTk { my $mw = tkinit( -title => "tk closures people" ); ## the "globals" my %info; my %cells; my $currentrow = 1; ## the oddballs my $row = 1; my $column = 1; for my $key ( qw/ a b c Q 6 42 / ) { my $tvref = \$info{ $key . $row }; $$tvref = "($row)($column) $key"; my $label = $mw->Label( -textvariable => $tvref, -relief => "ridge", -width => 15, )->grid( -row => $row, -column => $column ); $cells{ $key . $row } = $label; ## logic flaw $row++; $column = int rand( 4 ); } ## one callback for entire grid, not one for each label $mw->bind( 'Tk::Label' => '<Double-Button-1>', [ \&Pickett, \$currentrow, \%info ], ## NO CLOSURE!!! ); use Tk::WidgetDump; $mw->WidgetDump; $mw->MainLoop; dd( \%cells, \%info ); } ## end sub GoTk sub Pickett { my( $label, $currentrowref, $info ) = @_; my $e = $Tk::event; my $xy = sprintf( '(%s,%s)', $e->X, $e->Y, ); ## $info->{a1} print "\n$xy $label $currentrowref $$currentrowref\n"; if( $label->isa( 'Tk::Label' ) ) { print "$label ", $label->cget( -text ), "\n"; } } ## end sub Pickett __END__ (210,135) Tk::Label=HASH(0x107489c) SCALAR(0xb9b374) 1 Tk::Label=HASH(0x107489c) (5)(1) 6 (239,145) Tk::Label=HASH(0x10749cc) SCALAR(0xb9b374) 1 Tk::Label=HASH(0x10749cc) (6)(2) 42 ( { 426 => bless({ _TkValue_ => ".label5" }, "Tk::Label"), 65 => bless({ _TkValue_ => ".label4" }, "Tk::Label"), a1 => bless({ _TkValue_ => ".label" }, "Tk::Label"), b2 => bless({ _TkValue_ => ".label1" }, "Tk::Label"), c3 => bless({ _TkValue_ => ".label2" }, "Tk::Label"), Q4 => bless({ _TkValue_ => ".label3" }, "Tk::Label"), }, { 426 => "(6)(2) 42", 65 => "(5)(1) 6", a1 => "(1)(1) a", b2 => "(2)(0) b", c3 => "(3)(0) c", Q4 => "(4)(3) Q", }, )

Replies are listed 'Best First'.
Re^2: Tk: Creating label in hash
by banzai (Initiate) on Sep 18, 2013 at 12:41 UTC
    I love you. I really do.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1054636]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-24 04:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found