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

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

@ -2,6 +2,7 @@ package Tk::BrowseEdit; @@ -2,6 +2,7 @@ package Tk::BrowseEdit;
use Tk;
use Tk::Font;
use Tk::ColorChoice;
use base 'Tk::Frame';
use strict;
@ -49,13 +50,12 @@ $self]); @@ -49,13 +50,12 @@ $self]);
)->pack(-pady => 0, -side => 'left', -fill => 'both');
$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'),
-command => [sub {
my ($self) = @_;
my $color = $self->chooseColor(
-initialcolor => 'black', -parent => $self,
-title => 'Choose Background Color');
my $color = $self->pick_color;
$self->toggleTag("<font back=\"$color\">", '<back>');
}, $self]
)->pack(-pady => 0, -side => 'left', -fill => 'both');
@ -169,6 +169,10 @@ sub create_tag @@ -169,6 +169,10 @@ sub create_tag
{
$fontparams{-slant} = 'italic';
}
if($tag =~ /<font back='(.*?)'>/)
{
$fontparams{-slant} = 'italic';
}
my $font = $self->Font(%fontparams);
$self->tagConfigure($tag, %tagparams, -font => $font);
@ -218,4 +222,17 @@ sub end_tag @@ -218,4 +222,17 @@ sub end_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;

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

@ -2,7 +2,7 @@ package Tk::ColorChoice; @@ -2,7 +2,7 @@ package Tk::ColorChoice;
use Tk;
use Tk::Font;
use base 'Tk::Toplevel';
use base 'Tk::Frame';
use strict;
use warnings;
@ -20,33 +20,7 @@ sub Populate @@ -20,33 +20,7 @@ sub Populate
my ($self, $args) = @_;
$self->SUPER::Populate($args);
$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"]);
$self->after(10, [$self, "init"]);
}
sub init
@ -63,33 +37,18 @@ black white); @@ -63,33 +37,18 @@ black white);
{
my $color = shift @colors;
push @currow, $self->Button(-background => $color, -activebackground =>
$color, -text => ' ');
$color, -text => ' ', -command => [$self, "on_click"]);
}
last unless @currow;
(shift @currow)->grid(@currow);
}
}
1;
sub init
sub on_click
{
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;

Loading…
Cancel
Save