1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
package Chart::Clicker::Decoration::Glass;
$Chart::Clicker::Decoration::Glass::VERSION = '2.90';
use Moose;
extends 'Chart::Clicker::Decoration';
# ABSTRACT: Under-chart gradient decoration
use Graphics::Color::RGB;
use Graphics::Primitive::Operation::Fill;
use Graphics::Primitive::Paint::Solid;
has 'background_color' => (
is => 'rw',
isa => 'Graphics::Color::RGB',
default => sub {
Graphics::Color::RGB->new(
red => 1, green => 0, blue => 0, alpha => 1
)
}
);
has 'glare_color' => (
is => 'rw',
isa => 'Graphics::Color::RGB',
default => sub {
Graphics::Color::RGB->new(
red => 1, green => 1, blue => 1, alpha => 1
)
},
);
override('finalize', sub {
my ($self) = @_;
my $twentypofheight = $self->height * .20;
$self->move_to(1, $twentypofheight);
$self->rel_curve_to(
0, 0,
$self->width / 2, $self->height * .30,
$self->width, 0
);
$self->line_to($self->width, 0);
$self->line_to(0, 0);
$self->line_to(0, $twentypofheight);
my $fillop = Graphics::Primitive::Operation::Fill->new(
paint => Graphics::Primitive::Paint::Solid->new(
color => $self->glare_color
)
);
$self->do($fillop);
});
__PACKAGE__->meta->make_immutable;
no Moose;
1;
__END__
=pod
=head1 NAME
Chart::Clicker::Decoration::Glass - Under-chart gradient decoration
=head1 VERSION
version 2.90
=head1 DESCRIPTION
A glass-like decoration.
=head1 ATTRIBUTES
=head2 background_color
Set/Get the background L<color|Graphics::Color::RGB> for this glass.
=head2 glare_color
Set/Get the glare L<color|Graphics::Color::RGB> for this glass.
=head1 AUTHOR
Cory G Watson <gphat@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Cory G Watson.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|