/usr/share/perl5/Graphics/Primitive/TextBox.pm is in libgraphics-primitive-perl 0.61-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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | package Graphics::Primitive::TextBox;
use Moose;
use MooseX::Storage;
use Moose::Util::TypeConstraints;
# enum 'Graphics::Primitive::TextBox::Directions' => (
# 'auto', 'ltr', 'rtl'
# );
# enum 'Graphics::Primitive::TextBox::WrapModes'
# => qw(word char word_char);
# enum 'Graphics::Primitive::TextBox::EllipsizeModes'
# => qw(none start middle end);
extends 'Graphics::Primitive::Component';
with qw(MooseX::Clone Graphics::Primitive::Aligned);
with Storage (format => 'JSON', io => 'File');
use Graphics::Primitive::Font;
has 'angle' => (
is => 'rw',
isa => 'Num',
trigger => sub { my ($self) = @_; $self->prepared(0); }
);
has 'direction' => (
is => 'rw',
isa => 'Str',
);
has 'ellipsize_mode' => (
is => 'rw',
isa => 'Str',
);
has 'font' => (
is => 'rw',
isa => 'Graphics::Primitive::Font',
default => sub { Graphics::Primitive::Font->new },
trigger => sub { my ($self) = @_; $self->prepared(0); }
);
has '+horizontal_alignment' => ( default => sub { 'left'} );
has 'indent' => (
is => 'rw',
isa => 'Num',
default => sub { 0 }
);
has 'justify' => (
is => 'rw',
isa => 'Bool',
default => sub { 0 }
);
has 'layout' => (
is => 'rw',
does => 'Graphics::Primitive::Driver::TextLayout',
);
has 'lines' => (
is => 'rw',
);
has 'line_height' => (
is => 'rw',
isa => 'Num',
trigger => sub { my ($self) = @_; $self->prepared(0); }
);
has 'text' => (
is => 'rw',
isa => 'Str',
trigger => sub { my ($self) = @_; $self->prepared(0); }
);
has 'text_bounding_box' => (
is => 'rw',
isa => 'Geometry::Primitive::Rectangle',
trigger => sub { my ($self) = @_; $self->prepared(0); }
);
has '+vertical_alignment' => ( default => sub { 'top'} );
has 'wrap_mode' => (
is => 'rw',
isa => 'Str',
);
override('prepare', sub {
my ($self, $driver) = @_;
super;
return unless defined($self->text) || defined($self->lines) || defined($self->layout);
unless($self->lines) {
my $layout = $driver->get_textbox_layout($self);
$self->layout($layout);
my $mw = $layout->width + $self->outside_width;
if($mw > $self->minimum_width) {
$self->minimum_width($mw);
}
my $mh = $layout->height + $self->outside_height;
if($mh > $self->minimum_height) {
$self->minimum_height($mh);
}
}
});
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 NAME
Graphics::Primitive::TextBox - Text component
=head1 DESCRIPTION
Graphics::Primitive::TextBox is a Component with text.
=head1 SYNOPSIS
use Graphics::Primitive::Font;
use Graphics::Primitive::TextBox;
my $tx = Graphics::Primitive::TextBox->new(
font => Graphics::Primitive::Font->new(
face => 'Myriad Pro',
size => 12
),
text => 'I am a textbox!'
);
=head1 WARNING
This component is likely to change drastically. Here be dragons.
=head1 METHODS
=head2 Constructor
=over 4
=item I<new>
Creates a new Graphics::Primitive::TextBox.
=back
=head2 Instance Methods
=over 4
=item I<angle>
The angle this text will be rotated.
=item I<font>
Set this textbox's font
=item I<horizontal_alignment>
Horizontal alignment. See L<Graphics::Primitive::Aligned>.
=item I<text>
Set this textbox's text.
=item I<vertical_alignment>
Vertical alignment. See L<Graphics::Primitive::Aligned>.
=back
=head1 AUTHOR
Cory Watson, C<< <gphat@cpan.org> >>
=head1 COPYRIGHT & LICENSE
Copyright 2008-2010 by Cory G Watson.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
|