summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-05-16 12:36:17 +0000
committerChristian Lippka <cl@openoffice.org>2001-05-16 12:36:17 +0000
commit4431ac7883d4c7d22ebb6c3c64f3ff9508e102b0 (patch)
tree74b054982ea2bd6be9c304c8c61d49aad2d013d7
parentab8782803e87ab4b00d0347bfa83c636ee2ac96b (diff)
#87028# added background and background objects visible styles
-rw-r--r--xmloff/dtd/drawing.mod5
-rw-r--r--xmloff/inc/xmlkywd.hxx6
-rw-r--r--xmloff/source/draw/sdpropls.cxx7
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx7
4 files changed, 15 insertions, 10 deletions
diff --git a/xmloff/dtd/drawing.mod b/xmloff/dtd/drawing.mod
index b319d0275c8a..583b93cd3d0c 100644
--- a/xmloff/dtd/drawing.mod
+++ b/xmloff/dtd/drawing.mod
@@ -1,5 +1,5 @@
<!--
- $Id: drawing.mod,v 1.48 2001-05-11 07:36:26 cl Exp $
+ $Id: drawing.mod,v 1.49 2001-05-16 13:31:25 cl Exp $
The Contents of this file are made available subject to the terms of
either of the following licenses
@@ -520,6 +520,9 @@
<!ATTLIST style:properties presentation:duration %timeDuration; #IMPLIED>
<!ATTLIST style:properties presentation:visibility (visible|hidden) #IMPLIED>
<!ATTLIST style:properties draw:background-size (full|border) #IMPLIED>
+<!ATTLIST style:properties presentation:background-objects-visible %boolean; #IMPLIED>
+<!ATTLIST style:properties presentation:background-visible %boolean; #IMPLIED>
+
<!-- text boxes -->
<!ELEMENT draw:text-box (office:events?,draw:image-map?,
diff --git a/xmloff/inc/xmlkywd.hxx b/xmloff/inc/xmlkywd.hxx
index ab7d0d441ec7..2edec250119b 100644
--- a/xmloff/inc/xmlkywd.hxx
+++ b/xmloff/inc/xmlkywd.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlkywd.hxx,v $
*
- * $Revision: 1.156 $
+ * $Revision: 1.157 $
*
- * last change: $Author: dvo $ $Date: 2001-05-15 12:37:45 $
+ * last change: $Author: cl $ $Date: 2001-05-16 13:32:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -272,8 +272,10 @@ XML_CONSTASCII_ACTION( sXML_background, "background" );
XML_CONSTASCII_ACTION( sXML_background_color, "background-color" );
XML_CONSTASCII_ACTION( sXML_background_image, "background-image" );
XML_CONSTASCII_ACTION( sXML_background_no_repeat, "no-repeat" );
+XML_CONSTASCII_ACTION( sXML_background_objects_visible, "background-objects-visible" );
XML_CONSTASCII_ACTION( sXML_background_repeat, "repeat" );
XML_CONSTASCII_ACTION( sXML_background_stretch, "stretch" );
+XML_CONSTASCII_ACTION( sXML_background_visible, "background-visible" );
XML_CONSTASCII_ACTION( sXML_bar, "bar" );
XML_CONSTASCII_ACTION( sXML_base64Binary, "base64Binary");
XML_CONSTASCII_ACTION( sXML_base_cell_address, "base-cell-address");
diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx
index e9ac027a9992..2e5f673e59c4 100644
--- a/xmloff/source/draw/sdpropls.cxx
+++ b/xmloff/source/draw/sdpropls.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sdpropls.cxx,v $
*
- * $Revision: 1.35 $
+ * $Revision: 1.36 $
*
- * last change: $Author: fs $ $Date: 2001-05-15 14:11:55 $
+ * last change: $Author: cl $ $Date: 2001-05-16 13:36:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -396,6 +396,9 @@ const XMLPropertyMapEntry aXMLSDPresPageProps[] =
{ "Sound", XML_NAMESPACE_PRESENTATION, "sound", XML_TYPE_STRING|MID_FLAG_ELEMENT_ITEM, CTF_PAGE_SOUND_URL },
{ "BackgroundFullSize", XML_NAMESPACE_DRAW, "background-size", XML_SD_TYPE_PRESPAGE_BACKSIZE, CTF_PAGE_BACKSIZE },
+ { "IsBackgroundVisible", XML_NAMESPACE_PRESENTATION, sXML_background_visible, XML_TYPE_BOOL, 0 },
+ { "IsBackgroundObjectsVisible", XML_NAMESPACE_PRESENTATION, sXML_background_objects_visible, XML_TYPE_BOOL, 0 },
+
{ "FillStyle", XML_NAMESPACE_DRAW, sXML_fill, XML_SD_TYPE_FILLSTYLE, 0 },
{ "FillColor", XML_NAMESPACE_DRAW, sXML_fill_color, XML_TYPE_COLOR, 0 },
{ "FillGradientName", XML_NAMESPACE_DRAW, sXML_fill_gradient_name, XML_TYPE_STRING, 0 },
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index 2e83e8a019d6..4e177a7eca50 100644
--- a/xmloff/source/draw/sdxmlexp.cxx
+++ b/xmloff/source/draw/sdxmlexp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sdxmlexp.cxx,v $
*
- * $Revision: 1.63 $
+ * $Revision: 1.64 $
*
- * last change: $Author: aw $ $Date: 2001-05-14 14:41:59 $
+ * last change: $Author: cl $ $Date: 2001-05-16 13:34:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -2125,9 +2125,6 @@ void SdXMLExport::_ExportAutoStyles()
// ...for text
GetTextParagraphExport()->exportTextAutoStyles();
-
- // ...for chart
- GetChartExport()->exportAutoStyles();
}
//////////////////////////////////////////////////////////////////////////////