summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-09-20 13:02:40 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-09-20 13:02:40 +0000
commit9a0f326544ae27c036357ea9d532bea053427a88 (patch)
treeee91dbb5f31f16f0186ec8faa492a6fa1730b51f /svtools/inc
parent5f5d24faadc46de949417ae29cef05cc5b7c9797 (diff)
INTEGRATION: CWS swmailmerge (1.5.202); FILE MERGED
2004/06/25 13:35:27 os 1.5.202.1: #i25107# access to TextView in MultiLine edit extended to support mail merge dialogs
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/txtattr.hxx17
1 files changed, 15 insertions, 2 deletions
diff --git a/svtools/inc/txtattr.hxx b/svtools/inc/txtattr.hxx
index c4ce5cce97c6..e0ccc9ccb609 100644
--- a/svtools/inc/txtattr.hxx
+++ b/svtools/inc/txtattr.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: txtattr.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2004-09-17 13:41:34 $
+ * last change: $Author: rt $ $Date: 2004-09-20 14:02:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -86,6 +86,7 @@ class Font;
#define TEXTATTR_FONTWEIGHT 3
#define TEXTATTR_USER_START 1000 //start id for user defined text attributes
+#define TEXTATTR_PROTECTED 4
class TextAttrib
@@ -175,6 +176,18 @@ public:
virtual int operator==( const TextAttrib& rAttr ) const;
};
+class TextAttribProtect : public TextAttrib
+{
+public:
+ TextAttribProtect();
+ TextAttribProtect( const TextAttribProtect& rAttr );
+ ~TextAttribProtect();
+
+ virtual void SetFont( Font& rFont ) const;
+ virtual TextAttrib* Clone() const;
+ virtual int operator==( const TextAttrib& rAttr ) const;
+
+};
class TextCharAttrib