diff options
author | Herbert Duerr <hdu@openoffice.org> | 2007-02-15 12:17:06 +0000 |
---|---|---|
committer | Herbert Duerr <hdu@openoffice.org> | 2007-02-15 12:17:06 +0000 |
commit | 1a2f9099ceb78b24960a6dc3c4e6c38eab0d0af8 (patch) | |
tree | 19f487ef48b146b87fe9c7e8e4dedf1c88f76f76 /drawinglayer | |
parent | 8bfe0eb3e2d732042faf656196620e25a9ee8123 (diff) |
#i73860# add outline font attribute
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx b/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx index 5698efe4b2c0..8f2a52425999 100644 --- a/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx +++ b/drawinglayer/inc/drawinglayer/primitive2d/textprimitive2d.hxx @@ -4,9 +4,9 @@ * * $RCSfile: textprimitive2d.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hdu $ $Date: 2007-02-02 15:13:57 $ + * last change: $Author: hdu $ $Date: 2007-02-15 13:17:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -74,6 +74,8 @@ namespace drawinglayer unsigned mbSymbol : 1; unsigned mbVertical : 1; unsigned mbItalic : 1; + unsigned mbOutline : 1; + // TODO: pair kerning and CJK kerning // compare operator bool operator==(const FontAttributes& rCompare) const @@ -83,6 +85,7 @@ namespace drawinglayer && mnWeight == rCompare.mnWeight && mbSymbol == rCompare.mbSymbol && mbVertical == rCompare.mbVertical + && mbOutline == rCompare.mbOutline && mbItalic == rCompare.mbItalic); } }; |