/usr/share/perl5/OpenOffice/OODoc/Document.pm is in libopenoffice-oodoc-perl 2.125-3.
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 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 | #-----------------------------------------------------------------------------
#
# $Id : Document.pm 2.025 2010-07-08 JMG$
#
# Created and maintained by Jean-Marie Gouarne
# Copyright 2008 by Genicorp, S.A. (www.genicorp.com)
#
#-----------------------------------------------------------------------------
use OpenOffice::OODoc::Text 2.243;
use OpenOffice::OODoc::Image 2.020;
use OpenOffice::OODoc::Styles 2.027;
package OpenOffice::OODoc::Document;
use 5.008_000;
use strict;
our @ISA = qw (
OpenOffice::OODoc::Text
OpenOffice::OODoc::Image
OpenOffice::OODoc::Styles
);
our $VERSION = '2.025';
#-----------------------------------------------------------------------------
# constructor
sub new
{
my $caller = shift;
my $class = ref ($caller) || $caller;
my %options =
(
part => 'content',
@_
);
my $object = $class->SUPER::new(%options);
return $object ?
bless $object, $class :
undef;
}
#-----------------------------------------------------------------------------
# create and append a new image style
sub createImageStyle
{
my $self = shift;
my $stylename = shift;
my %opt =
(
%OpenOffice::OODoc::Image::DEFAULT_IMAGE_STYLE,
@_
);
$opt{'family'} = $self->{'opendocument'} ? 'graphic' : 'graphics';
return $self->createStyle($stylename, %opt);
}
#-----------------------------------------------------------------------------
# create and append a new text style
# default attributes come from the 'Standard' style of the document
sub createTextStyle
{
my $self = shift;
my $stylename = shift;
my $proto = $self->getStyleElement('Standard');
my %default_options =
$proto ?
$self->getStyleAttributes($proto) :
%OpenOffice::OODoc::Text::DEFAULT_TEXT_STYLE;
my %opt =
(
%default_options,
@_
);
return $self->createStyle($stylename, %opt);
}
#-----------------------------------------------------------------------------
# set a page break before a paragraph
sub setPageBreak
{
my $self = shift;
my $p1 = shift;
my $pos = ref $p1 ? undef : shift;
my %opt = (position => 'before', @_);
my $element = $self->getElement($p1, $pos) or return undef;
my $stylename = $self->getStyle($element);
unless ($stylename)
{
warn "[" . __PACKAGE__ . "::setPageBreak] " .
"Element has no style\n";
return undef;
}
my $style = undef;
if ($opt{'style'})
{
$style = $self->createStyle
(
$opt{'style'},
family => 'paragraph',
parent => $stylename,
category => 'auto',
properties =>
{
'style:page-number' => '0'
}
);
unless ($style)
{
warn "[" . __PACKAGE__ . "::setPageBreak] " .
"Style $stylename creation failure\n";
return undef;
}
$self->textStyle($element, $opt{'style'});
}
else
{
$style = $self->getStyleElement($stylename);
unless ($style)
{
warn "[" . __PACKAGE__ . "::setPageBreak] " .
"Element style not found\n";
return undef;
}
}
if ($opt{'page'})
{
my $name = undef;
if (ref $opt{'page'})
{
unless ($opt{'page'}->isMasterPage)
{
warn "[" . __PACKAGE__ . "::setPageBreak] " .
"Style element is not master page\n";
return undef;
}
$name = $self->getAttribute
($opt{'page'}, 'style:name');
}
else
{
$name = $opt{'page'};
}
$self->setAttribute($style, 'style:master-page-name', $name);
}
else
{
$self->styleProperties
(
$style,
('fo:break-' . $opt{'position'}) => 'page'
);
}
return $element;
}
#-----------------------------------------------------------------------------
# removes a page break from a paragraph
sub removePageBreak
{
my $self = shift;
my $element = $self->getElement(@_) or return undef;
my $stylename = $self->getStyle($element);
my $style = $self->getStyleElement($self->getStyle($element));
unless ($style)
{
warn "[" . __PACKAGE__ . "::removePageBreak] " .
"Element style not found in the active document\n";
return undef;
}
$self->setAttribute($style, 'style:master-page-name' => undef);
my $prop = $self->getStyleNode($style, 'properties');
$self->setAttribute($prop, 'fo:break-before' => undef) if $prop;
return $element;
}
#-----------------------------------------------------------------------------
# get/set the style of a text or image element
sub style
{
my $self = shift;
my $path = shift;
unless ($path)
{
warn "[" . __PACKAGE__ . "::style] Missing object\n";
return undef;
}
my $element = undef;
if (ref $path)
{
$element = $path;
}
else
{
$element = ($path =~ /^\//) ?
$self->getElement($path, shift) :
$self->getImageElement($path);
}
return undef unless $element;
my $value = shift;
my $namespace = $element->getPrefix;
unless ($namespace)
{
warn "[" . __PACKAGE__ . "::style] Unknown class\n";
return undef;
}
my $attribute = $namespace . ":" . 'style-name';
return defined $value ?
$self->setAttribute($element, $attribute => $value) :
$self->getAttribute($element, $attribute);
}
#-----------------------------------------------------------------------------
# get the style name of any content element
sub getStyle
{
my $self = shift;
my $path = shift;
my $element = ref $path ?
$path :
$self->getElement($path, shift)
or return undef;
my $fullname = $element->getName || "";
my ($namespace, $name) = split /:/, $fullname;
my $style_attribute = undef;
if ($name eq 'master-page')
{
$style_attribute = $namespace . 'page-master-name';
}
else
{
$style_attribute = $namespace . ':style-name';
}
return $self->getAttribute($element, $style_attribute);
}
#-----------------------------------------------------------------------------
1;
|