use
5.008002;
our
@ISA
=
qw(Excel::Writer::XLSX::Package::XMLwriter)
;
our
$VERSION
=
'1.14'
;
sub
new {
my
$class
=
shift
;
my
$fh
=
shift
;
my
$self
= Excel::Writer::XLSX::Package::XMLwriter->new(
$fh
);
$self
->{_drawings} = [];
$self
->{_embedded} = 0;
$self
->{_orientation} = 0;
bless
$self
,
$class
;
return
$self
;
}
sub
_assemble_xml_file {
my
$self
=
shift
;
$self
->xml_declaration;
$self
->_write_drawing_workspace();
if
(
$self
->{_embedded} ) {
my
$index
= 0;
for
my
$drawing_object
( @{
$self
->{_drawings} } ) {
$self
->_write_two_cell_anchor( ++
$index
,
$drawing_object
);
}
}
else
{
my
$index
= 0;
$self
->_write_absolute_anchor( ++
$index
);
}
$self
->xml_end_tag(
'xdr:wsDr'
);
$self
->xml_get_fh()->
close
();
}
sub
_add_drawing_object {
my
$self
=
shift
;
my
$drawing_object
= {
_type
=>
undef
,
_dimensions
=> [],
_width
=> 0,
_height
=> 0,
_description
=>
undef
,
_shape
=>
undef
,
_anchor
=>
undef
,
_rel_index
=> 0,
_url_rel_index
=> 0,
_tip
=>
undef
,
_decorative
=>
undef
,
};
push
@{
$self
->{_drawings} },
$drawing_object
;
return
$drawing_object
;
}
sub
_write_drawing_workspace {
my
$self
=
shift
;
my
$xmlns_xdr
=
$schema
.
'2006/spreadsheetDrawing'
;
my
$xmlns_a
=
$schema
.
'2006/main'
;
my
@attributes
= (
'xmlns:xdr'
=>
$xmlns_xdr
,
'xmlns:a'
=>
$xmlns_a
,
);
$self
->xml_start_tag(
'xdr:wsDr'
,
@attributes
);
}
sub
_write_two_cell_anchor {
my
$self
=
shift
;
my
$index
=
shift
;
my
$drawing_object
=
shift
;
my
$type
=
$drawing_object
->{_type};
my
$dimensions
=
$drawing_object
->{_dimensions};
my
$col_from
=
$dimensions
->[0];
my
$row_from
=
$dimensions
->[1];
my
$col_from_offset
=
$dimensions
->[2];
my
$row_from_offset
=
$dimensions
->[3];
my
$col_to
=
$dimensions
->[4];
my
$row_to
=
$dimensions
->[5];
my
$col_to_offset
=
$dimensions
->[6];
my
$row_to_offset
=
$dimensions
->[7];
my
$col_absolute
=
$dimensions
->[8];
my
$row_absolute
=
$dimensions
->[9];
my
$width
=
$drawing_object
->{_width};
my
$height
=
$drawing_object
->{_height};
my
$shape
=
$drawing_object
->{_shape};
my
$anchor
=
$drawing_object
->{_anchor};
my
$rel_index
=
$drawing_object
->{_rel_index};
my
$url_rel_index
=
$drawing_object
->{_url_rel_index};
my
$tip
=
$drawing_object
->{_tip};
my
$name
=
$drawing_object
->{_name};
my
$description
=
$drawing_object
->{_description};
my
$decorative
=
$drawing_object
->{_decorative};
my
@attributes
= ();
if
(
$anchor
== 2 ) {
push
@attributes
, (
editAs
=>
'oneCell'
);
}
elsif
(
$anchor
== 3 ) {
push
@attributes
, (
editAs
=>
'absolute'
);
}
push
@attributes
, (
editAs
=>
$shape
->{_editAs} )
if
$shape
->{_editAs};
$self
->xml_start_tag(
'xdr:twoCellAnchor'
,
@attributes
);
$self
->_write_from(
$col_from
,
$row_from
,
$col_from_offset
,
$row_from_offset
,
);
$self
->_write_to(
$col_to
,
$row_to
,
$col_to_offset
,
$row_to_offset
,
);
if
(
$type
== 1 ) {
$self
->_write_graphic_frame(
$index
,
$rel_index
,
$name
,
$description
,
$decorative
);
}
elsif
(
$type
== 2 ) {
$self
->_write_pic(
$index
,
$rel_index
,
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$description
,
$url_rel_index
,
$tip
,
$decorative
);
}
else
{
$self
->_write_sp(
$index
,
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$shape
);
}
$self
->_write_client_data();
$self
->xml_end_tag(
'xdr:twoCellAnchor'
);
}
sub
_write_absolute_anchor {
my
$self
=
shift
;
my
$index
=
shift
;
$self
->xml_start_tag(
'xdr:absoluteAnchor'
);
if
(
$self
->{_orientation} == 0 ) {
$self
->_write_pos( 0, 0 );
$self
->_write_xdr_ext( 9308969, 6078325 );
}
else
{
$self
->_write_pos( 0, -47625 );
$self
->_write_xdr_ext( 6162675, 6124575 );
}
$self
->_write_graphic_frame(
$index
,
$index
);
$self
->_write_client_data();
$self
->xml_end_tag(
'xdr:absoluteAnchor'
);
}
sub
_write_from {
my
$self
=
shift
;
my
$col
=
shift
;
my
$row
=
shift
;
my
$col_offset
=
shift
;
my
$row_offset
=
shift
;
$self
->xml_start_tag(
'xdr:from'
);
$self
->_write_col(
$col
);
$self
->_write_col_off(
$col_offset
);
$self
->_write_row(
$row
);
$self
->_write_row_off(
$row_offset
);
$self
->xml_end_tag(
'xdr:from'
);
}
sub
_write_to {
my
$self
=
shift
;
my
$col
=
shift
;
my
$row
=
shift
;
my
$col_offset
=
shift
;
my
$row_offset
=
shift
;
$self
->xml_start_tag(
'xdr:to'
);
$self
->_write_col(
$col
);
$self
->_write_col_off(
$col_offset
);
$self
->_write_row(
$row
);
$self
->_write_row_off(
$row_offset
);
$self
->xml_end_tag(
'xdr:to'
);
}
sub
_write_col {
my
$self
=
shift
;
my
$data
=
shift
;
$self
->xml_data_element(
'xdr:col'
,
$data
);
}
sub
_write_col_off {
my
$self
=
shift
;
my
$data
=
shift
;
$self
->xml_data_element(
'xdr:colOff'
,
$data
);
}
sub
_write_row {
my
$self
=
shift
;
my
$data
=
shift
;
$self
->xml_data_element(
'xdr:row'
,
$data
);
}
sub
_write_row_off {
my
$self
=
shift
;
my
$data
=
shift
;
$self
->xml_data_element(
'xdr:rowOff'
,
$data
);
}
sub
_write_pos {
my
$self
=
shift
;
my
$x
=
shift
;
my
$y
=
shift
;
my
@attributes
= (
'x'
=>
$x
,
'y'
=>
$y
,
);
$self
->xml_empty_tag(
'xdr:pos'
,
@attributes
);
}
sub
_write_xdr_ext {
my
$self
=
shift
;
my
$cx
=
shift
;
my
$cy
=
shift
;
my
@attributes
= (
'cx'
=>
$cx
,
'cy'
=>
$cy
,
);
$self
->xml_empty_tag(
'xdr:ext'
,
@attributes
);
}
sub
_write_graphic_frame {
my
$self
=
shift
;
my
$index
=
shift
;
my
$rel_index
=
shift
;
my
$name
=
shift
;
my
$description
=
shift
;
my
$decorative
=
shift
;
my
$macro
=
''
;
my
@attributes
= (
'macro'
=>
$macro
);
$self
->xml_start_tag(
'xdr:graphicFrame'
,
@attributes
);
$self
->_write_nv_graphic_frame_pr(
$index
,
$name
,
$description
,
$decorative
);
$self
->_write_xfrm();
$self
->_write_atag_graphic(
$rel_index
);
$self
->xml_end_tag(
'xdr:graphicFrame'
);
}
sub
_write_nv_graphic_frame_pr {
my
$self
=
shift
;
my
$index
=
shift
;
my
$name
=
shift
;
my
$description
=
shift
;
my
$decorative
=
shift
;
if
( !
$name
) {
$name
=
'Chart '
.
$index
;
}
$self
->xml_start_tag(
'xdr:nvGraphicFramePr'
);
$self
->_write_c_nv_pr(
$index
+ 1,
$name
,
$description
,
undef
,
undef
,
$decorative
);
$self
->_write_c_nv_graphic_frame_pr();
$self
->xml_end_tag(
'xdr:nvGraphicFramePr'
);
}
sub
_write_c_nv_pr {
my
$self
=
shift
;
my
$index
=
shift
;
my
$name
=
shift
;
my
$description
=
shift
;
my
$url_rel_index
=
shift
;
my
$tip
=
shift
;
my
$decorative
=
shift
;
my
@attributes
= (
'id'
=>
$index
,
'name'
=>
$name
,
);
if
(
$description
&& !
$decorative
) {
push
@attributes
, (
descr
=>
$description
);
}
if
(
$url_rel_index
||
$decorative
) {
$self
->xml_start_tag(
'xdr:cNvPr'
,
@attributes
);
if
(
$url_rel_index
) {
$self
->_write_a_hlink_click(
$url_rel_index
,
$tip
);
}
if
(
$decorative
) {
$self
->_write_decorative();
}
$self
->xml_end_tag(
'xdr:cNvPr'
);
}
else
{
$self
->xml_empty_tag(
'xdr:cNvPr'
,
@attributes
);
}
}
sub
_write_a_hlink_click {
my
$self
=
shift
;
my
$index
=
shift
;
my
$tip
=
shift
;
my
$xmlns_r
=
$schema
.
'2006/relationships'
;
my
$r_id
=
'rId'
.
$index
;
my
@attributes
= (
'xmlns:r'
=>
$xmlns_r
,
'r:id'
=>
$r_id
,
);
push
(
@attributes
, (
'tooltip'
=>
$tip
) )
if
$tip
;
$self
->xml_empty_tag(
'a:hlinkClick'
,
@attributes
);
}
sub
_write_decorative {
my
$self
=
shift
;
$self
->xml_start_tag(
'a:extLst'
);
$self
->_write_a_uri_ext(
'{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}'
);
$self
->_write_a16_creation_id();
$self
->xml_end_tag(
'a:ext'
);
$self
->_write_a_uri_ext(
'{C183D7F6-B498-43B3-948B-1728B52AA6E4}'
);
$self
->_write_adec_decorative();
$self
->xml_end_tag(
'a:ext'
);
$self
->xml_end_tag(
'a:extLst'
);
}
sub
_write_a_uri_ext {
my
$self
=
shift
;
my
$uri
=
shift
;
my
@attributes
= (
'uri'
=>
$uri
);
$self
->xml_start_tag(
'a:ext'
,
@attributes
);
}
sub
_write_adec_decorative {
my
$self
=
shift
;
'drawing/2017/decorative'
;
my
$val
= 1;
my
@attributes
= (
'xmlns:adec'
=>
$xmlns_adec
,
'val'
=>
$val
,
);
$self
->xml_empty_tag(
'adec:decorative'
,
@attributes
);
}
sub
_write_a16_creation_id {
my
$self
=
shift
;
my
$id
=
'{00000000-0008-0000-0000-000002000000}'
;
my
@attributes
= (
'xmlns:a16'
=>
$xmlns_a_16
,
'id'
=>
$id
,
);
$self
->xml_empty_tag(
'a16:creationId'
,
@attributes
);
}
sub
_write_c_nv_graphic_frame_pr {
my
$self
=
shift
;
if
(
$self
->{_embedded} ) {
$self
->xml_empty_tag(
'xdr:cNvGraphicFramePr'
);
}
else
{
$self
->xml_start_tag(
'xdr:cNvGraphicFramePr'
);
$self
->_write_a_graphic_frame_locks();
$self
->xml_end_tag(
'xdr:cNvGraphicFramePr'
);
}
}
sub
_write_a_graphic_frame_locks {
my
$self
=
shift
;
my
$no_grp
= 1;
my
@attributes
= (
'noGrp'
=>
$no_grp
);
$self
->xml_empty_tag(
'a:graphicFrameLocks'
,
@attributes
);
}
sub
_write_xfrm {
my
$self
=
shift
;
$self
->xml_start_tag(
'xdr:xfrm'
);
$self
->_write_xfrm_offset();
$self
->_write_xfrm_extension();
$self
->xml_end_tag(
'xdr:xfrm'
);
}
sub
_write_xfrm_offset {
my
$self
=
shift
;
my
$x
= 0;
my
$y
= 0;
my
@attributes
= (
'x'
=>
$x
,
'y'
=>
$y
,
);
$self
->xml_empty_tag(
'a:off'
,
@attributes
);
}
sub
_write_xfrm_extension {
my
$self
=
shift
;
my
$x
= 0;
my
$y
= 0;
my
@attributes
= (
'cx'
=>
$x
,
'cy'
=>
$y
,
);
$self
->xml_empty_tag(
'a:ext'
,
@attributes
);
}
sub
_write_atag_graphic {
my
$self
=
shift
;
my
$index
=
shift
;
$self
->xml_start_tag(
'a:graphic'
);
$self
->_write_atag_graphic_data(
$index
);
$self
->xml_end_tag(
'a:graphic'
);
}
sub
_write_atag_graphic_data {
my
$self
=
shift
;
my
$index
=
shift
;
my
@attributes
= (
'uri'
=>
$uri
, );
$self
->xml_start_tag(
'a:graphicData'
,
@attributes
);
$self
->_write_c_chart(
'rId'
.
$index
);
$self
->xml_end_tag(
'a:graphicData'
);
}
sub
_write_c_chart {
my
$self
=
shift
;
my
$r_id
=
shift
;
my
$xmlns_c
=
$schema
.
'drawingml/2006/chart'
;
my
$xmlns_r
=
$schema
.
'officeDocument/2006/relationships'
;
my
@attributes
= (
'xmlns:c'
=>
$xmlns_c
,
'xmlns:r'
=>
$xmlns_r
,
'r:id'
=>
$r_id
,
);
$self
->xml_empty_tag(
'c:chart'
,
@attributes
);
}
sub
_write_client_data {
my
$self
=
shift
;
$self
->xml_empty_tag(
'xdr:clientData'
);
}
sub
_write_sp {
my
$self
=
shift
;
my
$index
=
shift
;
my
$col_absolute
=
shift
;
my
$row_absolute
=
shift
;
my
$width
=
shift
;
my
$height
=
shift
;
my
$shape
=
shift
;
if
(
$shape
->{_connect} ) {
my
@attributes
= (
macro
=>
''
);
$self
->xml_start_tag(
'xdr:cxnSp'
,
@attributes
);
$self
->_write_nv_cxn_sp_pr(
$index
,
$shape
);
$self
->_write_xdr_sp_pr(
$index
,
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$shape
);
$self
->xml_end_tag(
'xdr:cxnSp'
);
}
else
{
my
@attributes
= (
macro
=>
''
,
textlink
=>
''
);
$self
->xml_start_tag(
'xdr:sp'
,
@attributes
);
$self
->_write_nv_sp_pr(
$index
,
$shape
);
$self
->_write_xdr_sp_pr(
$index
,
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$shape
);
if
(
$shape
->{_text} ) {
$self
->_write_txBody(
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$shape
);
}
$self
->xml_end_tag(
'xdr:sp'
);
}
}
sub
_write_nv_cxn_sp_pr {
my
$self
=
shift
;
my
$index
=
shift
;
my
$shape
=
shift
;
$self
->xml_start_tag(
'xdr:nvCxnSpPr'
);
$shape
->{_name} =
join
(
' '
,
$shape
->{_type},
$index
)
unless
defined
$shape
->{_name};
$self
->_write_c_nv_pr(
$shape
->{_id},
$shape
->{_name} );
$self
->xml_start_tag(
'xdr:cNvCxnSpPr'
);
my
@attributes
= (
noChangeShapeType
=>
'1'
);
$self
->xml_empty_tag(
'a:cxnSpLocks'
,
@attributes
);
if
(
$shape
->{_start} ) {
@attributes
=
(
'id'
=>
$shape
->{_start},
'idx'
=>
$shape
->{_start_index} );
$self
->xml_empty_tag(
'a:stCxn'
,
@attributes
);
}
if
(
$shape
->{_end} ) {
@attributes
= (
'id'
=>
$shape
->{_end},
'idx'
=>
$shape
->{_end_index} );
$self
->xml_empty_tag(
'a:endCxn'
,
@attributes
);
}
$self
->xml_end_tag(
'xdr:cNvCxnSpPr'
);
$self
->xml_end_tag(
'xdr:nvCxnSpPr'
);
}
sub
_write_nv_sp_pr {
my
$self
=
shift
;
my
$index
=
shift
;
my
$shape
=
shift
;
my
@attributes
= ();
$self
->xml_start_tag(
'xdr:nvSpPr'
);
my
$shape_name
=
$shape
->{_type} .
' '
.
$index
;
$self
->_write_c_nv_pr(
$shape
->{_id},
$shape_name
);
@attributes
= (
'txBox'
=> 1 )
if
$shape
->{_txBox};
$self
->xml_start_tag(
'xdr:cNvSpPr'
,
@attributes
);
@attributes
= (
noChangeArrowheads
=>
'1'
);
$self
->xml_empty_tag(
'a:spLocks'
,
@attributes
);
$self
->xml_end_tag(
'xdr:cNvSpPr'
);
$self
->xml_end_tag(
'xdr:nvSpPr'
);
}
sub
_write_pic {
my
$self
=
shift
;
my
$index
=
shift
;
my
$rel_index
=
shift
;
my
$col_absolute
=
shift
;
my
$row_absolute
=
shift
;
my
$width
=
shift
;
my
$height
=
shift
;
my
$description
=
shift
;
my
$url_rel_index
=
shift
;
my
$tip
=
shift
;
my
$decorative
=
shift
;
$self
->xml_start_tag(
'xdr:pic'
);
$self
->_write_nv_pic_pr(
$index
,
$rel_index
,
$description
,
$url_rel_index
,
$tip
,
$decorative
);
$self
->_write_blip_fill(
$rel_index
);
my
$shape
= {
_type
=>
'rect'
};
$self
->_write_sp_pr(
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$shape
);
$self
->xml_end_tag(
'xdr:pic'
);
}
sub
_write_nv_pic_pr {
my
$self
=
shift
;
my
$index
=
shift
;
my
$rel_index
=
shift
;
my
$description
=
shift
;
my
$url_rel_index
=
shift
;
my
$tip
=
shift
;
my
$decorative
=
shift
;
$self
->xml_start_tag(
'xdr:nvPicPr'
);
$self
->_write_c_nv_pr(
$index
+ 1,
'Picture '
.
$index
,
$description
,
$url_rel_index
,
$tip
,
$decorative
);
$self
->_write_c_nv_pic_pr();
$self
->xml_end_tag(
'xdr:nvPicPr'
);
}
sub
_write_c_nv_pic_pr {
my
$self
=
shift
;
$self
->xml_start_tag(
'xdr:cNvPicPr'
);
$self
->_write_a_pic_locks();
$self
->xml_end_tag(
'xdr:cNvPicPr'
);
}
sub
_write_a_pic_locks {
my
$self
=
shift
;
my
$no_change_aspect
= 1;
my
@attributes
= (
'noChangeAspect'
=>
$no_change_aspect
);
$self
->xml_empty_tag(
'a:picLocks'
,
@attributes
);
}
sub
_write_blip_fill {
my
$self
=
shift
;
my
$index
=
shift
;
$self
->xml_start_tag(
'xdr:blipFill'
);
$self
->_write_a_blip(
$index
);
$self
->_write_a_stretch();
$self
->xml_end_tag(
'xdr:blipFill'
);
}
sub
_write_a_blip {
my
$self
=
shift
;
my
$index
=
shift
;
my
$xmlns_r
=
$schema
.
'2006/relationships'
;
my
$r_embed
=
'rId'
.
$index
;
my
@attributes
= (
'xmlns:r'
=>
$xmlns_r
,
'r:embed'
=>
$r_embed
,
);
$self
->xml_empty_tag(
'a:blip'
,
@attributes
);
}
sub
_write_a_stretch {
my
$self
=
shift
;
$self
->xml_start_tag(
'a:stretch'
);
$self
->_write_a_fill_rect();
$self
->xml_end_tag(
'a:stretch'
);
}
sub
_write_a_fill_rect {
my
$self
=
shift
;
$self
->xml_empty_tag(
'a:fillRect'
);
}
sub
_write_sp_pr {
my
$self
=
shift
;
my
$col_absolute
=
shift
;
my
$row_absolute
=
shift
;
my
$width
=
shift
;
my
$height
=
shift
;
my
$shape
=
shift
|| {};
$self
->xml_start_tag(
'xdr:spPr'
);
$self
->_write_a_xfrm(
$col_absolute
,
$row_absolute
,
$width
,
$height
);
$self
->_write_a_prst_geom(
$shape
);
$self
->xml_end_tag(
'xdr:spPr'
);
}
sub
_write_xdr_sp_pr {
my
$self
=
shift
;
my
$index
=
shift
;
my
$col_absolute
=
shift
;
my
$row_absolute
=
shift
;
my
$width
=
shift
;
my
$height
=
shift
;
my
$shape
=
shift
;
my
@attributes
= (
'bwMode'
=>
'auto'
);
$self
->xml_start_tag(
'xdr:spPr'
,
@attributes
);
$self
->_write_a_xfrm(
$col_absolute
,
$row_absolute
,
$width
,
$height
,
$shape
);
$self
->_write_a_prst_geom(
$shape
);
my
$fill
=
$shape
->{_fill};
if
(
length
$fill
> 1 ) {
$self
->_write_a_solid_fill(
$fill
);
}
else
{
$self
->xml_empty_tag(
'a:noFill'
);
}
$self
->_write_a_ln(
$shape
);
$self
->xml_end_tag(
'xdr:spPr'
);
}
sub
_write_a_xfrm {
my
$self
=
shift
;
my
$col_absolute
=
shift
;
my
$row_absolute
=
shift
;
my
$width
=
shift
;
my
$height
=
shift
;
my
$shape
=
shift
|| {};
my
@attributes
= ();
my
$rotation
=
$shape
->{_rotation} || 0;
$rotation
*= 60000;
push
(
@attributes
, (
'rot'
=>
$rotation
) )
if
$rotation
;
push
(
@attributes
, (
'flipH'
=> 1 ) )
if
$shape
->{_flip_h};
push
(
@attributes
, (
'flipV'
=> 1 ) )
if
$shape
->{_flip_v};
$self
->xml_start_tag(
'a:xfrm'
,
@attributes
);
$self
->_write_a_off(
$col_absolute
,
$row_absolute
);
$self
->_write_a_ext(
$width
,
$height
);
$self
->xml_end_tag(
'a:xfrm'
);
}
sub
_write_a_off {
my
$self
=
shift
;
my
$x
=
shift
;
my
$y
=
shift
;
my
@attributes
= (
'x'
=>
$x
,
'y'
=>
$y
,
);
$self
->xml_empty_tag(
'a:off'
,
@attributes
);
}
sub
_write_a_ext {
my
$self
=
shift
;
my
$cx
=
shift
;
my
$cy
=
shift
;
my
@attributes
= (
'cx'
=>
$cx
,
'cy'
=>
$cy
,
);
$self
->xml_empty_tag(
'a:ext'
,
@attributes
);
}
sub
_write_a_prst_geom {
my
$self
=
shift
;
my
$shape
=
shift
|| {};
my
@attributes
= ();
@attributes
= (
'prst'
=>
$shape
->{_type} )
if
$shape
->{_type};
$self
->xml_start_tag(
'a:prstGeom'
,
@attributes
);
$self
->_write_a_av_lst(
$shape
);
$self
->xml_end_tag(
'a:prstGeom'
);
}
sub
_write_a_av_lst {
my
$self
=
shift
;
my
$shape
=
shift
|| {};
my
$adjustments
= [];
if
(
defined
$shape
->{_adjustments} ) {
$adjustments
=
$shape
->{_adjustments};
}
if
(
@$adjustments
) {
$self
->xml_start_tag(
'a:avLst'
);
my
$i
= 0;
foreach
my
$adj
( @{
$adjustments
} ) {
$i
++;
my
$suffix
=
$shape
->{_connect} ?
$i
:
''
;
my
$adj_int
=
int
(
$adj
* 1000 );
my
@attributes
=
(
name
=>
'adj'
.
$suffix
,
fmla
=>
"val $adj_int"
);
$self
->xml_empty_tag(
'a:gd'
,
@attributes
);
}
$self
->xml_end_tag(
'a:avLst'
);
}
else
{
$self
->xml_empty_tag(
'a:avLst'
);
}
}
sub
_write_a_solid_fill {
my
$self
=
shift
;
my
$rgb
=
shift
;
$rgb
=
'000000'
unless
defined
$rgb
;
my
@attributes
= (
'val'
=>
$rgb
);
$self
->xml_start_tag(
'a:solidFill'
);
$self
->xml_empty_tag(
'a:srgbClr'
,
@attributes
);
$self
->xml_end_tag(
'a:solidFill'
);
}
sub
_write_a_ln {
my
$self
=
shift
;
my
$shape
=
shift
|| {};
my
$weight
=
$shape
->{_line_weight};
my
@attributes
= (
'w'
=>
$weight
* 9525 );
$self
->xml_start_tag(
'a:ln'
,
@attributes
);
my
$line
=
$shape
->{_line};
if
(
length
$line
> 1 ) {
$self
->_write_a_solid_fill(
$line
);
}
else
{
$self
->xml_empty_tag(
'a:noFill'
);
}
if
(
$shape
->{_line_type} ) {
@attributes
= (
'val'
=>
$shape
->{_line_type} );
$self
->xml_empty_tag(
'a:prstDash'
,
@attributes
);
}
if
(
$shape
->{_connect} ) {
$self
->xml_empty_tag(
'a:round'
);
}
else
{
@attributes
= (
'lim'
=> 800000 );
$self
->xml_empty_tag(
'a:miter'
,
@attributes
);
}
$self
->xml_empty_tag(
'a:headEnd'
);
$self
->xml_empty_tag(
'a:tailEnd'
);
$self
->xml_end_tag(
'a:ln'
);
}
sub
_write_txBody {
my
$self
=
shift
;
my
$col_absolute
=
shift
;
my
$row_absolute
=
shift
;
my
$width
=
shift
;
my
$height
=
shift
;
my
$shape
=
shift
;
my
@attributes
= (
vertOverflow
=>
"clip"
,
wrap
=>
"square"
,
lIns
=>
"27432"
,
tIns
=>
"22860"
,
rIns
=>
"27432"
,
bIns
=>
"22860"
,
anchor
=>
$shape
->{_valign},
upright
=>
"1"
,
);
$self
->xml_start_tag(
'xdr:txBody'
);
$self
->xml_empty_tag(
'a:bodyPr'
,
@attributes
);
$self
->xml_empty_tag(
'a:lstStyle'
);
$self
->xml_start_tag(
'a:p'
);
my
$rotation
=
$shape
->{_format}->{_rotation};
$rotation
= 0
unless
defined
$rotation
;
$rotation
*= 60000;
@attributes
= (
algn
=>
$shape
->{_align},
rtl
=>
$rotation
);
$self
->xml_start_tag(
'a:pPr'
,
@attributes
);
@attributes
= (
sz
=>
"1000"
);
$self
->xml_empty_tag(
'a:defRPr'
,
@attributes
);
$self
->xml_end_tag(
'a:pPr'
);
$self
->xml_start_tag(
'a:r'
);
my
$size
=
$shape
->{_format}->{_size};
$size
= 8
unless
defined
$size
;
$size
*= 100;
my
$bold
=
$shape
->{_format}->{_bold};
$bold
= 0
unless
defined
$bold
;
my
$italic
=
$shape
->{_format}->{_italic};
$italic
= 0
unless
defined
$italic
;
my
$underline
=
$shape
->{_format}->{_underline};
$underline
=
$underline
?
'sng'
:
'none'
;
my
$strike
=
$shape
->{_format}->{_font_strikeout};
$strike
=
$strike
?
'Strike'
:
'noStrike'
;
@attributes
= (
lang
=>
"en-US"
,
sz
=>
$size
,
b
=>
$bold
,
i
=>
$italic
,
u
=>
$underline
,
strike
=>
$strike
,
baseline
=> 0,
);
$self
->xml_start_tag(
'a:rPr'
,
@attributes
);
my
$color
=
$shape
->{_format}->{_color};
if
(
defined
$color
) {
$color
=
$shape
->_get_palette_color(
$color
);
$color
=~ s/^FF//;
}
else
{
$color
=
'000000'
;
}
$self
->_write_a_solid_fill(
$color
);
my
$font
=
$shape
->{_format}->{_font};
$font
=
'Calibri'
unless
defined
$font
;
@attributes
= (
typeface
=>
$font
);
$self
->xml_empty_tag(
'a:latin'
,
@attributes
);
$self
->xml_empty_tag(
'a:cs'
,
@attributes
);
$self
->xml_end_tag(
'a:rPr'
);
$self
->xml_data_element(
'a:t'
,
$shape
->{_text} );
$self
->xml_end_tag(
'a:r'
);
$self
->xml_end_tag(
'a:p'
);
$self
->xml_end_tag(
'xdr:txBody'
);
}
1;