summaryrefslogtreecommitdiff
path: root/sw/inc/format.hxx
diff options
context:
space:
mode:
authorOliver Düsterhoff <od@openoffice.org>2002-08-28 10:37:25 +0000
committerOliver Düsterhoff <od@openoffice.org>2002-08-28 10:37:25 +0000
commit82f4b7a07a65e78baf6cf13ce288188a9910416e (patch)
tree0ddb05b15f05fda60a6ae173b40063779d29687c /sw/inc/format.hxx
parentea0a76c407c2b2154ab80ea5ff3cff11d874eca4 (diff)
#99657# - new methods for transparent background/shadow
Diffstat (limited to 'sw/inc/format.hxx')
-rw-r--r--sw/inc/format.hxx36
1 files changed, 31 insertions, 5 deletions
diff --git a/sw/inc/format.hxx b/sw/inc/format.hxx
index 80e43b55b6aa..3c4630d1cfd4 100644
--- a/sw/inc/format.hxx
+++ b/sw/inc/format.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: format.hxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: hr $ $Date: 2002-08-23 13:49:01 $
+ * last change: $Author: od $ $Date: 2002-08-28 11:37:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -322,9 +322,35 @@ public:
inline const SvxParaGridItem &GetParaGrid(BOOL = TRUE) const;
// TabellenBox-Attribute - impl. steht im cellatr.hxx
- INLINE const SwTblBoxNumFormat &GetTblBoxNumFmt( BOOL = TRUE ) const;
- INLINE const SwTblBoxFormula &GetTblBoxFormula( BOOL = TRUE ) const;
- INLINE const SwTblBoxValue &GetTblBoxValue( BOOL = TRUE ) const;
+ INLINE const SwTblBoxNumFormat &GetTblBoxNumFmt( BOOL = TRUE ) const;
+ INLINE const SwTblBoxFormula &GetTblBoxFormula( BOOL = TRUE ) const;
+ INLINE const SwTblBoxValue &GetTblBoxValue( BOOL = TRUE ) const;
+
+ /** SwFmt::IsBackgroundTransparent - for feature #99657#
+
+ OD 22.08.2002
+ Virtual method to determine, if background of format is transparent.
+ Default implementation returns false. Thus, subclasses have to overload
+ method, if the specific subclass can have a transparent background.
+
+ @author OD
+
+ @return false, default implementation
+ */
+ virtual const sal_Bool IsBackgroundTransparent() const;
+
+ /** SwFmt::IsShadowTransparent - for feature #99657#
+
+ OD 22.08.2002
+ Virtual method to determine, if shadow of format is transparent.
+ Default implementation returns false. Thus, subclasses have to overload
+ method, if the specific subclass can have a transparent shadow.
+
+ @author OD
+
+ @return false, default implementation
+ */
+ virtual const sal_Bool IsShadowTransparent() const;
};
// --------------- Inline Implementierungen ------------------------