milkbone57 22 years ago
parent
commit
8cc6bcc01a
  1. 25
      plugins/Tk-GUI/Tk/BrowseEdit.pm
  2. 49
      plugins/Tk-GUI/Tk/ColorChoice.pm

25
plugins/Tk-GUI/Tk/BrowseEdit.pm

@ -2,6 +2,7 @@ package Tk::BrowseEdit;
use Tk; use Tk;
use Tk::Font; use Tk::Font;
use Tk::ColorChoice;
use base 'Tk::Frame'; use base 'Tk::Frame';
use strict; use strict;
@ -49,13 +50,12 @@ $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', $self->{'<back>'} = $self->{panel}->Button(-text => 'A', -relief => 'flat', -background => 'blue',
-font => $self->Font(-family => 'times', -size => '8'), -font => $self->Font(-family => 'times', -size => '8'),
-command => [sub { -command => [sub {
my ($self) = @_; my ($self) = @_;
my $color = $self->chooseColor( my $color = $self->pick_color;
-initialcolor => 'black', -parent => $self,
-title => 'Choose Background Color');
$self->toggleTag("<font back=\"$color\">", '<back>'); $self->toggleTag("<font back=\"$color\">", '<back>');
}, $self] }, $self]
)->pack(-pady => 0, -side => 'left', -fill => 'both'); )->pack(-pady => 0, -side => 'left', -fill => 'both');
@ -169,6 +169,10 @@ sub create_tag
{ {
$fontparams{-slant} = 'italic'; $fontparams{-slant} = 'italic';
} }
if($tag =~ /<font back='(.*?)'>/)
{
$fontparams{-slant} = 'italic';
}
my $font = $self->Font(%fontparams); my $font = $self->Font(%fontparams);
$self->tagConfigure($tag, %tagparams, -font => $font); $self->tagConfigure($tag, %tagparams, -font => $font);
@ -218,4 +222,17 @@ sub end_tag
return $tag; return $tag;
} }
sub pick_color
{
my ($self) = @_;
my $dlg = $self->Parent->DialogBox(-title => 'Choose Color', -buttons =>
['OK', 'Cancel'], -default_button => 'OK');
$dlg->ColorChoice->pack;
my $res = $dlg->Show();
return unless $res eq "OK";
}
1; 1;

49
plugins/Tk-GUI/Tk/ColorChoice.pm

@ -2,7 +2,7 @@ package Tk::ColorChoice;
use Tk; use Tk;
use Tk::Font; use Tk::Font;
use base 'Tk::Toplevel'; use base 'Tk::Frame';
use strict; use strict;
use warnings; use warnings;
@ -21,32 +21,6 @@ sub Populate
$self->SUPER::Populate($args); $self->SUPER::Populate($args);
$self->after(10, [$self, "init"]); $self->after(10, [$self, "init"]);
}
package Tk::ColorChoice;
use Tk;
use Tk::Font;
use base 'Tk::Toplevel';
use strict;
use warnings;
Construct Tk::Widget 'ColorChoice';
sub ClassInit
{
my ($class, $mw) = @_;
$class->SUPER::ClassInit($mw);
}
sub Populate
{
my ($self, $args) = @_;
$self->SUPER::Populate($args);
$self->after(10, [$self, "init"]);
} }
sub init sub init
@ -63,33 +37,18 @@ black white);
{ {
my $color = shift @colors; my $color = shift @colors;
push @currow, $self->Button(-background => $color, -activebackground => push @currow, $self->Button(-background => $color, -activebackground =>
$color, -text => ' '); $color, -text => ' ', -command => [$self, "on_click"]);
} }
last unless @currow; last unless @currow;
(shift @currow)->grid(@currow); (shift @currow)->grid(@currow);
} }
} }
1; sub on_click
sub init
{ {
my ($self) = @_; my ($self) = @_;
my (@colors) = qw(red pink purple blue green yellow orange red brown
black white);
while(@colors)
{
my @currow;
while(@colors and @currow < 4)
{
my $color = shift @colors;
push @currow, $self->Button(-background => $color, -activebackground =>
$color, -text => ' ');
}
last unless @currow;
(shift @currow)->grid(@currow);
}
} }
1; 1;

Loading…
Cancel
Save