|
|
|
@ -20,6 +20,7 @@ sub Populate
@@ -20,6 +20,7 @@ sub Populate
|
|
|
|
|
-font => $self->Font(-family => 'times', -weight => 'bold', -size => '8'), |
|
|
|
|
-command => [sub { |
|
|
|
|
my ($self) = @_; |
|
|
|
|
print "hit b\n"; |
|
|
|
|
$self->toggleTag('<b>'); |
|
|
|
|
}, $self] |
|
|
|
|
)->pack(-pady => 0, -side => 'left', -fill => 'both'); |
|
|
|
@ -50,7 +51,10 @@ $self]);
@@ -50,7 +51,10 @@ $self]);
|
|
|
|
|
'DEFAULT' => $self->{text}, |
|
|
|
|
'to_html' => $self, |
|
|
|
|
); |
|
|
|
|
$self->after(200, [$self, "init"]); |
|
|
|
|
} |
|
|
|
|
sub insert |
|
|
|
|
{ |
|
|
|
|
shift->{text}->insert(@_); |
|
|
|
|
} |
|
|
|
|
sub toggleTag |
|
|
|
|
{ |
|
|
|
@ -63,7 +67,7 @@ sub toggleTag
@@ -63,7 +67,7 @@ sub toggleTag
|
|
|
|
|
print "tag names gotten\n"; |
|
|
|
|
if ($cur_tag =~ /$tag/i) |
|
|
|
|
{ |
|
|
|
|
# tag is defined for this range - remove it from the composite tag name and then add the resulting |
|
|
|
|
# tag is not defined for this range - add it from the composite tag name and then add the resulting |
|
|
|
|
# tag, creating it if necessary |
|
|
|
|
return unless $cur_tag ne ""; |
|
|
|
|
$self->{text}->tagRemove($cur_tag, 'insert'); |
|
|
|
@ -74,10 +78,11 @@ sub toggleTag
@@ -74,10 +78,11 @@ sub toggleTag
|
|
|
|
|
$self->insert('insert', '%%%ignore%%%', [$cur_tag, 'elide']); |
|
|
|
|
$self->tagAdd($cur_tag, 'insert'); |
|
|
|
|
$self->{$tag}->configure(-relief => 'flat'); |
|
|
|
|
print "done\n"; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
# tag not enabled for this range - add it |
|
|
|
|
# tag not enabled for this range - remove it |
|
|
|
|
$self->{text}->tagRemove($cur_tag, 'insert'); |
|
|
|
|
$cur_tag .= $tag; |
|
|
|
|
$self->create_tag($cur_tag); |
|
|
|
@ -129,7 +134,10 @@ sub create_tag
@@ -129,7 +134,10 @@ sub create_tag
|
|
|
|
|
{ |
|
|
|
|
$fontparams{-slant} = 'italic'; |
|
|
|
|
} |
|
|
|
|
$self->tagConfigure($tag, %tagparams, -font => $self->Font(%fontparams)); |
|
|
|
|
|
|
|
|
|
my $font = $self->Font(%fontparams); |
|
|
|
|
$self->tagConfigure($tag, %tagparams, -font => $font); |
|
|
|
|
$self->{created_tags}->{$tag} = 1; |
|
|
|
|
} |
|
|
|
|
sub to_html |
|
|
|
|
{ |
|
|
|
@ -174,8 +182,5 @@ sub end_tag
@@ -174,8 +182,5 @@ sub end_tag
|
|
|
|
|
$tag =~ s/^</<\//; |
|
|
|
|
return $tag; |
|
|
|
|
} |
|
|
|
|
sub init |
|
|
|
|
{ |
|
|
|
|
my ($self) = @_; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
1; |
|
|
|
|