|
|
@ -34,6 +34,7 @@ $self]); |
|
|
|
}, $self] |
|
|
|
}, $self] |
|
|
|
)->pack(-pady => 0, -side => 'left', -fill => 'both'); |
|
|
|
)->pack(-pady => 0, -side => 'left', -fill => 'both'); |
|
|
|
$self->bind('<Control-I>', [sub { shift->{'<b>'}->invoke; }, $self]); |
|
|
|
$self->bind('<Control-I>', [sub { shift->{'<b>'}->invoke; }, $self]); |
|
|
|
|
|
|
|
|
|
|
|
$self->{'<u>'} = $self->{panel}->Button(-text => 'U', -relief => 'flat', |
|
|
|
$self->{'<u>'} = $self->{panel}->Button(-text => 'U', -relief => 'flat', |
|
|
|
-font => $self->Font(-family => 'times', -underline => 1, -size => '8'), |
|
|
|
-font => $self->Font(-family => 'times', -underline => 1, -size => '8'), |
|
|
|
-command => [sub { |
|
|
|
-command => [sub { |
|
|
@ -42,6 +43,16 @@ $self]); |
|
|
|
}, $self] |
|
|
|
}, $self] |
|
|
|
)->pack(-pady => 0, -side => 'left', -fill => 'both'); |
|
|
|
)->pack(-pady => 0, -side => 'left', -fill => 'both'); |
|
|
|
$self->bind('<Control-U>', [sub { shift->{'<b>'}->invoke; }, $self]); |
|
|
|
$self->bind('<Control-U>', [sub { shift->{'<b>'}->invoke; }, $self]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$self->{'<back>'} = $self->{panel}->Button(-text => 'U', -relief => 'flat', -background => 'green', |
|
|
|
|
|
|
|
-font => $self->Font(-family => 'times', -size => '8'), |
|
|
|
|
|
|
|
-command => [sub { |
|
|
|
|
|
|
|
my ($self) = @_; |
|
|
|
|
|
|
|
$self->toggleTag('<u>'); |
|
|
|
|
|
|
|
}, $self] |
|
|
|
|
|
|
|
)->pack(-pady => 0, -side => 'left', -fill => 'both'); |
|
|
|
|
|
|
|
$self->bind('<Control-U>', [sub { shift->{'<b>'}->invoke; }, $self]); |
|
|
|
|
|
|
|
|
|
|
|
$self->{text}->tagConfigure('elide', -elide => 1); |
|
|
|
$self->{text}->tagConfigure('elide', -elide => 1); |
|
|
|
$self->ConfigSpecs( |
|
|
|
$self->ConfigSpecs( |
|
|
|
'DEFAULT' => [$self->{text}], |
|
|
|
'DEFAULT' => [$self->{text}], |
|
|
|