

#!perl.exe
## ctk: description Show the list of the bindings
actually set.
## ctk: title List actual bindings
## ctk: application '' ''
## ctk: strict
0
## ctk: code 0
## ctk: subroutineName dlg_listBindings
## ctk: autoExtractVariables 1
## ctk: autoExtract2Local 0
## ctk: modalDialogClassName DialogBox
## ctk: modal 1
## ctk: isolGeom 0
## ctk: version 3.099
## ctk: onDeleteWindow sub{1}
## ctk: Toplevel
1
## ctk: argList -title , '???'
## ctk: 2007 11 13 - 15:51:38
## ctk: uselib start
## ctk: uselib end
use Tk;
use Tk::Button;
use Tk::Listbox;;
$mw=MainWindow->new(-title=>'List
actual bindings ');
## ctk: Globalvars
## ctk: Globalvars end
&main::init();
my $answer = &main::dlg_listBindings($mw,-title ,
'???' );
print "\nanswer = '$answer'";
MainLoop;
sub dlg_listBindings {
my $hwnd = shift;
my (%args) = @_;
my $rv;
##
## ctk: Localvars
## ctk: Localvars end
##
my $mw = $hwnd->DialogBox(
-title=>
(exists $args{-title})? $args{-title}:'List actual bindings ',
-buttons=> (exists $args{-buttons}) ?
$args{-buttons} : ['OK','Cancel']);
$mw->protocol('WM_DELETE_WINDOW',sub{1});
## ctk: code generated by ctk_w version '3.099'
## ctk: instantiate and display widgets
$wr_001 = $mw -> Scrolled ( 'Listbox' , -selectmode
, 'single' , -scrollbars , 'osoe' )
-> pack(-anchor=>'nw', -side=>'top', -pady=>5, -fill=>'both',
-expand=>1, -padx=>5);
$wr_001->insert('end',$wr_001->bindtags);
$wr_002 = $mw -> Button ( -background , '#ffffff' ,
-command , [\&listBindings , $wr_001 , $wr_001 ] , -state , 'normal' ,
-text , 'list bindings' ) ->
pack(-anchor=>'nw', -side=>'top', -pady=>5, -fill=>'x',
-expand=>1, -padx=>5);
## ctk: end of gened Tk-code
$rv =
$mw->Show();
return $rv;
} ## end of dlg_listBindings
## ctk: end of dialog code
## ctk: callbacks
sub init { 1 }
sub listBindings {
my ($lb,
$widget) = @_;
my @b =
$widget->bindtags() if (Exists($widget));
$lb->delete(0,'end');
map
{
$lb->insert('end',$_)
}
@b;
$lb->insert('end',"
");
@b = &bindDump($widget);
map {
s/\n$//;
$lb->insert('end',$_)
} @b;
}
sub
bindDump {
# Dump lots of good binding information. This pretty-print subroutine
# is,
essentially, the following code in disguise:
#
# print
"Binding information for $w\n";
# foreach
my $tag ($w->bindtags) {
# printf "\n Binding tag '$tag' has
these bindings:\n";
#
foreach my $binding ($w->bind($tag)) {
# printf " $binding\n";
# }
# }
my ($w) =
@_;
my @rv;
my
(@bindtags) = $w->bindtags;
my $digits = length( scalar @bindtags );
my ($spc1, $spc2)
= ($digits + 33, $digits + 35);
my $format1
= "%${digits}d.";
my $format2
= ' ' x ($digits + 2);
my $n = 0;
push @rv ,
sprintf("## Binding information for '", $w->PathName, "', $w
##\n");
foreach my
$tag (@bindtags) {
my
(@bindings) = $w->bind($tag);
$n++; # count this bindtag
if
($#bindings == -1) {
push @rv , sprintf("$format1 Binding tag '$tag' has no
bindings.\n", $n);
} else
{
push @rv , sprintf("$format1 Binding tag '$tag' has these
bindings:\n", $n);
foreach my $binding ( @bindings ) {
my $callback = $w->bind($tag, $binding);
push @rv , sprintf("$format2%27s : %-40s\n", $binding,
$callback);
if ($callback =~ /SCALAR/) {
if (ref $$callback) {
push @rv , sprintf("%s %s\n", ' '
x $spc1, $$callback);
} else {
push @rv , sprintf("%s '%s'\n", '
' x $spc1, $$callback);
}
} elsif ($callback =~ /ARRAY/) {
if (ref $callback->[0]) {
push @rv , sprintf("%s %s\n", ' '
x $spc1, $callback->[0], "\n");
} else {
push @rv , sprintf("%s
'%s'\n", ' ' x $spc1, $callback->[0], "\n");
}
foreach my $arg (@$callback[1 .. $#{@$callback}]) {
if (ref $arg) {
push @rv , sprintf("%s
%-40s", ' ' x $spc2, $arg);
} else {
push @rv , sprintf("%s '%s'",
' ' x $spc2, $arg);
}
if (ref $arg eq 'Tk::Ev') {
if ($arg =~ /SCALAR/) {
push @rv , sprintf(":
'$$arg'");
} else {
push @rv , sprintf(": '",
join("' '", @$arg), "'");
}
}
push @rv , sprintf("\n");
} # forend callback arguments
} # ifend callback
} #
forend all bindings for one tag
} #
ifend have bindings
} # forend
all tags
push @rv ,
sprintf("\n");
return @rv;
} # end bindDump
## ctk: other code
## ctk: eof 2007 11 13 - 15:51:38
1; ## make perl
compiler happy...
## ctk: description Show the list of the bindings
actually set.
## ctk: title List actual bindings
## ctk: application '' ''
## ctk: strict
0
## ctk: code 0
## ctk: subroutineName dlg_listBindings
## ctk: autoExtractVariables 1
## ctk: autoExtract2Local 0
## ctk: modalDialogClassName DialogBox
## ctk: modal 1
## ctk: isolGeom 0
## ctk: version 3.099
## ctk: onDeleteWindow sub{1}
## ctk: Toplevel
1
## ctk: argList -title , '???'
## ctk: 2007 11 13 - 15:52:17
use Tk;
use Tk::Button;
use Tk::Listbox;;
sub dlg_listBindings {
my $hwnd = shift;
my (%args) = @_;
my $rv;
##
## ctk: Localvars
## ctk: Localvars end
##
my $mw = $hwnd->DialogBox(
-title=>
(exists $args{-title})? $args{-title}:'List actual bindings ',
-buttons=> (exists $args{-buttons}) ?
$args{-buttons} : ['OK','Cancel']);
$mw->protocol('WM_DELETE_WINDOW',sub{1});
## ctk: code generated by ctk_w version '3.099'
## ctk: instantiate and display widgets
$wr_001 = $mw -> Scrolled ( 'Listbox' , -selectmode
, 'single' , -scrollbars , 'osoe' )
-> pack(-anchor=>'nw', -side=>'top', -pady=>5, -fill=>'both',
-expand=>1, -padx=>5);
$wr_001->insert('end',$wr_001->bindtags);
$wr_002 = $mw -> Button ( -background , '#ffffff' ,
-command , [\&listBindings , $wr_001 , $wr_001 ] , -state , 'normal' ,
-text , 'list bindings' ) ->
pack(-anchor=>'nw', -side=>'top', -pady=>5, -fill=>'x',
-expand=>1, -padx=>5);
## ctk: end of gened Tk-code
$rv =
$mw->Show();
return $rv;
} ## end of dlg_listBindings
## ctk: end of dialog code
## ctk: callbacks
sub listBindings {
my ($lb,
$widget) = @_;
my @b =
$widget->bindtags() if (Exists($widget));
$lb->delete(0,'end');
map
{
$lb->insert('end',$_)
}
@b;
$lb->insert('end',"
");
@b = &bindDump($widget);
map {
s/\n$//;
$lb->insert('end',$_)
} @b;
}
sub bindDump {
# Dump lots of good binding information. This pretty-print subroutine
# is,
essentially, the following code in disguise:
#
# print
"Binding information for $w\n";
# foreach
my $tag ($w->bindtags) {
# printf "\n Binding tag '$tag' has
these bindings:\n";
# foreach my $binding ($w->bind($tag)) {
# printf " $binding\n";
# }
# }
my ($w) =
@_;
my @rv;
my
(@bindtags) = $w->bindtags;
my $digits = length( scalar @bindtags );
my ($spc1,
$spc2) = ($digits + 33, $digits + 35);
my $format1
= "%${digits}d.";
my $format2
= ' ' x ($digits + 2);
my $n = 0;
push @rv ,
sprintf("## Binding information for '", $w->PathName, "', $w
##\n");
foreach my
$tag (@bindtags) {
my
(@bindings) = $w->bind($tag);
$n++; # count this bindtag
if
($#bindings == -1) {
push @rv , sprintf("$format1 Binding tag '$tag' has no
bindings.\n", $n);
} else
{
push @rv , sprintf("$format1 Binding tag '$tag' has these
bindings:\n", $n);
foreach my $binding ( @bindings ) {
my $callback = $w->bind($tag, $binding);
push @rv , sprintf("$format2%27s : %-40s\n", $binding,
$callback);
if ($callback =~ /SCALAR/) {
if (ref $$callback) {
push @rv , sprintf("%s %s\n", ' '
x $spc1, $$callback);
} else {
push @rv , sprintf("%s '%s'\n", '
' x $spc1, $$callback);
}
} elsif ($callback =~ /ARRAY/) {
if (ref $callback->[0]) {
push @rv , sprintf("%s %s\n", ' '
x $spc1, $callback->[0], "\n");
} else {
push @rv , sprintf("%s '%s'\n", '
' x $spc1, $callback->[0], "\n");
}
foreach my $arg (@$callback[1 .. $#{@$callback}]) {
if (ref $arg) {
push @rv , sprintf("%s
%-40s", ' ' x $spc2, $arg);
} else {
push @rv , sprintf("%s '%s'",
' ' x $spc2, $arg);
}
if (ref $arg eq 'Tk::Ev') {
if ($arg =~ /SCALAR/) {
push @rv , sprintf(": '$$arg'");
} else {
push @rv , sprintf(": '",
join("' '", @$arg), "'");
}
}
push @rv , sprintf("\n");
} # forend callback arguments
} # ifend callback
} #
forend all bindings for one tag
} #
ifend have bindings
} # forend
all tags
push @rv ,
sprintf("\n");
return @rv;
} # end bindDump
## ctk: other code
## ctk: eof 2007 11 13 - 15:52:17
1; ## make perl
compiler happy...
2007 11 13 - 16:26:49 . , perl.exe
2007 11 13 - 16:26:49 ctk_w.exe starting under
'MSWin32'
2007 11 13 - 16:26:49 Session 'Tkadmin' successfully
restored.
2007 11 13 - 16:26:49 Version '3.099'
2007 11 13 - 16:26:49 Widget class Tk::Pane does not
exist yet, discarded
2007 11 13 - 16:26:49 Widget class Tk::TextList does
not exist yet, discarded
2007 11 13 - 16:26:58 set_selected 'mw.wr_001'
2007 11 13 - 16:26:59 set_selected 'mw.wr_001'
2007 11 13 - 16:26:59 set_selected 'mw.wr_001'
2007 11 13 - 16:26:59 edit_widgetOptions
2007 11 13 - 16:26:59 re_enter
2007 11 13 - 16:26:59 pr{'-background'} = 'color'
2007 11 13 - 16:26:59 pr{'-foreground'} = 'color'
2007 11 13 - 16:26:59 pr{'-width'} = 'int+'
2007 11 13 - 16:26:59 pr{'-setgrid'} = 'menu(0|1)'
2007 11 13 - 16:26:59 pr{'-borderwidth'} = 'int+'
2007 11 13 - 16:26:59 pr{'-height'} = 'int+'
2007 11 13 - 16:26:59 pr{'-selectmode'} =
'menu(single|browse|multiple|extended)'
2007 11 13 - 16:26:59 pr{'-relief'} = 'relief'
2007 11 13 - 16:26:59 pr{'-scrollbars'} =
'menu(s|os|e|oe|w|ow|n|on|se|ose|soe|osoe|sw|osw|sow|ne|one|noe|onoe|nw|onw|now|onow)'
2007 11 13 - 16:26:59 split_opt opt = 'Listbox , -background , #c0c0c0 ,
-selectmode , single , -scrollbars , osoe'
2007 11 13 - 16:26:59 split_opt rv = -background
#c0c0c0 -selectmode single -scrollbars osoe
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 color_Picker
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 color_Picker
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 split_opt opt = '-side=>top, -anchor=>nw,
-pady=>5, -fill=>both, -expand=>1, -padx=>5'
2007 11 13 - 16:26:59 split_opt rv = -side top -anchor
nw -pady 5 -fill both -expand 1 -padx 5
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 SideMenu
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 side
2007 11 13 - 16:26:59
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 side
2007 11 13 - 16:26:59 left
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 side
2007 11 13 - 16:26:59 bottom
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 side
2007 11 13 - 16:26:59 top
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 side
2007 11 13 - 16:26:59 top
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 side
2007 11 13 - 16:26:59 right
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 AnchorMenu
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 nw
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 nw
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 w
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 sw
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 n
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 center
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 s
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 ne
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 e
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 anchor
2007 11 13 - 16:26:59 se
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 FillMenu
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 x
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 y
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 both
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 both
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry01
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry01
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry01
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry01
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 numEntry
2007 11 13 - 16:26:59 cnf_dlg_ballon
2007 11 13 - 16:26:59 FillMenu
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 x
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 y
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 both
2007 11 13 - 16:26:59 map_pic
2007 11 13 - 16:26:59 fill
2007 11 13 - 16:26:59 both
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'ctkDialogBox=HASH(0x19d59d0)' '0'
2007 11 13 - 16:26:59 widget 'CtkDialogBox' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x19cf40c)' '1'
2007 11 13 - 16:26:59 widget 'Frame' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::LabFrame=HASH(0x1258268)' '2'
2007 11 13 - 16:26:59 widget 'LabFrame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x12585f8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x12588bc)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x12587e4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1259450)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1259108)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::LabFrame=HASH(0x1259708)' '2'
2007 11 13 - 16:26:59 widget 'LabFrame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x12598b8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1259c24)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1259870)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x125a5e4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Tiler=HASH(0x125adf4)' '2'
2007 11 13 - 16:26:59 widget 'Tiler' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x125c00c)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Scrollbar=HASH(0x125c2e8)' '2'
2007 11 13 - 16:26:59 widget 'Scrollbar' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x125c324)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x125b898)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x125c84c)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x125ca50)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Checkbutton=HASH(0x125cbac)' '2'
2007 11 13 - 16:26:59 widget 'Checkbutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x125cb64)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x125ce7c)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x125d380)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x19c81d8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x19c8478)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b576c4)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b57784)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x125d278)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b58e40)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b599c8)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Checkbutton=HASH(0x1b59b24)' '2'
2007 11 13 - 16:26:59 widget 'Checkbutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b59ac4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b5a61c)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1b5adb4)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b5afac)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1b5b630)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b5c158)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b5c20c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b5ae14)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b5cb0c)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Menubutton=HASH(0x1b5d724)' '2'
2007 11 13 - 16:26:59 widget 'Menubutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Menu=HASH(0x1b5d784)' '2'
2007 11 13 - 16:26:59 widget 'Menu' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b627ec)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b62abc)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Optionmenu=HASH(0x1b69314)' '2'
2007 11 13 - 16:26:59 widget 'Optionmenu' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Menu=HASH(0x1b69e90)' '2'
2007 11 13 - 16:26:59 widget 'Menu' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b686e4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b6bc00)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Optionmenu=HASH(0x1b6e5dc)' '2'
2007 11 13 - 16:26:59 widget 'Optionmenu' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Menu=HASH(0x1b6e678)' '2'
2007 11 13 - 16:26:59 widget 'Menu' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b6dce8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b70184)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Button=HASH(0x1b71b88)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b71ca8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b71a14)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1b72bf0)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1afd43c)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1afd694)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1afd988)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1afda3c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x125a224)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::LabFrame=HASH(0x1b72b54)' '2'
2007 11 13 - 16:26:59 widget 'LabFrame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b75014)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b757ac)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b74fcc)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::NoteBook=HASH(0x1b78320)' '2'
2007 11 13 - 16:26:59 widget 'NoteBook' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1af70f4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b98d40)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b9b3f8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Checkbutton=HASH(0x1b9bddc)' '2'
2007 11 13 - 16:26:59 widget 'Checkbutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Checkbutton=HASH(0x1b9c6f4)' '2'
2007 11 13 - 16:26:59 widget 'Checkbutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Checkbutton=HASH(0x1b9c7e4)' '2'
2007 11 13 - 16:26:59 widget 'Checkbutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Checkbutton=HASH(0x1b9c8d4)' '2'
2007 11 13 - 16:26:59 widget 'Checkbutton' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b9c8bc)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b9ceec)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1b9dca8)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b9e6d4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1b9e92c)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b9f04c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1b9f100)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1b9dbf4)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1b9f91c)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1ba171c)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1ba1914)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1ba1b90)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Button=HASH(0x1ba1e84)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1ba276c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1ba123c)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1ba3390)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1ba3d44)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1ba4368)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1ba45c0)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1ba54f0)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1ba55a4)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1ba3c90)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1ba5dc0)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1ba6fa8)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1ba71a0)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1ba7c2c)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Button=HASH(0x1ba7f20)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1ba8400)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1ba6ac8)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1ba9834)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1baa1dc)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1baa800)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1baaa58)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bab580)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bab634)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1baa128)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bac258)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bad018)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bad234)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bae0c8)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bae3bc)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bae89c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bacf64)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1baf4c0)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bafe68)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb0060)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bb0ef4)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bb1a1c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bb1ad0)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bafdb4)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb22f8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bb2ca0)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb3edc)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bb4158)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bb444c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Button=HASH(0x1bb4500)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1af7574)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bb3d38)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb55b0)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bb6348)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb6540)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bb6bc4)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bb76ec)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bb77a0)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bb6294)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb83c4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bb8d78)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bb97a4)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bba638)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bba92c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Button=HASH(0x1bba9e0)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bb8cc4)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bbba30)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bbc3e4)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bbc5dc)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bbd068)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bbdb90)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bbdc44)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bbc330)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bbe460)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bbf21c)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bbf840)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bc02cc)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc05c0)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Button=HASH(0x1bc0674)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bbf168)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bc0e90)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bc251c)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bc2690)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bc3524)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc3c44)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc3cf8)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bc2510)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bc44fc)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bc5b88)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bc5cfc)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bc6788)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc6a7c)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc6b30)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bc5b7c)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bc7334)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bc8dc8)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bc8f3c)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bc91b8)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc9ce0)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bc9d94)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Label=HASH(0x1bc8dbc)' '2'
2007 11 13 - 16:26:59 widget 'Label' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bca9a0)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'NumEntry=HASH(0x1bcc010)' '2'
2007 11 13 - 16:26:59 widget 'NumEntry' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Frame=HASH(0x1bcc1a8)' '2'
2007 11 13 - 16:26:59 widget 'Frame' skipped
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59 'Tk::Entry=HASH(0x1bcc400)' '2'
2007 11 13 - 16:26:59 widget 'Entry' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bccb20)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:26:59 recolor_dialog
2007 11 13 - 16:26:59
'Tk::Button=HASH(0x1bccbd4)' '2'
2007 11 13 - 16:26:59 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1af79f4)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bcbee4)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bcd99c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bce1c4)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bce380)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bce41c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bcea88)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bcea34)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bcf8ec)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bcfb2c)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bcfad8)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bd4758)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bd4998)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bd4944)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bd4be4)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1bd495c)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bd5dcc)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bd6858)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bd6b70)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bd6c24)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bd5bd4)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bd6dbc)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1bd4dd0)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bd897c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bd9408)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bd96fc)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bd97d4)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bd7d94)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 -
16:27:00 'Tk::Frame=HASH(0x1bd9ab0)'
'2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1bd7d88)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bdb514)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bdb790)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bdba84)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bdbb38)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bda92c)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bdca50)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1bda920)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bddca4)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1bddefc)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bde214)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1bde2c8)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1bdd0bc)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1bdf6fc)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Menubutton=HASH(0x1be03a4)' '2'
2007 11 13 - 16:27:00 widget 'Menubutton' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Menu=HASH(0x1be03d4)' '2'
2007 11 13 - 16:27:00 widget 'Menu' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1af6b6c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b7e870)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Menubutton=HASH(0x1b7eab0)' '2'
2007 11 13 - 16:27:00 widget 'Menubutton' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Menu=HASH(0x1b7f884)' '2'
2007 11 13 - 16:27:00 widget 'Menu' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b8172c)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Menubutton=HASH(0x1b8190c)' '2'
2007 11 13 - 16:27:00 widget 'Menubutton' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Menu=HASH(0x1b84a80)' '2'
2007 11 13 - 16:27:00 widget 'Menu' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b86f58)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Menubutton=HASH(0x1b89e68)' '2'
2007 11 13 - 16:27:00 widget 'Menubutton' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Menu=HASH(0x1b89ff4)' '2'
2007 11 13 - 16:27:00 widget 'Menu' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b8c1a8)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b8e0b0)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b8e248)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b8e404)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1b8fa00)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b8fbf8)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1b9027c)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Button=HASH(0x1b90da4)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b90e58)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b8f94c)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b91a7c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1b92430)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b92e5c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1b930b4)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b93bdc)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b93c90)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b9237c)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b940b0)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1b95aac)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b95ca4)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1b96730)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b97258)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b9730c)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b959f8)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1b97f3c)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'NumEntry=HASH(0x1b98cec)' '2'
2007 11 13 - 16:27:00 widget 'NumEntry' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x22369b0)' '2'
2007 11 13 - 16:27:00 widget 'Frame' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Entry=HASH(0x1b99b98)' '2'
2007 11 13 - 16:27:00 widget 'Entry' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b99eb0)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1b99f64)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Label=HASH(0x1b769e8)' '2'
2007 11 13 - 16:27:00 widget 'Label' skipped
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00 'Tk::Frame=HASH(0x1f8ca04)' '1'
2007 11 13 - 16:27:00 widget 'Frame' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1257950)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1257a88)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:00 recolor_dialog
2007 11 13 - 16:27:00
'Tk::Button=HASH(0x1257b54)' '2'
2007 11 13 - 16:27:00 widget 'Button' recolored
2007 11 13 - 16:27:01 getColor
2007 11 13 - 16:27:09 wColor = '#cecece'
2007 11 13 - 16:27:11 validateOptions id = 'wr_001'
2007 11 13 - 16:27:11 quotatY opt_list
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #cecece
2007 11 13 - 16:27:11 -width
2007 11 13 - 16:27:11 0
2007 11 13 - 16:27:11 -setgrid
2007 11 13 - 16:27:11 0
2007 11 13 - 16:27:11 -borderwidth
2007 11 13 - 16:27:11 0
2007 11 13 - 16:27:11 -height
2007 11 13 - 16:27:11 0
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 rv='-background , '#cecece' ,
-width , 0 , -setgrid , 0 , -borderwidth , 0 , -height , 0 , -selectmode ,
'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 validation OK.
2007 11 13 - 16:27:11 rv=''
2007 11 13 - 16:27:11 getBrotherToBeCheckedForGeom
2007 11 13 - 16:27:11 tree_get_brothers 'wr_001'
2007 11 13 - 16:27:11 tree_get_sons of parent = mw
2007 11 13 - 16:27:11 haveGeometry ('Button')
2007 11 13 - 16:27:11 rv = '1'
2007 11 13 -
16:27:11 undo_save
2007 11 13 -
16:27:11 gen_TkCode
2007 11 13 - 16:27:11 gen_WidgetCode element = 'mw'
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 gen_WidgetCode element = 'mw.wr_001'
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 getType ('wr_001')
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 rv = 'ScrolledListbox'
2007 11 13 - 16:27:11 nonVisual ('ScrolledListbox')
2007 11 13 - 16:27:11 rv = '0'
2007 11 13 - 16:27:11 quotate opt_list = 'pack(-side=>top,
-anchor=>nw, -pady=>5, -fill=>both, -expand=>1, -padx=>5)'
2007 11 13 - 16:27:11 prefix = 'pack('
2007 11 13 - 16:27:11 split_opt opt = '-side=>top, -anchor=>nw,
-pady=>5, -fill=>both, -expand=>1, -padx=>5'
2007 11 13 - 16:27:11 split_opt rv = -side top -anchor
nw -pady 5 -fill both -expand 1 -padx 5
2007 11 13 - 16:27:11 rv='pack(-anchor=>'nw',
-side=>'top', -pady=>5, -fill=>'both', -expand=>1, -padx=>5)'
2007 11 13 - 16:27:11 haveGeometry ('ScrolledListbox')
2007 11 13 - 16:27:11 rv = '1'
2007 11 13 - 16:27:11 quotatX opt_list
2007 11 13 - 16:27:11 Listbox
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #c0c0c0
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 type = ScrolledListbox
2007 11 13 - 16:27:11 quotatY opt_list
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #c0c0c0
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 rv='-background , '#c0c0c0' ,
-selectmode , 'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 rv=''Listbox' , -background ,
'#c0c0c0' , -selectmode , 'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 type='ScrolledListbox',
id='wr_001'
2007 11 13 - 16:27:11 code='$wr_001 = $mw ->
Scrolled ( 'Listbox' , -background , '#c0c0c0' , -selectmode , 'single' ,
-scrollbars , 'osoe' ) ->
pack(-anchor=>'nw', -side=>'top', -pady=>5, -fill=>'both',
-expand=>1, -padx=>5);
$wr_001->insert('end',$wr_001->bindtags);
'
2007 11 13 - 16:27:11 gen_WidgetCode element = 'mw.wr_002'
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 getType ('wr_002')
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 rv = 'Button'
2007 11 13 - 16:27:11 nonVisual ('Button')
2007 11 13 - 16:27:11 rv = '0'
2007 11 13 - 16:27:11 quotate opt_list = 'pack(-side=>top,
-anchor=>nw, -pady=>5, -fill=>x, -expand=>1, -padx=>5)'
2007 11 13 - 16:27:11 prefix = 'pack('
2007 11 13 - 16:27:11 split_opt opt = '-side=>top, -anchor=>nw,
-pady=>5, -fill=>x, -expand=>1, -padx=>5'
2007 11 13 - 16:27:11 split_opt rv = -side top -anchor
nw -pady 5 -fill x -expand 1 -padx 5
2007 11 13 - 16:27:11 rv='pack(-anchor=>'nw',
-side=>'top', -pady=>5, -fill=>'x', -expand=>1, -padx=>5)'
2007 11 13 - 16:27:11 haveGeometry ('Button')
2007 11 13 - 16:27:11 rv = '1'
2007 11 13 - 16:27:11 quotatX opt_list
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #ff8080
2007 11 13 - 16:27:11 -command
2007 11 13 - 16:27:11 [\&listBindings , $wr_001 ,
$wr_001 ]
2007 11 13 - 16:27:11 -state
2007 11 13 - 16:27:11 normal
2007 11 13 - 16:27:11 -text
2007 11 13 - 16:27:11 list bindings
2007 11 13 - 16:27:11 type = Button
2007 11 13 - 16:27:11 quotatY opt_list
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #ff8080
2007 11 13 - 16:27:11 -command
2007 11 13 - 16:27:11 [\&listBindings , $wr_001 ,
$wr_001 ]
2007 11 13 - 16:27:11 -state
2007 11 13 - 16:27:11 normal
2007 11 13 - 16:27:11 -text
2007 11 13 - 16:27:11 list bindings
2007 11 13 - 16:27:11 quotatY opt_list
2007 11 13 - 16:27:11 \&listBindings
2007 11 13 - 16:27:11 $wr_001
2007 11 13 - 16:27:11 $wr_001
2007 11 13 - 16:27:11 rv='\&listBindings , $wr_001
, $wr_001 '
2007 11 13 - 16:27:11 rv='-background , '#ff8080' ,
-command , [\&listBindings , $wr_001 , $wr_001 ] , -state , 'normal' ,
-text , 'list bindings' '
2007 11 13 - 16:27:11 rv='-background , '#ff8080' ,
-command , [\&listBindings , $wr_001 , $wr_001 ] , -state , 'normal' ,
-text , 'list bindings' '
2007 11 13 - 16:27:11 type='Button', id='wr_002'
2007 11 13 - 16:27:11 code='$wr_002 = $mw -> Button
( -background , '#ff8080' , -command , [\&listBindings , $wr_001 , $wr_001
] , -state , 'normal' , -text , 'list bindings' ) -> pack(-anchor=>'nw', -side=>'top', -pady=>5,
-fill=>'x', -expand=>1, -padx=>5);
'
2007 11 13 - 16:27:11 quotatY opt_list
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #cecece
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 rv='-background , '#cecece' ,
-selectmode , 'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 isHidden
2007 11 13 - 16:27:11 changes
2007 11 13 - 16:27:11 changes= '1'
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 preview_repaint
2007 11 13 - 16:27:11 clear_preview
2007 11 13 - 16:27:11 bind_xy_move
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 getType ('wr_001')
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 rv = 'ScrolledListbox'
2007 11 13 - 16:27:11 nonVisual ('ScrolledListbox')
2007 11 13 - 16:27:11 rv = '0'
2007 11 13 - 16:27:11 path='mw.wr_001'
2007 11 13 - 16:27:11 id='wr_001'
2007 11 13 - 16:27:11 split_opt opt = ''Listbox' , -background , '#cecece' ,
-selectmode , 'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 split_opt rv = -background
#cecece -selectmode single -scrollbars osoe
2007 11 13 - 16:27:11 stdConstructor =
'$tmp_vars{wr_001} = $x->Scrolled('Listbox',@narg)'
2007 11 13 - 16:27:11 @arg=
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #cecece
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #cecece
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 haveGeometry ('ScrolledListbox')
2007 11 13 - 16:27:11 rv = '1'
2007 11 13 - 16:27:11 isHidden
2007 11 13 - 16:27:11 gen_WidgetCode element = 'mw.wr_001'
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 getType ('wr_001')
2007 11 13 - 16:27:11 path_to_id
2007 11 13 - 16:27:11 rv = 'ScrolledListbox'
2007 11 13 - 16:27:11 nonVisual ('ScrolledListbox')
2007 11 13 - 16:27:11 rv = '0'
2007 11 13 - 16:27:11 quotate opt_list = 'pack(-fill, both, -expand, 1,
-anchor, nw, -pady, 5, -side, top, -padx, 5)'
2007 11 13 - 16:27:11 prefix = 'pack('
2007 11 13 - 16:27:11 split_opt opt = '-fill, both, -expand, 1, -anchor, nw,
-pady, 5, -side, top, -padx, 5'
2007 11 13 - 16:27:11 split_opt rv = -fill both -expand
1 -anchor nw -pady 5 -side top -padx 5
2007 11 13 - 16:27:11 rv='pack(-side=>'top',
-anchor=>'nw', -pady=>5, -fill=>'both', -expand=>1, -padx=>5)'
2007 11 13 - 16:27:11 haveGeometry ('ScrolledListbox')
2007 11 13 - 16:27:11 rv = '1'
2007 11 13 - 16:27:11 quotatX opt_list
2007 11 13 - 16:27:11 Listbox
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #cecece
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 type = ScrolledListbox
2007 11 13 - 16:27:11 quotatY opt_list
2007 11 13 - 16:27:11 -background
2007 11 13 - 16:27:11 #cecece
2007 11 13 - 16:27:11 -selectmode
2007 11 13 - 16:27:11 single
2007 11 13 - 16:27:11 -scrollbars
2007 11 13 - 16:27:11 osoe
2007 11 13 - 16:27:11 rv='-background , '#cecece' ,
-selectmode , 'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 rv=''Listbox' , -background ,
'#cecece' , -selectmode , 'single' , -scrollbars , 'osoe' '
2007 11 13 - 16:27:11 type='ScrolledListbox',
id='wr_001'
2007 11 13 - 16:27:11 code='$wr_001 = $mw ->
Scrolled ( 'Listbox' , -background , '#cecece' , -selectmode , 'single' ,
-scrollbars , 'osoe' ) ->
pack(-side=>'top', -anchor=>'nw', -pady=>5, -fill=>'both',
-expand=>1, -padx=>5);
$wr_001->insert('end',$wr_001->bindtags);