summaryrefslogtreecommitdiff
path: root/sw/inc/anchoredobject.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-22 07:16:03 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-22 07:16:03 +0000
commit2150614051402407a7ae0b5db14dd3c84b1e5dbe (patch)
tree14c6d213d8b380e5587eab8d56947dab39768657 /sw/inc/anchoredobject.hxx
parentf5197bc0fc8d976113de3a31cdc703d9d3db3fd3 (diff)
INTEGRATION: CWS swqbugfixes14 (1.10.4); FILE MERGED
2005/01/28 12:34:28 od 1.10.4.1: #i33818# <SwAnchoredObject::GetRelPosToPageFrm(..)> - adjustment to improvement WW8 export of anchored object positions.
Diffstat (limited to 'sw/inc/anchoredobject.hxx')
-rw-r--r--sw/inc/anchoredobject.hxx28
1 files changed, 25 insertions, 3 deletions
diff --git a/sw/inc/anchoredobject.hxx b/sw/inc/anchoredobject.hxx
index 4794fc4be8fb..1ed377456c2d 100644
--- a/sw/inc/anchoredobject.hxx
+++ b/sw/inc/anchoredobject.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: anchoredobject.hxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: kz $ $Date: 2005-01-21 10:26:23 $
+ * last change: $Author: vg $ $Date: 2005-02-22 08:16:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -533,6 +533,8 @@ class SwAnchoredObject
Usage: Needed layout information for WW8 export
@author OD
+
+ @return Point - determined relative position
*/
Point GetRelPosToAnchorFrm() const;
@@ -541,10 +543,26 @@ class SwAnchoredObject
OD 2005-01-06 #i30669#
Usage: Needed layout information for WW8 export
+ OD 2005-01-27 #i33818# - add parameters <_bFollowTextFlow> and
+ <_obRelToTableCell>
+ If <_bFollowTextFlow> is set and object is anchored inside table,
+ the position relative to the table cell is determined. Output
+ parameter <_obRelToTableCell> reflects this situation
@author OD
+
+ @param _bFollowTextFlow
+ input parameter - boolean indicating, if the anchored object has to
+ follow the text flow.
+
+ @param _obRelToTableCell
+ output parameter - boolean indicating, the determine position is
+ relative to the table cell
+
+ @return Point - determined relative position
*/
- Point GetRelPosToPageFrm() const;
+ Point GetRelPosToPageFrm( const bool _bFollowTextFlow,
+ bool& _obRelToTableCell ) const;
/** method to determine position of anchored object relative to
anchor character
@@ -553,6 +571,8 @@ class SwAnchoredObject
Usage: Needed layout information for WW8 export
@author OD
+
+ @return Point - determined relative position
*/
Point GetRelPosToChar() const;
@@ -563,6 +583,8 @@ class SwAnchoredObject
Usage: Needed layout information for WW8 export
@author OD
+
+ @return Point - determined relative position
*/
Point GetRelPosToLine() const;
};