/usr/share/perl5/Chart/Clicker/Positioned.pm is in libchart-clicker-perl 2.90-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 104 105 106 107 108 109 110 111 112 113 | package Chart::Clicker::Positioned;
$Chart::Clicker::Positioned::VERSION = '2.90';
use Moose::Role;
# ABSTRACT: Role for components that care about position.
use Moose::Util::TypeConstraints;
enum 'Chart::Clicker::Position' => [qw(left right top bottom)];
has 'position' => (
is => 'rw',
isa => 'Chart::Clicker::Position'
);
sub is_left {
my ($self) = @_;
return $self->position eq 'left';
}
sub is_right {
my ($self) = @_;
return $self->position eq 'right';
}
sub is_top {
my ($self) = @_;
return $self->position eq 'top';
}
sub is_bottom {
my ($self) = @_;
return $self->position eq 'bottom';
}
no Moose;
1;
__END__
=pod
=head1 NAME
Chart::Clicker::Positioned - Role for components that care about position.
=head1 VERSION
version 2.90
=head1 SYNOPSIS
package My::Component;
use Moose;
extends 'Chart::Clicker::Drawing::Component';
with 'Chart::Clicker::Positioned';
1;
=head1 DESCRIPTION
Some components draw differently depending on which 'side' they are
positioned. If an Axis is on the left, it will put the numbers left and the
bar on the right. If positioned on the other side then those two piece are
reversed.
=head1 ATTRIBUTES
=head2 position
The 'side' on which this component is positioned.
=head1 METHODS
=head2 is_left
Returns true if the component is positioned left.
=head2 is_right
Returns true if the component is positioned right.
=head2 is_top
Returns true if the component is positioned top.
=head2 is_bottom
Returns true if the component is positioned bottom.
=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
|