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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
package PDF::API2::Outline;
use base 'PDF::API2::Basic::PDF::Dict';
use strict;
use warnings;
our $VERSION = '2.038'; # VERSION
use Carp qw(croak);
use PDF::API2::Basic::PDF::Utils;
use Scalar::Util qw(weaken);
=head1 NAME
PDF::API2::Outline - Manage PDF outlines (a.k.a. bookmarks)
=head1 METHODS
=over
=item $outline = PDF::API2::Outline->new($api, $parent, $prev)
Returns a new outline object (called from $outlines->outline()).
=cut
sub new {
my ($class, $api, $parent, $prev) = @_;
my $self = $class->SUPER::new();
$self->{'Parent'} = $parent if defined $parent;
$self->{'Prev'} = $prev if defined $prev;
$self->{' api'} = $api;
weaken $self->{' api'};
return $self;
}
sub parent {
my $self = shift();
$self->{'Parent'} = shift() if defined $_[0];
return $self->{'Parent'};
}
sub prev {
my $self = shift();
$self->{'Prev'} = shift() if defined $_[0];
return $self->{'Prev'};
}
sub next {
my $self = shift();
$self->{'Next'} = shift() if defined $_[0];
return $self->{'Next'};
}
sub first {
my $self = shift();
$self->{'First'} = $self->{' children'}->[0] if defined $self->{' children'} and defined $self->{' children'}->[0];
return $self->{'First'};
}
sub last {
my $self = shift();
$self->{'Last'} = $self->{' children'}->[-1] if defined $self->{' children'} and defined $self->{' children'}->[-1];
return $self->{'Last'};
}
sub count {
my $self = shift();
my $count = scalar @{$self->{' children'} || []};
$count += $_->count() for @{$self->{' children'}};
$self->{'Count'} = PDFNum($self->{' closed'} ? -$count : $count) if $count > 0;
return $count;
}
sub fix_outline {
my $self = shift();
$self->first();
$self->last();
$self->count();
}
=item $outline->title($text)
Set the title of the outline.
=cut
sub title {
my ($self, $text) = @_;
$self->{'Title'} = PDFStr($text);
return $self;
}
=item $outline->closed()
Set the status of the outline to closed (i.e. collapsed).
=cut
sub closed {
my $self = shift();
$self->{' closed'} = 1;
return $self;
}
=item $outline->open()
Set the status of the outline to open (i.e. expanded).
=cut
sub open {
my $self = shift();
delete $self->{' closed'};
return $self;
}
=item $child_outline = $parent_outline->outline()
Returns a nested outline.
=cut
sub outline {
my $self = shift();
my $child = PDF::API2::Outline->new($self->{' api'}, $self);
$child->prev($self->{' children'}->[-1]) if defined $self->{' children'};
$self->{' children'}->[-1]->next($child) if defined $self->{' children'};
push @{$self->{' children'}}, $child;
$self->{' api'}->{'pdf'}->new_obj($child) unless $child->is_obj($self->{' api'}->{'pdf'});
return $child;
}
=item $outline->dest($page_object, %position)
Sets the destination page and optional position of the outline.
%position can be any of the following:
=over
=item -fit => 1
Display the page designated by page, with its contents magnified just enough to
fit the entire page within the window both horizontally and vertically. If the
required horizontal and vertical magnification factors are different, use the
smaller of the two, centering the page within the window in the other dimension.
=item -fith => $top
Display the page designated by page, with the vertical coordinate $top
positioned at the top edge of the window and the contents of the page magnified
just enough to fit the entire width of the page within the window.
=item -fitv => $left
Display the page designated by page, with the horizontal coordinate $left
positioned at the left edge of the window and the contents of the page magnified
just enough to fit the entire height of the page within the window.
=item -fitr => [$left, $bottom, $right, $top]
Display the page designated by page, with its contents magnified just enough to
fit the rectangle specified by the coordinates $left, $bottom, $right, and $top
entirely within the window both horizontally and vertically. If the required
horizontal and vertical magnification factors are different, use the smaller of
the two, centering the rectangle within the window in the other dimension.
=item -fitb => 1
Display the page designated by page, with its contents magnified just enough to
fit its bounding box entirely within the window both horizontally and
vertically. If the required horizontal and vertical magnification factors are
different, use the smaller of the two, centering the bounding box within the
window in the other dimension.
=item -fitbh => $top
Display the page designated by page, with the vertical coordinate $top
positioned at the top edge of the window and the contents of the page magnified
just enough to fit the entire width of its bounding box within the window.
=item -fitbv => $left
Display the page designated by page, with the horizontal coordinate $left
positioned at the left edge of the window and the contents of the page magnified
just enough to fit the entire height of its bounding box within the window.
=item -xyz => [$left, $top, $zoom]
Display the page designated by page, with the coordinates ($left, $top)
positioned at the top-left corner of the window and the contents of the page
magnified by the factor $zoom. A zero (0) value for any of the parameters $left,
$top, or $zoom specifies that the current value of that parameter is to be
retained unchanged.
=back
=item $outline->dest($name)
Connect the outline to a "Named Destination" defined elsewhere.
=cut
sub dest {
my ($self, $page, %options) = @_;
delete $self->{'A'};
if (ref($page)) {
$options{'-xyz'} = [undef, undef, undef] unless scalar keys %options;
$self->{'Dest'} = _fit($page, %options);
}
else {
$self->{'Dest'} = PDFStr($page);
}
return $self;
}
=item $outline->url($url)
Launch $url when the outline item is activated.
=cut
sub url {
my ($self, $url) = @_;
delete $self->{'Dest'};
$self->{'A'} = PDFDict();
$self->{'A'}->{'S'} = PDFName('URI');
$self->{'A'}->{'URI'} = PDFStr($url);
return $self;
}
=item $outline->file($filename)
Launch an application or file when the outline item is activated
=cut
sub file {
my ($self, $file) = @_;
delete $self->{'Dest'};
$self->{'A'} = PDFDict();
$self->{'A'}->{'S'} = PDFName('Launch');
$self->{'A'}->{'F'} = PDFStr($file);
return $self;
}
=item $outline->pdf_file($filename, $page_number, %position)
Open a PDF file to a particular page number (first page is zero, which is also
the default). The page can optionally be positioned at a particular place in
the viewport (see dest for details).
=cut
# Deprecated
sub pdfile { return pdf_file(@_) }
sub pdf_file {
my ($self, $file, $page_number, %options) = @_;
delete $self->{'Dest'};
$self->{'A'} = PDFDict();
$self->{'A'}->{'S'} = PDFName('GoToR');
$self->{'A'}->{'F'} = PDFStr($file);
$self->{'A'}->{'D'} = _fit(PDFNum($page_number // 0), %options);
return $self;
}
sub _fit {
my ($destination, %options) = @_;
if (defined $options{'-fit'}) {
return PDFArray($destination, PDFName('Fit'));
}
elsif (defined $options{'-fith'}) {
return PDFArray($destination, PDFName('FitH'), PDFNum($options{'-fith'}));
}
elsif (defined $options{'-fitb'}) {
return PDFArray($destination, PDFName('FitB'));
}
elsif (defined $options{'-fitbh'}) {
return PDFArray($destination, PDFName('FitBH'), PDFNum($options{'-fitbh'}));
}
elsif (defined $options{'-fitv'}) {
return PDFArray($destination, PDFName('FitV'), PDFNum($options{'-fitv'}));
}
elsif (defined $options{'-fitbv'}) {
return PDFArray($destination, PDFName('FitBV'), PDFNum($options{'-fitbv'}));
}
elsif (defined $options{'-fitr'}) {
croak "Incorrect number of parameters (expected four) to -fitr" unless scalar @{$options{'-fitr'}} == 4;
return PDFArray($destination, PDFName('FitR'), map { PDFNum($_) } @{$options{'-fitr'}});
}
elsif (defined $options{'-xyz'}) {
croak "Incorrect number of parameters (expected three) to -xyz" unless scalar @{$options{'-xyz'}} == 3;
return PDFArray($destination, PDFName('XYZ'), map { defined $_ ? PDFNum($_) : PDFNull() } @{$options{'-xyz'}});
}
return;
}
sub outobjdeep {
my $self = shift();
$self->fix_outline();
return $self->SUPER::outobjdeep(@_);
}
=back
=cut
1;
|