summaryrefslogtreecommitdiff
path: root/psprint
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2003-08-25 12:58:32 +0000
committerKurt Zenker <kz@openoffice.org>2003-08-25 12:58:32 +0000
commita4ff33e80087dbcb3b00b5296ee1ca373b8f2784 (patch)
treeb0d494aa71a886c5fbb4da2153a12684318e4e01 /psprint
parent832003acc76ad5e00fe7a574b5fbac8bb4f6e5e1 (diff)
INTEGRATION: CWS vcl15 (1.11.2); FILE MERGED
2003/07/25 18:12:26 pl 1.11.2.1: #i17352# artificial italic and bold
Diffstat (limited to 'psprint')
-rw-r--r--psprint/inc/psprint/printergfx.hxx14
1 files changed, 11 insertions, 3 deletions
diff --git a/psprint/inc/psprint/printergfx.hxx b/psprint/inc/psprint/printergfx.hxx
index 8ac7244bf71d..65ae4642aa1a 100644
--- a/psprint/inc/psprint/printergfx.hxx
+++ b/psprint/inc/psprint/printergfx.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: printergfx.hxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: hr $ $Date: 2003-06-30 14:26:09 $
+ * last change: $Author: kz $ $Date: 2003-08-25 13:58:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -210,6 +210,8 @@ struct GraphicsStatus
{
rtl::OString maFont;
rtl_TextEncoding maEncoding;
+ bool mbArtItalic;
+ bool mbArtBold;
sal_Int32 mnTextHeight;
sal_Int32 mnTextWidth;
PrinterColor maColor;
@@ -428,7 +430,9 @@ public:
sal_Int32 nPointHeight,
sal_Int32 nPointWidth,
sal_Int32 nAngle,
- bool bVertical
+ bool bVertical,
+ bool bArtItalic,
+ bool bArtBold
);
sal_uInt16 SetFallbackFont ( sal_Int32 nFontID );
sal_Int32 GetFontAngle () const
@@ -441,6 +445,10 @@ public:
{ return maVirtualStatus.mnTextHeight; }
sal_Int32 GetFontWidth () const
{ return maVirtualStatus.mnTextWidth; }
+ bool GetArtificialItalic() const
+ { return maVirtualStatus.mbArtItalic; }
+ bool GetArtificialBold() const
+ { return maVirtualStatus.mbArtBold; }
void DrawText (const Point& rPoint,
const sal_Unicode* pStr, sal_Int16 nLen,
const sal_Int32* pDeltaArray = NULL);