summaryrefslogtreecommitdiff
path: root/vcl/unx/inc/pspgraphics.h
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-06-20 09:14:06 +0000
committerKurt Zenker <kz@openoffice.org>2007-06-20 09:14:06 +0000
commitb508e3c1fac962286ad641184a242ea0b6ba0fd8 (patch)
tree95e8fc02658fc5e78323322632252ad1b1e8cc4d /vcl/unx/inc/pspgraphics.h
parent945f9e545d3eeaa21bc52b12209d5d82f11503f9 (diff)
INTEGRATION: CWS compmetric (1.13.50); FILE MERGED
2007/05/09 15:56:25 pl 1.13.50.1: #146890# compat metrics
Diffstat (limited to 'vcl/unx/inc/pspgraphics.h')
-rw-r--r--vcl/unx/inc/pspgraphics.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/vcl/unx/inc/pspgraphics.h b/vcl/unx/inc/pspgraphics.h
index 4191b21d816c..398aa47d7518 100644
--- a/vcl/unx/inc/pspgraphics.h
+++ b/vcl/unx/inc/pspgraphics.h
@@ -4,9 +4,9 @@
*
* $RCSfile: pspgraphics.h,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: rt $ $Date: 2007-04-04 08:06:26 $
+ * last change: $Author: kz $ $Date: 2007-06-20 10:14:06 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -57,6 +57,7 @@ namespace psp { struct JobData; class PrinterGfx; }
class ServerFont;
class ImplDevFontAttributes;
+class SalInfoPrinter;
class VCL_DLLPUBLIC PspGraphics : public SalGraphics
{
@@ -69,14 +70,16 @@ class VCL_DLLPUBLIC PspGraphics : public SalGraphics
ServerFont* m_pServerFont[ MAX_FALLBACK ];
bool m_bFontVertical;
+ SalInfoPrinter* m_pInfoPrinter;
public:
- PspGraphics( psp::JobData* pJob, psp::PrinterGfx* pGfx, String* pPhone = NULL, bool bSwallow = false )
+ PspGraphics( psp::JobData* pJob, psp::PrinterGfx* pGfx, String* pPhone, bool bSwallow, SalInfoPrinter* pInfoPrinter )
: m_pJobData( pJob ),
m_pPrinterGfx( pGfx ),
m_pPhoneNr( pPhone ),
m_bSwallowFaxNo( bSwallow ),
m_bPhoneCollectionActive( false ),
- m_bFontVertical( false )
+ m_bFontVertical( false ),
+ m_pInfoPrinter( pInfoPrinter )
{ for( int i = 0; i < MAX_FALLBACK; i++ ) m_pServerFont[i] = 0; }
virtual ~PspGraphics();