summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xepage.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-22 18:56:05 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-22 18:56:05 +0000
commit8ed605ed8b78f198011e4ba480226658a78aba0e (patch)
tree68dae94532742605b20b4a82f07ae83e751fa193 /sc/source/filter/inc/xepage.hxx
parentd30c0fe05c1f6960df94fdae6dd7b1d171f15e21 (diff)
INTEGRATION: CWS chart2mst3 (1.4.26); FILE MERGED
2006/07/11 14:13:48 dr 1.4.26.1: #export of chart line and area formats
Diffstat (limited to 'sc/source/filter/inc/xepage.hxx')
-rw-r--r--sc/source/filter/inc/xepage.hxx23
1 files changed, 21 insertions, 2 deletions
diff --git a/sc/source/filter/inc/xepage.hxx b/sc/source/filter/inc/xepage.hxx
index 630d7d0f539c..fc659bfb58b2 100644
--- a/sc/source/filter/inc/xepage.hxx
+++ b/sc/source/filter/inc/xepage.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xepage.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 19:29:30 $
+ * last change: $Author: vg $ $Date: 2007-05-22 19:56:05 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -139,6 +139,25 @@ private:
XclPageData maData; /// Page settings data.
};
+// ----------------------------------------------------------------------------
+
+/** Contains all page (print) settings records for a chart object. */
+class XclExpChartPageSettings : public XclExpRecordBase, protected XclExpRoot
+{
+public:
+ /** Creates all records containing the current page settings. */
+ explicit XclExpChartPageSettings( const XclExpRoot& rRoot );
+
+ /** Returns read-only access to the page data. */
+ inline const XclPageData& GetPageData() const { return maData; }
+
+ /** Writes all page settings records to the stream. */
+ virtual void Save( XclExpStream& rStrm );
+
+private:
+ XclPageData maData; /// Page settings data.
+};
+
// ============================================================================
#endif