2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:54:12 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:54:12 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:54:12 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:54:12 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:54:12 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:54:12 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 11:09:37 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_vcl.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#define ENABLE_BYTESTRING_STREAM_OPERATORS
|
2001-11-05 12:42:43 +00:00
|
|
|
#include <list>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
#include <tools/debug.hxx>
|
2011-01-19 16:33:54 +01:00
|
|
|
#include <tools/resary.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <tools/stream.hxx>
|
|
|
|
#include <tools/vcompat.hxx>
|
2011-01-24 16:34:14 +01:00
|
|
|
|
|
|
|
#include <vcl/unohelp.hxx>
|
2007-06-27 19:22:20 +00:00
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <vcl/wrkwin.hxx>
|
|
|
|
#include <vcl/virdev.hxx>
|
|
|
|
#include <vcl/window.hxx>
|
|
|
|
#include <vcl/gdimtf.hxx>
|
|
|
|
#include <vcl/metaact.hxx>
|
|
|
|
#include <vcl/print.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2011-01-24 16:34:14 +01:00
|
|
|
#include <salinst.hxx>
|
|
|
|
#include <salgdi.hxx>
|
|
|
|
#include <salptype.hxx>
|
|
|
|
#include <salprn.hxx>
|
|
|
|
#include <svdata.hxx>
|
2011-03-24 10:44:59 +01:00
|
|
|
#include <svids.hrc>
|
2011-01-24 16:34:14 +01:00
|
|
|
#include <jobset.h>
|
|
|
|
#include <outdev.h>
|
|
|
|
#include <print.h>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2001-10-25 08:23:25 +00:00
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
|
2010-11-03 17:10:14 +01:00
|
|
|
#include "com/sun/star/beans/XPropertySet.hpp"
|
|
|
|
#include "com/sun/star/container/XNameAccess.hpp"
|
|
|
|
#include "com/sun/star/lang/XMultiServiceFactory.hpp"
|
|
|
|
|
2001-10-25 08:23:25 +00:00
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
2010-11-03 17:10:14 +01:00
|
|
|
using namespace com::sun::star::beans;
|
|
|
|
using namespace com::sun::star::container;
|
2001-10-25 08:23:25 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
int nImplSysDialog = 0;
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
2009-06-12 09:36:34 +00:00
|
|
|
namespace
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
static Paper ImplGetPaperFormat( long nWidth100thMM, long nHeight100thMM )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
PaperInfo aInfo(nWidth100thMM, nHeight100thMM);
|
|
|
|
aInfo.doSloppyFit();
|
|
|
|
return aInfo.getPaper();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2009-06-12 09:36:34 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
static const PaperInfo& ImplGetEmptyPaper()
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
static PaperInfo aInfo(PAPER_USER);
|
|
|
|
return aInfo;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
void ImplUpdateJobSetupPaper( JobSetup& rJobSetup )
|
|
|
|
{
|
|
|
|
const ImplJobSetup* pConstData = rJobSetup.ImplGetConstData();
|
|
|
|
|
|
|
|
if ( !pConstData->mnPaperWidth || !pConstData->mnPaperHeight )
|
|
|
|
{
|
|
|
|
if ( pConstData->mePaperFormat != PAPER_USER )
|
|
|
|
{
|
|
|
|
ImplJobSetup* pData = rJobSetup.ImplGetData();
|
2009-06-12 09:36:34 +00:00
|
|
|
PaperInfo aInfo(pConstData->mePaperFormat);
|
|
|
|
pData->mnPaperWidth = aInfo.getWidth();
|
|
|
|
pData->mnPaperHeight = aInfo.getHeight();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( pConstData->mePaperFormat == PAPER_USER )
|
|
|
|
{
|
|
|
|
Paper ePaper = ImplGetPaperFormat( pConstData->mnPaperWidth, pConstData->mnPaperHeight );
|
|
|
|
if ( ePaper != PAPER_USER )
|
|
|
|
rJobSetup.ImplGetData()->mePaperFormat = ePaper;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-26 18:41:50 +00:00
|
|
|
// ------------------
|
|
|
|
// - PrinterOptions -
|
|
|
|
// ------------------
|
|
|
|
|
|
|
|
PrinterOptions::PrinterOptions() :
|
2010-09-29 15:46:40 +08:00
|
|
|
mbReduceTransparency( sal_False ),
|
2001-04-26 18:41:50 +00:00
|
|
|
meReducedTransparencyMode( PRINTER_TRANSPARENCY_AUTO ),
|
2010-09-29 15:46:40 +08:00
|
|
|
mbReduceGradients( sal_False ),
|
2001-04-26 18:41:50 +00:00
|
|
|
meReducedGradientsMode( PRINTER_GRADIENT_STRIPES ),
|
|
|
|
mnReducedGradientStepCount( 64 ),
|
2010-09-29 15:46:40 +08:00
|
|
|
mbReduceBitmaps( sal_False ),
|
2001-05-07 09:35:52 +00:00
|
|
|
meReducedBitmapMode( PRINTER_BITMAP_NORMAL ),
|
2001-04-26 18:41:50 +00:00
|
|
|
mnReducedBitmapResolution( 200 ),
|
2010-09-29 15:46:40 +08:00
|
|
|
mbReducedBitmapsIncludeTransparency( sal_True ),
|
|
|
|
mbConvertToGreyscales( sal_False )
|
2001-04-26 18:41:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
PrinterOptions::~PrinterOptions()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-03 17:10:14 +01:00
|
|
|
#define PROPERTYNAME_REDUCETRANSPARENCY rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReduceTransparency"))
|
|
|
|
#define PROPERTYNAME_REDUCEDTRANSPARENCYMODE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedTransparencyMode"))
|
|
|
|
#define PROPERTYNAME_REDUCEGRADIENTS rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReduceGradients"))
|
|
|
|
#define PROPERTYNAME_REDUCEDGRADIENTMODE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedGradientMode"))
|
|
|
|
#define PROPERTYNAME_REDUCEDGRADIENTSTEPCOUNT rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedGradientStepCount"))
|
|
|
|
#define PROPERTYNAME_REDUCEBITMAPS rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReduceBitmaps"))
|
|
|
|
#define PROPERTYNAME_REDUCEDBITMAPMODE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedBitmapMode"))
|
|
|
|
#define PROPERTYNAME_REDUCEDBITMAPRESOLUTION rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedBitmapResolution"))
|
|
|
|
#define PROPERTYNAME_REDUCEDBITMAPINCLUDESTRANSPARENCY rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedBitmapIncludesTransparency"))
|
|
|
|
#define PROPERTYNAME_CONVERTTOGREYSCALES rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ConvertToGreyscales"))
|
|
|
|
|
|
|
|
bool PrinterOptions::ReadFromConfig( bool i_bFile )
|
|
|
|
{
|
|
|
|
bool bSuccess = false;
|
|
|
|
// save old state in case something goes wrong
|
|
|
|
PrinterOptions aOldValues( *this );
|
|
|
|
|
|
|
|
// get the configuration service
|
|
|
|
Reference< XMultiServiceFactory > xConfigProvider;
|
|
|
|
Reference< XNameAccess > xConfigAccess;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// get service provider
|
|
|
|
Reference< XMultiServiceFactory > xSMgr( comphelper::getProcessServiceFactory() );
|
|
|
|
// create configuration hierachical access name
|
|
|
|
if( xSMgr.is() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
xConfigProvider = Reference< XMultiServiceFactory >(
|
|
|
|
xSMgr->createInstance( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(
|
|
|
|
"com.sun.star.configuration.ConfigurationProvider" ))),
|
|
|
|
UNO_QUERY );
|
|
|
|
if( xConfigProvider.is() )
|
|
|
|
{
|
|
|
|
Sequence< Any > aArgs(1);
|
|
|
|
PropertyValue aVal;
|
|
|
|
aVal.Name = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "nodepath" ) );
|
|
|
|
if( i_bFile )
|
|
|
|
aVal.Value <<= rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/org.openoffice.Office.Common/Print/Option/File" ) );
|
|
|
|
else
|
|
|
|
aVal.Value <<= rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/org.openoffice.Office.Common/Print/Option/Printer" ) );
|
|
|
|
aArgs.getArray()[0] <<= aVal;
|
|
|
|
xConfigAccess = Reference< XNameAccess >(
|
|
|
|
xConfigProvider->createInstanceWithArguments(
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.configuration.ConfigurationAccess" )), aArgs ),
|
|
|
|
UNO_QUERY );
|
|
|
|
if( xConfigAccess.is() )
|
|
|
|
{
|
|
|
|
Reference< XPropertySet > xSet( xConfigAccess, UNO_QUERY );
|
|
|
|
if( xSet.is() )
|
|
|
|
{
|
|
|
|
sal_Int32 nValue = 0;
|
|
|
|
sal_Bool bValue = 0;
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCETRANSPARENCY) >>= bValue )
|
|
|
|
SetReduceTransparency( bValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDTRANSPARENCYMODE) >>= nValue )
|
|
|
|
SetReducedTransparencyMode( (PrinterTransparencyMode)nValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEGRADIENTS) >>= bValue )
|
|
|
|
SetReduceGradients( bValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDGRADIENTMODE) >>= nValue )
|
|
|
|
SetReducedGradientMode( (PrinterGradientMode)nValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDGRADIENTSTEPCOUNT) >>= nValue )
|
2011-01-24 14:07:08 +01:00
|
|
|
SetReducedGradientStepCount( (sal_uInt16)nValue );
|
2010-11-03 17:10:14 +01:00
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEBITMAPS) >>= bValue )
|
|
|
|
SetReduceBitmaps( bValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDBITMAPMODE) >>= nValue )
|
|
|
|
SetReducedBitmapMode( (PrinterBitmapMode)nValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDBITMAPRESOLUTION) >>= nValue )
|
2011-01-24 14:07:08 +01:00
|
|
|
SetReducedBitmapResolution( (sal_uInt16)nValue );
|
2010-11-03 17:10:14 +01:00
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_REDUCEDBITMAPINCLUDESTRANSPARENCY) >>= bValue )
|
|
|
|
SetReducedBitmapIncludesTransparency( bValue );
|
|
|
|
if( xSet->getPropertyValue(PROPERTYNAME_CONVERTTOGREYSCALES) >>= bValue )
|
|
|
|
SetConvertToGreyscales( bValue );
|
|
|
|
|
|
|
|
bSuccess = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( WrappedTargetException& )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ! bSuccess )
|
|
|
|
*this = aOldValues;
|
|
|
|
return bSuccess;
|
|
|
|
}
|
|
|
|
|
2010-11-04 18:48:18 +01:00
|
|
|
void Printer::SetPrinterOptions( const PrinterOptions& i_rOptions )
|
|
|
|
{
|
|
|
|
*mpPrinterOptions = i_rOptions;
|
|
|
|
}
|
|
|
|
|
2001-04-26 18:41:50 +00:00
|
|
|
// -------------
|
|
|
|
// - QueueInfo -
|
|
|
|
// -------------
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
QueueInfo::QueueInfo()
|
|
|
|
{
|
|
|
|
mnStatus = 0;
|
|
|
|
mnJobs = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
QueueInfo::QueueInfo( const QueueInfo& rInfo ) :
|
|
|
|
maPrinterName( rInfo.maPrinterName ),
|
|
|
|
maDriver( rInfo.maDriver ),
|
|
|
|
maLocation( rInfo.maLocation ),
|
|
|
|
maComment( rInfo.maComment ),
|
|
|
|
mnStatus( rInfo.mnStatus ),
|
|
|
|
mnJobs( rInfo.mnJobs )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
QueueInfo::~QueueInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
bool QueueInfo::operator==( const QueueInfo& rInfo ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2006-12-20 17:32:13 +00:00
|
|
|
return
|
|
|
|
maPrinterName == rInfo.maPrinterName &&
|
|
|
|
maDriver == rInfo.maDriver &&
|
|
|
|
maLocation == rInfo.maLocation &&
|
|
|
|
maComment == rInfo.maComment &&
|
|
|
|
mnStatus == rInfo.mnStatus &&
|
|
|
|
mnJobs == rInfo.mnJobs;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SvStream& operator<<( SvStream& rOStream, const QueueInfo& rInfo )
|
|
|
|
{
|
|
|
|
VersionCompat aCompat( rOStream, STREAM_WRITE, 1 );
|
|
|
|
|
|
|
|
rOStream.WriteByteString( rInfo.maPrinterName, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rOStream.WriteByteString( rInfo.maDriver, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rOStream.WriteByteString( rInfo.maLocation, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rOStream.WriteByteString( rInfo.maComment, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rOStream << rInfo.mnStatus;
|
|
|
|
rOStream << rInfo.mnJobs;
|
|
|
|
|
|
|
|
return rOStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SvStream& operator>>( SvStream& rIStream, QueueInfo& rInfo )
|
|
|
|
{
|
|
|
|
VersionCompat aCompat( rIStream, STREAM_READ );
|
|
|
|
|
|
|
|
rIStream.ReadByteString( rInfo.maPrinterName, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rIStream.ReadByteString( rInfo.maDriver, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rIStream.ReadByteString( rInfo.maLocation, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rIStream.ReadByteString( rInfo.maComment, RTL_TEXTENCODING_UTF8 );
|
|
|
|
rIStream >> rInfo.mnStatus;
|
|
|
|
rIStream >> rInfo.mnJobs;
|
|
|
|
|
|
|
|
return rIStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
SalPrinterQueueInfo::SalPrinterQueueInfo()
|
|
|
|
{
|
|
|
|
mnStatus = 0;
|
|
|
|
mnJobs = QUEUE_JOBS_DONTKNOW;
|
|
|
|
mpSysData = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SalPrinterQueueInfo::~SalPrinterQueueInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
ImplPrnQueueList::~ImplPrnQueueList()
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
for( unsigned int i = 0; i < m_aQueueInfos.size(); i++ )
|
|
|
|
{
|
|
|
|
delete m_aQueueInfos[i].mpQueueInfo;
|
|
|
|
pSVData->mpDefInst->DeletePrinterQueueInfo( m_aQueueInfos[i].mpSalQueueInfo );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
void ImplPrnQueueList::Add( SalPrinterQueueInfo* pData )
|
|
|
|
{
|
2011-02-03 16:55:17 -07:00
|
|
|
boost::unordered_map< rtl::OUString, sal_Int32, rtl::OUStringHash >::iterator it =
|
2006-12-20 17:32:13 +00:00
|
|
|
m_aNameToIndex.find( pData->maPrinterName );
|
|
|
|
if( it == m_aNameToIndex.end() )
|
|
|
|
{
|
|
|
|
m_aNameToIndex[ pData->maPrinterName ] = m_aQueueInfos.size();
|
|
|
|
m_aQueueInfos.push_back( ImplPrnQueueData() );
|
|
|
|
m_aQueueInfos.back().mpQueueInfo = NULL;
|
|
|
|
m_aQueueInfos.back().mpSalQueueInfo = pData;
|
|
|
|
m_aPrinterList.push_back( pData->maPrinterName );
|
|
|
|
}
|
|
|
|
else // this should not happen, but ...
|
|
|
|
{
|
|
|
|
ImplPrnQueueData& rData = m_aQueueInfos[ it->second ];
|
|
|
|
delete rData.mpQueueInfo;
|
|
|
|
rData.mpQueueInfo = NULL;
|
|
|
|
ImplGetSVData()->mpDefInst->DeletePrinterQueueInfo( rData.mpSalQueueInfo );
|
|
|
|
rData.mpSalQueueInfo = pData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
ImplPrnQueueData* ImplPrnQueueList::Get( const rtl::OUString& rPrinter )
|
|
|
|
{
|
|
|
|
ImplPrnQueueData* pData = NULL;
|
2011-02-03 16:55:17 -07:00
|
|
|
boost::unordered_map<rtl::OUString,sal_Int32,rtl::OUStringHash>::iterator it =
|
2006-12-20 17:32:13 +00:00
|
|
|
m_aNameToIndex.find( rPrinter );
|
|
|
|
if( it != m_aNameToIndex.end() )
|
|
|
|
pData = &m_aQueueInfos[it->second];
|
|
|
|
return pData;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
static void ImplInitPrnQueueList()
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
|
|
|
|
pSVData->maGDIData.mpPrinterQueueList = new ImplPrnQueueList;
|
|
|
|
|
2009-11-18 17:23:09 +01:00
|
|
|
static const char* pEnv = getenv( "SAL_DISABLE_PRINTERLIST" );
|
|
|
|
if( !pEnv || !*pEnv )
|
|
|
|
pSVData->mpDefInst->GetPrinterQueueInfo( pSVData->maGDIData.mpPrinterQueueList );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ImplDeletePrnQueueList()
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
ImplPrnQueueList* pPrnList = pSVData->maGDIData.mpPrinterQueueList;
|
|
|
|
|
|
|
|
if ( pPrnList )
|
|
|
|
{
|
|
|
|
delete pPrnList;
|
|
|
|
pSVData->maGDIData.mpPrinterQueueList = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
const std::vector<rtl::OUString>& Printer::GetPrinterQueues()
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2006-12-20 17:32:13 +00:00
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( !pSVData->maGDIData.mpPrinterQueueList )
|
|
|
|
ImplInitPrnQueueList();
|
2006-12-20 17:32:13 +00:00
|
|
|
return pSVData->maGDIData.mpPrinterQueueList->m_aPrinterList;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
2006-12-20 17:32:13 +00:00
|
|
|
const QueueInfo* Printer::GetQueueInfo( const String& rPrinterName, bool bStatusUpdate )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
|
|
|
|
if ( !pSVData->maGDIData.mpPrinterQueueList )
|
|
|
|
ImplInitPrnQueueList();
|
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
ImplPrnQueueData* pInfo = pSVData->maGDIData.mpPrinterQueueList->Get( rPrinterName );
|
|
|
|
if( pInfo )
|
|
|
|
{
|
|
|
|
if( !pInfo->mpQueueInfo || bStatusUpdate )
|
|
|
|
pSVData->mpDefInst->GetPrinterQueueState( pInfo->mpSalQueueInfo );
|
|
|
|
|
|
|
|
if ( !pInfo->mpQueueInfo )
|
|
|
|
pInfo->mpQueueInfo = new QueueInfo;
|
|
|
|
|
|
|
|
pInfo->mpQueueInfo->maPrinterName = pInfo->mpSalQueueInfo->maPrinterName;
|
|
|
|
pInfo->mpQueueInfo->maDriver = pInfo->mpSalQueueInfo->maDriver;
|
|
|
|
pInfo->mpQueueInfo->maLocation = pInfo->mpSalQueueInfo->maLocation;
|
|
|
|
pInfo->mpQueueInfo->maComment = pInfo->mpSalQueueInfo->maComment;
|
|
|
|
pInfo->mpQueueInfo->mnStatus = pInfo->mpSalQueueInfo->mnStatus;
|
|
|
|
pInfo->mpQueueInfo->mnJobs = pInfo->mpSalQueueInfo->mnJobs;
|
|
|
|
return pInfo->mpQueueInfo;
|
|
|
|
}
|
|
|
|
return NULL;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
XubString Printer::GetDefaultPrinterName()
|
|
|
|
{
|
2009-11-18 17:23:09 +01:00
|
|
|
static const char* pEnv = getenv( "SAL_DISABLE_DEFAULTPRINTER" );
|
|
|
|
if( !pEnv || !*pEnv )
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-11-18 17:23:09 +01:00
|
|
|
return pSVData->mpDefInst->GetDefaultPrinter();
|
|
|
|
}
|
|
|
|
return XubString();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// =======================================================================
|
|
|
|
|
|
|
|
void Printer::ImplInitData()
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbDevOutput = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
meOutDevType = OUTDEV_PRINTER;
|
2010-09-29 15:46:40 +08:00
|
|
|
mbDefPrinter = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
mnError = 0;
|
|
|
|
mnCurPage = 0;
|
|
|
|
mnCurPrintPage = 0;
|
|
|
|
mnPageQueueSize = 0;
|
|
|
|
mnCopyCount = 1;
|
2010-09-29 15:46:40 +08:00
|
|
|
mbCollateCopy = sal_False;
|
|
|
|
mbPrinting = sal_False;
|
|
|
|
mbJobActive = sal_False;
|
|
|
|
mbPrintFile = sal_False;
|
|
|
|
mbInPrintPage = sal_False;
|
|
|
|
mbNewJobSetup = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
mpInfoPrinter = NULL;
|
|
|
|
mpPrinter = NULL;
|
|
|
|
mpDisplayDev = NULL;
|
2010-09-29 15:46:40 +08:00
|
|
|
mbIsQueuePrinter = sal_False;
|
2001-04-26 18:41:50 +00:00
|
|
|
mpPrinterOptions = new PrinterOptions;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Printer in die Liste eintragen
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
mpNext = pSVData->maGDIData.mpFirstPrinter;
|
|
|
|
mpPrev = NULL;
|
|
|
|
if ( mpNext )
|
|
|
|
mpNext->mpPrev = this;
|
|
|
|
else
|
|
|
|
pSVData->maGDIData.mpLastPrinter = this;
|
|
|
|
pSVData->maGDIData.mpFirstPrinter = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Printer::ImplInit( SalPrinterQueueInfo* pInfo )
|
|
|
|
{
|
2007-02-12 13:51:31 +00:00
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
// #i74084# update info for this specific SalPrinterQueueInfo
|
|
|
|
pSVData->mpDefInst->GetPrinterQueueState( pInfo );
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// Testen, ob Treiber ueberhaupt mit dem JobSetup uebereinstimmt
|
|
|
|
ImplJobSetup* pJobSetup = maJobSetup.ImplGetData();
|
|
|
|
|
|
|
|
if ( pJobSetup->mpDriverData )
|
|
|
|
{
|
|
|
|
if ( (pJobSetup->maPrinterName != pInfo->maPrinterName) ||
|
|
|
|
(pJobSetup->maDriver != pInfo->maDriver) )
|
|
|
|
{
|
2002-06-19 10:21:25 +00:00
|
|
|
rtl_freeMemory( pJobSetup->mpDriverData );
|
2000-09-18 16:07:07 +00:00
|
|
|
pJobSetup->mpDriverData = NULL;
|
|
|
|
pJobSetup->mnDriverDataLen = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Printernamen merken
|
|
|
|
maPrinterName = pInfo->maPrinterName;
|
|
|
|
maDriver = pInfo->maDriver;
|
|
|
|
|
|
|
|
// In JobSetup den Printernamen eintragen
|
|
|
|
pJobSetup->maPrinterName = maPrinterName;
|
|
|
|
pJobSetup->maDriver = maDriver;
|
|
|
|
|
|
|
|
mpInfoPrinter = pSVData->mpDefInst->CreateInfoPrinter( pInfo, pJobSetup );
|
|
|
|
mpPrinter = NULL;
|
|
|
|
mpJobGraphics = NULL;
|
|
|
|
ImplUpdateJobSetupPaper( maJobSetup );
|
|
|
|
|
|
|
|
if ( !mpInfoPrinter )
|
|
|
|
{
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we need a graphics
|
|
|
|
if ( !ImplGetGraphics() )
|
|
|
|
{
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Daten initialisieren
|
|
|
|
ImplUpdatePageData();
|
2003-11-18 13:34:27 +00:00
|
|
|
mpFontList = new ImplDevFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
mpFontCache = new ImplFontCache( sal_True );
|
2000-09-18 16:07:07 +00:00
|
|
|
mpGraphics->GetDevFontList( mpFontList );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Printer::ImplInitDisplay( const Window* pWindow )
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
|
|
|
|
mpInfoPrinter = NULL;
|
|
|
|
mpPrinter = NULL;
|
|
|
|
mpJobGraphics = NULL;
|
|
|
|
|
|
|
|
if ( pWindow )
|
|
|
|
mpDisplayDev = new VirtualDevice( *pWindow );
|
|
|
|
else
|
|
|
|
mpDisplayDev = new VirtualDevice();
|
|
|
|
mpFontList = pSVData->maGDIData.mpScreenFontList;
|
|
|
|
mpFontCache = pSVData->maGDIData.mpScreenFontCache;
|
|
|
|
mnDPIX = mpDisplayDev->mnDPIX;
|
|
|
|
mnDPIY = mpDisplayDev->mnDPIY;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
SalPrinterQueueInfo* Printer::ImplGetQueueInfo( const XubString& rPrinterName,
|
|
|
|
const XubString* pDriver )
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
if ( !pSVData->maGDIData.mpPrinterQueueList )
|
|
|
|
ImplInitPrnQueueList();
|
|
|
|
|
|
|
|
ImplPrnQueueList* pPrnList = pSVData->maGDIData.mpPrinterQueueList;
|
2006-12-20 17:32:13 +00:00
|
|
|
if ( pPrnList && pPrnList->m_aQueueInfos.size() )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2006-12-20 17:32:13 +00:00
|
|
|
// first search for the printer name driectly
|
|
|
|
ImplPrnQueueData* pInfo = pPrnList->Get( rPrinterName );
|
|
|
|
if( pInfo )
|
|
|
|
return pInfo->mpSalQueueInfo;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
// then search case insensitive
|
|
|
|
for( unsigned int i = 0; i < pPrnList->m_aQueueInfos.size(); i++ )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2006-12-20 17:32:13 +00:00
|
|
|
if( pPrnList->m_aQueueInfos[i].mpSalQueueInfo->maPrinterName.EqualsIgnoreCaseAscii( rPrinterName ) )
|
|
|
|
return pPrnList->m_aQueueInfos[i].mpSalQueueInfo;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
// then search for driver name
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( pDriver )
|
|
|
|
{
|
2006-12-20 17:32:13 +00:00
|
|
|
for( unsigned int i = 0; i < pPrnList->m_aQueueInfos.size(); i++ )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2006-12-20 17:32:13 +00:00
|
|
|
if( pPrnList->m_aQueueInfos[i].mpSalQueueInfo->maDriver == *pDriver )
|
|
|
|
return pPrnList->m_aQueueInfos[i].mpSalQueueInfo;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-20 17:32:13 +00:00
|
|
|
// then the default printer
|
|
|
|
pInfo = pPrnList->Get( GetDefaultPrinterName() );
|
|
|
|
if( pInfo )
|
2000-09-18 16:07:07 +00:00
|
|
|
return pInfo->mpSalQueueInfo;
|
2006-12-20 17:32:13 +00:00
|
|
|
|
|
|
|
// last chance: the first available printer
|
|
|
|
return pPrnList->m_aQueueInfos[0].mpSalQueueInfo;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Printer::ImplUpdatePageData()
|
|
|
|
{
|
|
|
|
// we need a graphics
|
|
|
|
if ( !ImplGetGraphics() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
mpGraphics->GetResolution( mnDPIX, mnDPIY );
|
|
|
|
mpInfoPrinter->GetPageInfo( maJobSetup.ImplGetConstData(),
|
|
|
|
mnOutWidth, mnOutHeight,
|
|
|
|
maPageOffset.X(), maPageOffset.Y(),
|
|
|
|
maPaperSize.Width(), maPaperSize.Height() );
|
2009-08-17 17:34:09 +00:00
|
|
|
static const char* pDebugOffset = getenv( "SAL_DBG_PAGEOFFSET" );
|
|
|
|
if( pDebugOffset )
|
|
|
|
{
|
|
|
|
rtl::OString aLine( pDebugOffset );
|
|
|
|
sal_Int32 nIndex = 0;
|
|
|
|
rtl::OString aToken( aLine.getToken( 0, ',', nIndex ) );
|
|
|
|
sal_Int32 nLeft = aToken.toInt32();
|
|
|
|
sal_Int32 nTop = nLeft;
|
|
|
|
if( nIndex > 0 )
|
|
|
|
{
|
2009-08-19 08:31:45 +00:00
|
|
|
aToken = aLine.getToken( 0, ',', nIndex );
|
2009-08-17 17:34:09 +00:00
|
|
|
nTop = aToken.toInt32();
|
|
|
|
}
|
|
|
|
maPageOffset = LogicToPixel( Point( static_cast<long>(nLeft),
|
|
|
|
static_cast<long>(nTop) ),
|
|
|
|
MapMode( MAP_100TH_MM )
|
|
|
|
);
|
|
|
|
mnOutWidth = maPaperSize.Width() - 2*maPageOffset.X();
|
|
|
|
mnOutWidth = maPaperSize.Width() - 2*maPageOffset.Y();
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Printer::ImplUpdateFontList()
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
ImplUpdateFontData( sal_True );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Printer::Printer()
|
|
|
|
{
|
|
|
|
ImplInitData();
|
|
|
|
SalPrinterQueueInfo* pInfo = ImplGetQueueInfo( GetDefaultPrinterName(), NULL );
|
|
|
|
if ( pInfo )
|
|
|
|
{
|
|
|
|
ImplInit( pInfo );
|
|
|
|
if ( !IsDisplayPrinter() )
|
2010-09-29 15:46:40 +08:00
|
|
|
mbDefPrinter = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Printer::Printer( const JobSetup& rJobSetup ) :
|
|
|
|
maJobSetup( rJobSetup )
|
|
|
|
{
|
|
|
|
ImplInitData();
|
|
|
|
SalPrinterQueueInfo* pInfo = ImplGetQueueInfo( rJobSetup.mpData->maPrinterName,
|
|
|
|
&rJobSetup.mpData->maDriver );
|
|
|
|
if ( pInfo )
|
|
|
|
{
|
|
|
|
ImplInit( pInfo );
|
|
|
|
SetJobSetup( rJobSetup );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
maJobSetup = JobSetup();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Printer::Printer( const QueueInfo& rQueueInfo )
|
|
|
|
{
|
|
|
|
ImplInitData();
|
|
|
|
SalPrinterQueueInfo* pInfo = ImplGetQueueInfo( rQueueInfo.GetPrinterName(),
|
|
|
|
&rQueueInfo.GetDriver() );
|
|
|
|
if ( pInfo )
|
|
|
|
ImplInit( pInfo );
|
|
|
|
else
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Printer::Printer( const XubString& rPrinterName )
|
|
|
|
{
|
|
|
|
ImplInitData();
|
|
|
|
SalPrinterQueueInfo* pInfo = ImplGetQueueInfo( rPrinterName, NULL );
|
|
|
|
if ( pInfo )
|
|
|
|
ImplInit( pInfo );
|
|
|
|
else
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Printer::~Printer()
|
|
|
|
{
|
|
|
|
DBG_ASSERT( !IsPrinting(), "Printer::~Printer() - Job is printing" );
|
|
|
|
DBG_ASSERT( !IsJobActive(), "Printer::~Printer() - Job is active" );
|
2007-12-12 14:04:37 +00:00
|
|
|
|
2001-04-26 18:41:50 +00:00
|
|
|
delete mpPrinterOptions;
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
ImplReleaseGraphics();
|
|
|
|
if ( mpInfoPrinter )
|
|
|
|
ImplGetSVData()->mpDefInst->DestroyInfoPrinter( mpInfoPrinter );
|
|
|
|
if ( mpDisplayDev )
|
|
|
|
delete mpDisplayDev;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// OutputDevice-Dtor versucht das gleiche, deshalb muss hier
|
|
|
|
// der FontEntry auch auf NULL gesetzt werden
|
2005-07-01 12:07:23 +00:00
|
|
|
// TODO: consolidate duplicate cleanup by Printer and OutputDevice
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( mpFontEntry )
|
|
|
|
{
|
|
|
|
mpFontCache->Release( mpFontEntry );
|
|
|
|
mpFontEntry = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevFontList )
|
|
|
|
{
|
|
|
|
delete mpGetDevFontList;
|
|
|
|
mpGetDevFontList = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevSizeList )
|
|
|
|
{
|
|
|
|
delete mpGetDevSizeList;
|
|
|
|
mpGetDevSizeList = NULL;
|
|
|
|
}
|
|
|
|
delete mpFontCache;
|
2005-07-01 12:07:23 +00:00
|
|
|
mpFontCache = NULL;
|
2002-07-15 11:04:39 +00:00
|
|
|
// font list deleted by OutputDevice dtor
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Printer aus der Liste eintragen
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
if ( mpPrev )
|
|
|
|
mpPrev->mpNext = mpNext;
|
|
|
|
else
|
|
|
|
pSVData->maGDIData.mpFirstPrinter = mpNext;
|
|
|
|
if ( mpNext )
|
|
|
|
mpNext->mpPrev = mpPrev;
|
|
|
|
else
|
|
|
|
pSVData->maGDIData.mpLastPrinter = mpPrev;
|
|
|
|
}
|
|
|
|
|
2007-06-20 09:13:44 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void Printer::Compat_OldPrinterMetrics( bool bSet )
|
|
|
|
{
|
|
|
|
// propagate flag
|
|
|
|
if( mpInfoPrinter )
|
|
|
|
mpInfoPrinter->m_bCompatMetrics = bSet;
|
|
|
|
|
|
|
|
// get new font data
|
2010-09-29 15:46:40 +08:00
|
|
|
ImplUpdateFontData( sal_True );
|
2007-06-20 09:13:44 +00:00
|
|
|
}
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-01-12 15:07:10 +01:00
|
|
|
sal_uLong Printer::GetCapabilities( sal_uInt16 nType ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( IsDisplayPrinter() )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2005-07-06 08:21:01 +00:00
|
|
|
if( mpInfoPrinter )
|
|
|
|
return mpInfoPrinter->GetCapabilities( maJobSetup.ImplGetConstData(), nType );
|
|
|
|
else
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::HasSupport( PrinterSupport eFeature ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
switch ( eFeature )
|
|
|
|
{
|
|
|
|
case SUPPORT_SET_ORIENTATION:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool)GetCapabilities( PRINTER_CAPABILITIES_SETORIENTATION );
|
2000-09-18 16:07:07 +00:00
|
|
|
case SUPPORT_SET_PAPERBIN:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool)GetCapabilities( PRINTER_CAPABILITIES_SETPAPERBIN );
|
2000-09-18 16:07:07 +00:00
|
|
|
case SUPPORT_SET_PAPERSIZE:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool)GetCapabilities( PRINTER_CAPABILITIES_SETPAPERSIZE );
|
2000-09-18 16:07:07 +00:00
|
|
|
case SUPPORT_SET_PAPER:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool)GetCapabilities( PRINTER_CAPABILITIES_SETPAPER );
|
2000-09-18 16:07:07 +00:00
|
|
|
case SUPPORT_COPY:
|
|
|
|
return (GetCapabilities( PRINTER_CAPABILITIES_COPIES ) != 0);
|
|
|
|
case SUPPORT_COLLATECOPY:
|
|
|
|
return (GetCapabilities( PRINTER_CAPABILITIES_COLLATECOPIES ) != 0);
|
|
|
|
case SUPPORT_SETUPDIALOG:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool)GetCapabilities( PRINTER_CAPABILITIES_SUPPORTDIALOG );
|
2000-09-29 09:00:17 +00:00
|
|
|
case SUPPORT_FAX:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool) GetCapabilities( PRINTER_CAPABILITIES_FAX );
|
2002-07-04 15:31:08 +00:00
|
|
|
case SUPPORT_PDF:
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_Bool) GetCapabilities( PRINTER_CAPABILITIES_PDF );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetJobSetup( const JobSetup& rSetup )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( IsDisplayPrinter() || mbInPrintPage )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
JobSetup aJobSetup = rSetup;
|
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
if ( mpInfoPrinter->SetPrinterData( aJobSetup.ImplGetData() ) )
|
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::Setup( Window* pWindow )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( IsDisplayPrinter() )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( IsJobActive() || IsPrinting() )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
JobSetup aJobSetup = maJobSetup;
|
|
|
|
SalFrame* pFrame;
|
|
|
|
if ( !pWindow )
|
2006-05-18 09:08:47 +00:00
|
|
|
pWindow = ImplGetDefaultWindow();
|
|
|
|
if( !pWindow )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2006-05-18 09:08:47 +00:00
|
|
|
|
|
|
|
pFrame = pWindow->ImplGetFrame();
|
2000-09-18 16:07:07 +00:00
|
|
|
ImplReleaseGraphics();
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
pSVData->maAppData.mnModalMode++;
|
|
|
|
nImplSysDialog++;
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool bSetup = mpInfoPrinter->Setup( pFrame, aJobSetup.ImplGetData() );
|
2000-09-18 16:07:07 +00:00
|
|
|
pSVData->maAppData.mnModalMode--;
|
|
|
|
nImplSysDialog--;
|
|
|
|
if ( bSetup )
|
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetPrinterProps( const Printer* pPrinter )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( IsJobActive() || IsPrinting() )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
|
2001-04-26 18:41:50 +00:00
|
|
|
mbDefPrinter = pPrinter->mbDefPrinter;
|
|
|
|
maPrintFile = pPrinter->maPrintFile;
|
|
|
|
mbPrintFile = pPrinter->mbPrintFile;
|
|
|
|
mnCopyCount = pPrinter->mnCopyCount;
|
|
|
|
mbCollateCopy = pPrinter->mbCollateCopy;
|
|
|
|
mnPageQueueSize = pPrinter->mnPageQueueSize;
|
|
|
|
*mpPrinterOptions = *pPrinter->mpPrinterOptions;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( pPrinter->IsDisplayPrinter() )
|
|
|
|
{
|
|
|
|
// Alten Printer zerstoeren
|
|
|
|
if ( !IsDisplayPrinter() )
|
|
|
|
{
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
pSVData->mpDefInst->DestroyInfoPrinter( mpInfoPrinter );
|
|
|
|
if ( mpFontEntry )
|
|
|
|
{
|
|
|
|
mpFontCache->Release( mpFontEntry );
|
|
|
|
mpFontEntry = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevFontList )
|
|
|
|
{
|
|
|
|
delete mpGetDevFontList;
|
|
|
|
mpGetDevFontList = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevSizeList )
|
|
|
|
{
|
|
|
|
delete mpGetDevSizeList;
|
|
|
|
mpGetDevSizeList = NULL;
|
|
|
|
}
|
2002-07-15 11:04:39 +00:00
|
|
|
// clean up font list
|
2006-03-22 14:18:25 +00:00
|
|
|
delete mpFontCache;
|
2000-09-18 16:07:07 +00:00
|
|
|
delete mpFontList;
|
2006-03-22 14:18:25 +00:00
|
|
|
mpFontCache = NULL;
|
2002-07-15 11:04:39 +00:00
|
|
|
mpFontList = NULL;
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
mbInitFont = sal_True;
|
|
|
|
mbNewFont = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
mpInfoPrinter = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Neuen Printer bauen
|
|
|
|
ImplInitDisplay( NULL );
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Alten Printer zerstoeren?
|
|
|
|
if ( GetName() != pPrinter->GetName() )
|
|
|
|
{
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
if ( mpDisplayDev )
|
|
|
|
{
|
|
|
|
delete mpDisplayDev;
|
|
|
|
mpDisplayDev = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pSVData->mpDefInst->DestroyInfoPrinter( mpInfoPrinter );
|
|
|
|
|
|
|
|
if ( mpFontEntry )
|
|
|
|
{
|
|
|
|
mpFontCache->Release( mpFontEntry );
|
|
|
|
mpFontEntry = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevFontList )
|
|
|
|
{
|
|
|
|
delete mpGetDevFontList;
|
|
|
|
mpGetDevFontList = NULL;
|
|
|
|
}
|
|
|
|
if ( mpGetDevSizeList )
|
|
|
|
{
|
|
|
|
delete mpGetDevSizeList;
|
|
|
|
mpGetDevSizeList = NULL;
|
|
|
|
}
|
|
|
|
delete mpFontCache;
|
2006-03-22 14:18:25 +00:00
|
|
|
delete mpFontList;
|
|
|
|
mpFontCache = NULL;
|
|
|
|
mpFontList = NULL;
|
2010-09-29 15:46:40 +08:00
|
|
|
mbInitFont = sal_True;
|
|
|
|
mbNewFont = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
mpInfoPrinter = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Neuen Printer bauen
|
2006-06-19 18:30:44 +00:00
|
|
|
XubString aDriver = pPrinter->GetDriverName();
|
|
|
|
SalPrinterQueueInfo* pInfo = ImplGetQueueInfo( pPrinter->GetName(), &aDriver );
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( pInfo )
|
|
|
|
{
|
|
|
|
ImplInit( pInfo );
|
|
|
|
SetJobSetup( pPrinter->GetJobSetup() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ImplInitDisplay( NULL );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
SetJobSetup( pPrinter->GetJobSetup() );
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetOrientation( Orientation eOrientation )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( mbInPrintPage )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( maJobSetup.ImplGetConstData()->meOrientation != eOrientation )
|
|
|
|
{
|
|
|
|
JobSetup aJobSetup = maJobSetup;
|
|
|
|
ImplJobSetup* pSetupData = aJobSetup.ImplGetData();
|
|
|
|
pSetupData->meOrientation = eOrientation;
|
|
|
|
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
if ( mpInfoPrinter->SetData( SAL_JOBSET_ORIENTATION, pSetupData ) )
|
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
Orientation Printer::GetOrientation() const
|
|
|
|
{
|
|
|
|
return maJobSetup.ImplGetConstData()->meOrientation;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetPaperBin( sal_uInt16 nPaperBin )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( mbInPrintPage )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( (maJobSetup.ImplGetConstData()->mnPaperBin != nPaperBin) &&
|
|
|
|
(nPaperBin < GetPaperBinCount()) )
|
|
|
|
{
|
|
|
|
JobSetup aJobSetup = maJobSetup;
|
|
|
|
ImplJobSetup* pSetupData = aJobSetup.ImplGetData();
|
|
|
|
pSetupData->mnPaperBin = nPaperBin;
|
|
|
|
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
if ( mpInfoPrinter->SetData( SAL_JOBSET_PAPERBIN, pSetupData ) )
|
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_uInt16 Printer::GetPaperBin() const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
return maJobSetup.ImplGetConstData()->mnPaperBin;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2003-03-27 16:59:30 +00:00
|
|
|
// Map user paper format to a available printer paper formats
|
2009-09-08 15:20:56 +00:00
|
|
|
void Printer::ImplFindPaperFormatForUserSize( JobSetup& aJobSetup, bool bMatchNearest )
|
2003-03-27 16:59:30 +00:00
|
|
|
{
|
|
|
|
ImplJobSetup* pSetupData = aJobSetup.ImplGetData();
|
|
|
|
|
|
|
|
int nLandscapeAngle = GetLandscapeAngle();
|
|
|
|
int nPaperCount = GetPaperInfoCount();
|
2009-09-08 15:20:56 +00:00
|
|
|
bool bFound = false;
|
2003-03-27 16:59:30 +00:00
|
|
|
|
2009-06-12 09:36:34 +00:00
|
|
|
PaperInfo aInfo(pSetupData->mnPaperWidth, pSetupData->mnPaperHeight);
|
2003-03-27 16:59:30 +00:00
|
|
|
|
|
|
|
// Alle Papierformate vergleichen und ein passendes raussuchen
|
|
|
|
for ( int i = 0; i < nPaperCount; i++ )
|
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
const PaperInfo& rPaperInfo = GetPaperInfo( i );
|
2003-03-27 16:59:30 +00:00
|
|
|
|
2009-06-12 09:36:34 +00:00
|
|
|
if ( aInfo.sloppyEqual(rPaperInfo) )
|
2003-03-27 16:59:30 +00:00
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
pSetupData->mePaperFormat = ImplGetPaperFormat( rPaperInfo.getWidth(),
|
|
|
|
rPaperInfo.getHeight() );
|
2009-03-24 14:21:10 +00:00
|
|
|
pSetupData->meOrientation = ORIENTATION_PORTRAIT;
|
2009-09-08 15:20:56 +00:00
|
|
|
bFound = true;
|
2003-03-27 16:59:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the printer supports landscape orientation, check paper sizes again
|
|
|
|
// with landscape orientation. This is necessary as a printer driver provides
|
|
|
|
// all paper sizes with portrait orientation only!!
|
|
|
|
if ( pSetupData->mePaperFormat == PAPER_USER &&
|
|
|
|
nLandscapeAngle != 0 &&
|
|
|
|
HasSupport( SUPPORT_SET_ORIENTATION ))
|
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
|
|
|
|
PaperInfo aRotatedInfo(pSetupData->mnPaperHeight, pSetupData->mnPaperWidth);
|
|
|
|
|
2003-03-27 16:59:30 +00:00
|
|
|
for ( int i = 0; i < nPaperCount; i++ )
|
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
const PaperInfo& rPaperInfo = GetPaperInfo( i );
|
2003-03-27 16:59:30 +00:00
|
|
|
|
2009-06-12 09:36:34 +00:00
|
|
|
if ( aRotatedInfo.sloppyEqual( rPaperInfo ) )
|
2003-03-27 16:59:30 +00:00
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
pSetupData->mePaperFormat = ImplGetPaperFormat( rPaperInfo.getWidth(),
|
|
|
|
rPaperInfo.getHeight() );
|
2009-03-24 14:21:10 +00:00
|
|
|
pSetupData->meOrientation = ORIENTATION_LANDSCAPE;
|
2009-09-08 15:20:56 +00:00
|
|
|
bFound = true;
|
2003-03-27 16:59:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-09-08 15:20:56 +00:00
|
|
|
|
|
|
|
if( ! bFound && bMatchNearest )
|
|
|
|
{
|
|
|
|
sal_Int64 nBestMatch = SAL_MAX_INT64;
|
|
|
|
int nBestIndex = 0;
|
|
|
|
Orientation eBestOrientation = ORIENTATION_PORTRAIT;
|
|
|
|
for( int i = 0; i < nPaperCount; i++ )
|
|
|
|
{
|
|
|
|
const PaperInfo& rPaperInfo = GetPaperInfo( i );
|
|
|
|
|
|
|
|
// check protrait match
|
|
|
|
sal_Int64 nDX = pSetupData->mnPaperWidth - rPaperInfo.getWidth();
|
|
|
|
sal_Int64 nDY = pSetupData->mnPaperHeight - rPaperInfo.getHeight();
|
|
|
|
sal_Int64 nMatch = nDX*nDX + nDY*nDY;
|
|
|
|
if( nMatch < nBestMatch )
|
|
|
|
{
|
|
|
|
nBestMatch = nMatch;
|
|
|
|
nBestIndex = i;
|
|
|
|
eBestOrientation = ORIENTATION_PORTRAIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check landscape match
|
|
|
|
nDX = pSetupData->mnPaperWidth - rPaperInfo.getHeight();
|
|
|
|
nDY = pSetupData->mnPaperHeight - rPaperInfo.getWidth();
|
|
|
|
nMatch = nDX*nDX + nDY*nDY;
|
|
|
|
if( nMatch < nBestMatch )
|
|
|
|
{
|
|
|
|
nBestMatch = nMatch;
|
|
|
|
nBestIndex = i;
|
|
|
|
eBestOrientation = ORIENTATION_LANDSCAPE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const PaperInfo& rBestInfo = GetPaperInfo( nBestIndex );
|
|
|
|
pSetupData->mePaperFormat = ImplGetPaperFormat( rBestInfo.getWidth(),
|
|
|
|
rBestInfo.getHeight() );
|
|
|
|
pSetupData->meOrientation = eBestOrientation;
|
|
|
|
}
|
2003-03-27 16:59:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetPaper( Paper ePaper )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( mbInPrintPage )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
if ( maJobSetup.ImplGetConstData()->mePaperFormat != ePaper )
|
|
|
|
{
|
|
|
|
JobSetup aJobSetup = maJobSetup;
|
|
|
|
ImplJobSetup* pSetupData = aJobSetup.ImplGetData();
|
|
|
|
pSetupData->mePaperFormat = ePaper;
|
|
|
|
if ( ePaper != PAPER_USER )
|
|
|
|
{
|
2009-06-12 09:36:34 +00:00
|
|
|
PaperInfo aInfo(ePaper);
|
|
|
|
pSetupData->mnPaperWidth = aInfo.getWidth();
|
|
|
|
pSetupData->mnPaperHeight = aInfo.getHeight();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
2003-03-27 16:59:30 +00:00
|
|
|
if ( ePaper == PAPER_USER )
|
2009-09-08 15:20:56 +00:00
|
|
|
ImplFindPaperFormatForUserSize( aJobSetup, false );
|
2003-03-27 16:59:30 +00:00
|
|
|
if ( mpInfoPrinter->SetData( SAL_JOBSET_PAPERSIZE|SAL_JOBSET_ORIENTATION, pSetupData ) )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetPaperSizeUser( const Size& rSize )
|
2009-09-08 15:20:56 +00:00
|
|
|
{
|
|
|
|
return SetPaperSizeUser( rSize, false );
|
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetPaperSizeUser( const Size& rSize, bool bMatchNearest )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( mbInPrintPage )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
Size aPixSize = LogicToPixel( rSize );
|
2009-06-12 09:36:34 +00:00
|
|
|
Size aPageSize = PixelToLogic( aPixSize, MAP_100TH_MM );
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( (maJobSetup.ImplGetConstData()->mePaperFormat != PAPER_USER) ||
|
|
|
|
(maJobSetup.ImplGetConstData()->mnPaperWidth != aPageSize.Width()) ||
|
|
|
|
(maJobSetup.ImplGetConstData()->mnPaperHeight != aPageSize.Height()) )
|
|
|
|
{
|
|
|
|
JobSetup aJobSetup = maJobSetup;
|
|
|
|
ImplJobSetup* pSetupData = aJobSetup.ImplGetData();
|
|
|
|
pSetupData->mePaperFormat = PAPER_USER;
|
|
|
|
pSetupData->mnPaperWidth = aPageSize.Width();
|
|
|
|
pSetupData->mnPaperHeight = aPageSize.Height();
|
|
|
|
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
2009-09-08 15:20:56 +00:00
|
|
|
ImplFindPaperFormatForUserSize( aJobSetup, bMatchNearest );
|
2003-03-27 16:59:30 +00:00
|
|
|
|
|
|
|
// Changing the paper size can also change the orientation!
|
|
|
|
if ( mpInfoPrinter->SetData( SAL_JOBSET_PAPERSIZE|SAL_JOBSET_ORIENTATION, pSetupData ) )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
else
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2002-11-19 17:08:50 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
int Printer::GetPaperInfoCount() const
|
|
|
|
{
|
|
|
|
if( ! mpInfoPrinter )
|
|
|
|
return 0;
|
|
|
|
if( ! mpInfoPrinter->m_bPapersInit )
|
2002-11-20 11:04:16 +00:00
|
|
|
mpInfoPrinter->InitPaperFormats( maJobSetup.ImplGetConstData() );
|
2002-11-19 17:08:50 +00:00
|
|
|
return mpInfoPrinter->m_aPaperFormats.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2011-01-19 16:33:54 +01:00
|
|
|
rtl::OUString Printer::GetPaperName( Paper ePaper )
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
if( ! pSVData->mpPaperNames )
|
|
|
|
{
|
Merge commit 'ooo/DEV300_m101' into intm101
The following builds for me:
basebmp, basegfx, comphelper, dtrans, i18npool, i18nutil, l10ntools, o3tl,
psprint_config, regexp, rsc, sax, sot, tools, ucbhelper, unotools, vcl
The rest still needs fixing ;-)
Conflicts:
canvas/prj/build.lst
canvas/source/cairo/cairo_textlayout.cxx
canvas/source/directx/dx_winstuff.hxx
canvas/source/tools/image.cxx
canvas/source/vcl/canvashelper.cxx
comphelper/inc/comphelper/documentconstants.hxx
comphelper/inc/comphelper/optionalvalue.hxx
comphelper/inc/comphelper/querydeep.hxx
comphelper/prj/build.lst
comphelper/qa/complex/makefile.mk
comphelper/qa/string/test_string_noadditional.cxx
comphelper/source/misc/componentmodule.cxx
comphelper/source/misc/mimeconfighelper.cxx
comphelper/source/misc/querydeep.cxx
comphelper/source/misc/uieventslogger.cxx
comphelper/source/property/TypeGeneration.cxx
comphelper/test/uno_iterators/uno_iterators.cxx
comphelper/util/makefile.mk
cppcanvas/source/mtfrenderer/implrenderer.cxx
dtrans/prj/build.lst
dtrans/source/generic/dtrans.cxx
dtrans/source/win32/dtobj/FmtFilter.cxx
i18npool/prj/build.lst
i18npool/source/localedata/data/localedata_others.map
i18npool/source/localedata/data/makefile.mk
i18npool/source/localedata/localedata.cxx
i18npool/source/localedata/saxparser.cxx
i18npool/source/registerservices/registerservices.cxx
i18npool/source/search/textsearch.cxx
l10ntools/inc/cfgmerge.hxx
l10ntools/inc/export.hxx
l10ntools/inc/gsicheck.hxx
l10ntools/inc/l10ntools/vosapp.hxx
l10ntools/inc/tagtest.hxx
l10ntools/inc/xmlparse.hxx
l10ntools/layout/layoutparse.cxx
l10ntools/layout/tralay.cxx
l10ntools/source/cfgmerge.cxx
l10ntools/source/export.cxx
l10ntools/source/export2.cxx
l10ntools/source/gsicheck.cxx
l10ntools/source/help/HelpLinker.cxx
l10ntools/source/lngex.cxx
l10ntools/source/lngmerge.cxx
l10ntools/source/merge.cxx
l10ntools/source/tagtest.cxx
l10ntools/source/xmlparse.cxx
padmin/source/fontentry.cxx
padmin/source/padialog.cxx
padmin/source/padialog.src
padmin/source/pamain.cxx
rsc/inc/rscarray.hxx
rsc/inc/rscclass.hxx
rsc/inc/rscclobj.hxx
rsc/inc/rsccont.hxx
rsc/inc/rscdb.hxx
rsc/inc/rscdef.hxx
rsc/inc/rscmgr.hxx
rsc/inc/rscrange.hxx
rsc/inc/rsctop.hxx
rsc/inc/vclrsc.hxx
rsc/source/parser/rscdb.cxx
rsc/source/parser/rscicpx.cxx
rsc/source/parser/rscinit.cxx
rsc/source/prj/start.cxx
rsc/source/res/rscarray.cxx
rsc/source/res/rscclass.cxx
rsc/source/res/rscclobj.cxx
rsc/source/res/rsccont.cxx
rsc/source/res/rscmgr.cxx
rsc/source/res/rscrange.cxx
rsc/source/res/rsctop.cxx
rsc/source/rsc/rsc.cxx
rsc/source/tools/rscdef.cxx
rsc/source/tools/rsctools.cxx
sax/source/expatwrap/sax_expat.cxx
sax/source/fastparser/facreg.cxx
sax/source/tools/fastserializer.cxx
sot/inc/sot/filelist.hxx
sot/inc/sot/object.hxx
sot/source/base/factory.cxx
sot/source/base/filelist.cxx
sot/source/sdstor/stg.cxx
sot/source/sdstor/stgcache.cxx
sot/source/sdstor/stgole.cxx
sot/source/sdstor/stgstrms.cxx
sot/source/sdstor/storage.cxx
sot/source/sdstor/ucbstorage.cxx
svl/inc/svl/cenumitm.hxx
svl/inc/svl/cintitem.hxx
svl/inc/svl/cntwall.hxx
svl/inc/svl/ctypeitm.hxx
svl/inc/svl/custritm.hxx
svl/inc/svl/dateitem.hxx
svl/inc/svl/filerec.hxx
svl/inc/svl/globalnameitem.hxx
svl/inc/svl/ilstitem.hxx
svl/inc/svl/imageitm.hxx
svl/inc/svl/intitem.hxx
svl/inc/svl/itempool.hxx
svl/inc/svl/itemset.hxx
svl/inc/svl/lckbitem.hxx
svl/inc/svl/poolitem.hxx
svl/inc/svl/ptitem.hxx
svl/inc/svl/rectitem.hxx
svl/inc/svl/sfontitm.hxx
svl/inc/svl/slstitm.hxx
svl/inc/svl/srchitem.hxx
svl/inc/svl/svarray.hxx
svl/inc/svl/svdde.hxx
svl/inc/svl/svstdarr.hxx
svl/inc/svl/szitem.hxx
svl/inc/svl/visitem.hxx
svl/inc/svl/zforlist.hxx
svl/inc/svl/zformat.hxx
svl/prj/build.lst
svl/qa/complex/ConfigItems/helper/ConfigItemTest.cxx
svl/qa/complex/ConfigItems/helper/makefile.mk
svl/qa/makefile.mk
svl/source/filepicker/pickerhelper.cxx
svl/source/filerec/filerec.cxx
svl/source/items/cenumitm.cxx
svl/source/items/cintitem.cxx
svl/source/items/cntwall.cxx
svl/source/items/ctypeitm.cxx
svl/source/items/custritm.cxx
svl/source/items/dateitem.cxx
svl/source/items/globalnameitem.cxx
svl/source/items/ilstitem.cxx
svl/source/items/imageitm.cxx
svl/source/items/intitem.cxx
svl/source/items/itempool.cxx
svl/source/items/itemprop.cxx
svl/source/items/itemset.cxx
svl/source/items/lckbitem.cxx
svl/source/items/poolio.cxx
svl/source/items/poolitem.cxx
svl/source/items/ptitem.cxx
svl/source/items/rectitem.cxx
svl/source/items/slstitm.cxx
svl/source/items/srchitem.cxx
svl/source/items/style.cxx
svl/source/items/szitem.cxx
svl/source/items/visitem.cxx
svl/source/items/whiter.cxx
svl/source/memtools/svarray.cxx
svl/source/misc/PasswordHelper.cxx
svl/source/misc/adrparse.cxx
svl/source/misc/lngmisc.cxx
svl/source/notify/brdcst.cxx
svl/source/notify/listener.cxx
svl/source/notify/listenerbase.cxx
svl/source/numbers/makefile.mk
svl/source/numbers/nbdll.cxx
svl/source/numbers/zforfind.cxx
svl/source/numbers/zforlist.cxx
svl/source/numbers/zformat.cxx
svl/source/numbers/zforscan.cxx
svl/source/passwordcontainer/passwordcontainer.cxx
svl/source/svdde/ddecli.cxx
svl/source/svdde/ddeimp.hxx
svl/source/svdde/ddemlos2.h
svl/source/svdde/ddesvr.cxx
svl/source/undo/undo.cxx
svl/source/uno/registerservices.cxx
svl/util/makefile.mk
svtools/bmpmaker/bmpsum.cxx
svtools/bmpmaker/g2g.cxx
svtools/bmpmaker/makefile.mk
svtools/inc/borderhelper.hxx
svtools/inc/svtools/accessiblefactory.hxx
svtools/inc/svtools/apearcfg.hxx
svtools/inc/svtools/brwbox.hxx
svtools/inc/svtools/ctrlbox.hxx
svtools/inc/svtools/ctrltool.hxx
svtools/inc/svtools/editbrowsebox.hxx
svtools/inc/svtools/ehdl.hxx
svtools/inc/svtools/embedhlp.hxx
svtools/inc/svtools/filter.hxx
svtools/inc/svtools/ivctrl.hxx
svtools/inc/svtools/parhtml.hxx
svtools/inc/svtools/printdlg.hxx
svtools/inc/svtools/rtftoken.h
svtools/inc/svtools/ruler.hxx
svtools/inc/svtools/svicnvw.hxx
svtools/inc/svtools/svlbitm.hxx
svtools/inc/svtools/svlbox.hxx
svtools/inc/svtools/svtreebx.hxx
svtools/inc/svtools/tabbar.hxx
svtools/inc/svtools/table/abstracttablecontrol.hxx
svtools/inc/svtools/taskbar.hxx
svtools/inc/svtools/textview.hxx
svtools/inc/svtools/valueset.hxx
svtools/source/brwbox/brwbox1.cxx
svtools/source/brwbox/brwbox2.cxx
svtools/source/brwbox/datwin.cxx
svtools/source/brwbox/datwin.hxx
svtools/source/brwbox/makefile.mk
svtools/source/config/apearcfg.cxx
svtools/source/config/htmlcfg.cxx
svtools/source/config/menuoptions.cxx
svtools/source/config/miscopt.cxx
svtools/source/contnr/cont_pch.cxx
svtools/source/contnr/ctrdll.cxx
svtools/source/contnr/fileview.cxx
svtools/source/contnr/imivctl1.cxx
svtools/source/contnr/ivctrl.cxx
svtools/source/contnr/makefile.mk
svtools/source/contnr/svcontnr.src
svtools/source/contnr/svicnvw.cxx
svtools/source/contnr/svimpbox.cxx
svtools/source/contnr/svimpicn.cxx
svtools/source/contnr/svlbitm.cxx
svtools/source/contnr/svtreebx.cxx
svtools/source/contnr/templwin.cxx
svtools/source/contnr/templwin.hxx
svtools/source/control/asynclink.cxx
svtools/source/control/ctrlbox.cxx
svtools/source/control/ctrldll.cxx
svtools/source/control/ctrltool.cxx
svtools/source/control/filectrl.cxx
svtools/source/control/filectrl.src
svtools/source/control/headbar.cxx
svtools/source/control/inettbc.cxx
svtools/source/control/makefile.mk
svtools/source/control/prgsbar.cxx
svtools/source/control/roadmap.cxx
svtools/source/control/ruler.cxx
svtools/source/control/scriptedtext.cxx
svtools/source/control/stdmenu.cxx
svtools/source/control/tabbar.cxx
svtools/source/control/taskbar.cxx
svtools/source/control/taskbox.cxx
svtools/source/control/taskmisc.cxx
svtools/source/control/taskstat.cxx
svtools/source/control/valueacc.cxx
svtools/source/control/valueset.cxx
svtools/source/dialogs/addresstemplate.cxx
svtools/source/dialogs/addresstemplate.src
svtools/source/dialogs/colrdlg.src
svtools/source/dialogs/filedlg2.cxx
svtools/source/dialogs/filedlg2.hxx
svtools/source/dialogs/makefile.mk
svtools/source/dialogs/printdlg.cxx
svtools/source/dialogs/printdlg.src
svtools/source/dialogs/propctrl.cxx
svtools/source/dialogs/propctrl.hxx
svtools/source/dialogs/property.cxx
svtools/source/edit/makefile.mk
svtools/source/edit/sychconv.cxx
svtools/source/edit/syntaxhighlight.cxx
svtools/source/edit/textdoc.cxx
svtools/source/edit/texteng.cxx
svtools/source/edit/textundo.cxx
svtools/source/edit/textview.cxx
svtools/source/filter.vcl/filter/SvFilterOptionsDialog.cxx
svtools/source/filter.vcl/filter/dlgejpg.cxx
svtools/source/filter.vcl/filter/dlgejpg.hxx
svtools/source/filter.vcl/filter/dlgejpg.src
svtools/source/filter.vcl/filter/dlgepng.cxx
svtools/source/filter.vcl/filter/dlgepng.hxx
svtools/source/filter.vcl/filter/dlgepng.src
svtools/source/filter.vcl/filter/dlgexpor.cxx
svtools/source/filter.vcl/filter/dlgexpor.hxx
svtools/source/filter.vcl/filter/dlgexpor.src
svtools/source/filter.vcl/filter/filter2.cxx
svtools/source/filter.vcl/filter/makefile.mk
svtools/source/filter.vcl/filter/sgfbram.cxx
svtools/source/filter.vcl/filter/sgvmain.cxx
svtools/source/filter.vcl/filter/sgvspln.cxx
svtools/source/filter.vcl/filter/strings.src
svtools/source/filter.vcl/jpeg/makefile.mk
svtools/source/filter.vcl/wmf/emfwr.cxx
svtools/source/filter.vcl/wmf/emfwr.hxx
svtools/source/filter.vcl/wmf/enhwmf.cxx
svtools/source/filter.vcl/wmf/winmtf.hxx
svtools/source/filter.vcl/wmf/wmfwr.cxx
svtools/source/filter.vcl/wmf/wmfwr.hxx
svtools/source/graphic/grfcache.cxx
svtools/source/graphic/grfcache.hxx
svtools/source/graphic/grfmgr.cxx
svtools/source/graphic/makefile.mk
svtools/source/inc/accessibletableimp.hxx
svtools/source/inc/svimpbox.hxx
svtools/source/java/patchjavaerror.src
svtools/source/misc/ehdl.cxx
svtools/source/misc/errtxt.src
svtools/source/misc/helpagentwindow.cxx
svtools/source/misc/imagemgr.cxx
svtools/source/misc/imagemgr.src
svtools/source/misc/imageresourceaccess.cxx
svtools/source/misc/imap.cxx
svtools/source/misc/langtab.src
svtools/source/misc/makefile.mk
svtools/source/misc/svtdata.cxx
svtools/source/misc/templatefoldercache.cxx
svtools/source/misc/transfer2.cxx
svtools/source/misc/undo.src
svtools/source/plugapp/commtest.cxx
svtools/source/plugapp/commtest.src
svtools/source/plugapp/makefile.mk
svtools/source/plugapp/testtool.src
svtools/source/productregistration/productregistration.cxx
svtools/source/svhtml/htmlkywd.cxx
svtools/source/svhtml/parhtml.cxx
svtools/source/svrtf/rtfkey2.cxx
svtools/source/svrtf/rtfkeywd.cxx
svtools/source/table/defaultinputhandler.cxx
svtools/source/table/makefile.mk
svtools/source/table/tablecontrol.cxx
svtools/source/table/tablecontrol_impl.cxx
svtools/source/table/tablecontrol_impl.hxx
svtools/source/table/tabledatawindow.cxx
svtools/source/table/tablegeometry.cxx
svtools/source/table/tablegeometry.hxx
svtools/source/toolpanel/makefile.mk
svtools/source/toolpanel/toolpaneldrawer.cxx
svtools/source/uno/addrtempuno.cxx
svtools/source/uno/miscservices.cxx
svtools/source/uno/svtxgridcontrol.cxx
svtools/source/uno/svtxgridcontrol.hxx
svtools/source/uno/toolboxcontroller.cxx
svtools/source/uno/treecontrolpeer.cxx
svtools/source/uno/unocontroltablemodel.cxx
svtools/source/uno/unocontroltablemodel.hxx
svtools/source/uno/unoimap.cxx
svtools/source/urlobj/inetimg.cxx
svtools/util/makefile.mk
svtools/workben/browser.cxx
svtools/workben/cui/makefile.mk
svtools/workben/makefile.mk
svtools/workben/stest.cxx
svtools/workben/toolpanel/makefile.mk
svtools/workben/urange.cxx
toolkit/inc/toolkit/awt/vclxdevice.hxx
toolkit/inc/toolkit/awt/vclxgraphics.hxx
toolkit/inc/toolkit/awt/vclxwindows.hxx
toolkit/inc/toolkit/controls/dialogcontrol.hxx
toolkit/inc/toolkit/helper/property.hxx
toolkit/inc/toolkit/helper/servicenames.hxx
toolkit/inc/toolkit/helper/throbberimpl.hxx
toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
toolkit/source/awt/asynccallback.cxx
toolkit/source/awt/vclxgraphics.cxx
toolkit/source/awt/vclxtoolkit.cxx
toolkit/source/awt/vclxwindow.cxx
toolkit/source/awt/xsimpleanimation.cxx
toolkit/source/awt/xthrobber.cxx
toolkit/source/controls/dialogcontrol.cxx
toolkit/source/controls/grid/defaultgridcolumnmodel.cxx
toolkit/source/controls/grid/defaultgriddatamodel.cxx
toolkit/source/controls/grid/gridcontrol.cxx
toolkit/source/controls/grid/initguard.hxx
toolkit/source/controls/unocontrol.cxx
toolkit/source/controls/unocontrolcontainer.cxx
toolkit/source/controls/unocontrols.cxx
toolkit/source/helper/listenermultiplexer.cxx
toolkit/source/helper/property.cxx
toolkit/source/helper/registerservices.cxx
toolkit/source/helper/servicenames.cxx
toolkit/source/helper/throbberimpl.cxx
toolkit/source/helper/tkresmgr.cxx
tools/StaticLibrary_ooopathutils.mk
tools/bootstrp/addexes/makefile.mk
tools/bootstrp/addexes2/makefile.mk
tools/bootstrp/addexes2/mkfilt.cxx
tools/bootstrp/command.cxx
tools/bootstrp/cppdep.cxx
tools/bootstrp/iserver.cxx
tools/bootstrp/makefile.mk
tools/bootstrp/mkcreate.cxx
tools/bootstrp/prj.cxx
tools/bootstrp/rscdep.cxx
tools/bootstrp/sstring.cxx
tools/inc/bootstrp/command.hxx
tools/inc/bootstrp/mkcreate.hxx
tools/inc/bootstrp/prj.hxx
tools/inc/bootstrp/sstring.hxx
tools/inc/tools/agapi.hxx
tools/inc/tools/agitem.hxx
tools/inc/tools/chapi.hxx
tools/inc/tools/download.hxx
tools/inc/tools/eacopier.hxx
tools/inc/tools/fract.hxx
tools/inc/tools/fsys.hxx
tools/inc/tools/geninfo.hxx
tools/inc/tools/globname.hxx
tools/inc/tools/inetmime.hxx
tools/inc/tools/multisel.hxx
tools/inc/tools/poly.hxx
tools/inc/tools/postsys.h
tools/inc/tools/postwin.h
tools/inc/tools/presys.h
tools/inc/tools/prewin.h
tools/inc/tools/pstm.hxx
tools/inc/tools/ref.hxx
tools/inc/tools/simplerm.hxx
tools/inc/tools/solar.h
tools/inc/tools/table.hxx
tools/inc/tools/urlkeys.hxx
tools/inc/tools/urlobj.hxx
tools/prj/build.lst
tools/prj/d.lst
tools/qa/makefile.mk
tools/source/communi/geninfo.cxx
tools/source/debug/debug.cxx
tools/source/fsys/dirent.cxx
tools/source/fsys/tdir.cxx
tools/source/fsys/unx.cxx
tools/source/fsys/urlobj.cxx
tools/source/generic/color.cxx
tools/source/generic/config.cxx
tools/source/generic/fract.cxx
tools/source/inet/inetmime.cxx
tools/source/memtools/multisel.cxx
tools/source/memtools/table.cxx
tools/source/rc/resmgr.cxx
tools/source/ref/globname.cxx
tools/source/ref/pstm.cxx
tools/source/solar/solar.c
tools/source/stream/strmos2.cxx
tools/source/stream/strmunx.cxx
tools/source/stream/strmwnt.cxx
tools/source/string/makefile.mk
tools/source/testtoolloader/testtoolloader.cxx
tools/test/makefile.mk
tools/util/makefile.mk
tools/win/inc/dll.hxx
tools/win/inc/parser.hxx
tools/win/inc/shellex.h
tools/win/inc/shutil.h
tools/win/inc/toolsdll.hxx
tools/win/inc/winshell.hxx
tools/workben/makefile.mk
ucbhelper/source/client/proxydecider.cxx
ucbhelper/workben/ucbexplorer/ucbexplorer.hrc
unotools/inc/unotools/unotunnelhelper.hxx
unotools/source/config/fltrcfg.cxx
unotools/source/config/lingucfg.cxx
unotools/source/config/misccfg.cxx
unotools/source/config/pathoptions.cxx
unotools/source/config/searchopt.cxx
unotools/source/i18n/localedatawrapper.cxx
unotools/source/ucbhelper/localfilehelper.cxx
unotools/source/ucbhelper/ucbhelper.cxx
unotools/source/ucbhelper/xtempfile.cxx
vcl/aqua/inc/salbmp.h
vcl/aqua/inc/salgdi.h
vcl/aqua/inc/salinst.h
vcl/aqua/source/app/salinst.cxx
vcl/aqua/source/gdi/aquaprintaccessoryview.mm
vcl/aqua/source/gdi/salgdi.cxx
vcl/aqua/source/gdi/salprn.cxx
vcl/aqua/source/window/salframeview.mm
vcl/aqua/source/window/salobj.cxx
vcl/inc/vcl/bitmap.hxx
vcl/inc/vcl/brdwin.hxx
vcl/inc/vcl/button.hxx
vcl/inc/vcl/cmdevt.hxx
vcl/inc/vcl/cvtgrf.hxx
vcl/inc/vcl/dialog.hxx
vcl/inc/vcl/dockwin.hxx
vcl/inc/vcl/event.hxx
vcl/inc/vcl/fixed.hxx
vcl/inc/vcl/fldunit.hxx
vcl/inc/vcl/floatwin.hxx
vcl/inc/vcl/gdimtf.hxx
vcl/inc/vcl/glyphcache.hxx
vcl/inc/vcl/graphite_adaptors.hxx
vcl/inc/vcl/graphite_features.hxx
vcl/inc/vcl/graphite_layout.hxx
vcl/inc/vcl/ilstbox.hxx
vcl/inc/vcl/image.h
vcl/inc/vcl/imgctrl.hxx
vcl/inc/vcl/impbmpconv.hxx
vcl/inc/vcl/impprn.hxx
vcl/inc/vcl/jobset.h
vcl/inc/vcl/keycodes.hxx
vcl/inc/vcl/lstbox.hxx
vcl/inc/vcl/mapunit.hxx
vcl/inc/vcl/menu.hxx
vcl/inc/vcl/msgbox.hxx
vcl/inc/vcl/outdev.hxx
vcl/inc/vcl/prndlg.hxx
vcl/inc/vcl/salatype.hxx
vcl/inc/vcl/salbmp.hxx
vcl/inc/vcl/salgdi.hxx
vcl/inc/vcl/salinst.hxx
vcl/inc/vcl/seleng.hxx
vcl/inc/vcl/settings.hxx
vcl/inc/vcl/smartid.hxx
vcl/inc/vcl/status.hxx
vcl/inc/vcl/strhelper.hxx
vcl/inc/vcl/svapp.hxx
vcl/inc/vcl/svdata.hxx
vcl/inc/vcl/syschild.hxx
vcl/inc/vcl/sysdata.hxx
vcl/inc/vcl/taskpanelist.hxx
vcl/inc/vcl/toolbox.hxx
vcl/inc/vcl/vclevent.hxx
vcl/inc/vcl/windata.hxx
vcl/inc/vcl/window.hxx
vcl/inc/vcl/wintypes.hxx
vcl/os2/source/app/salinst.cxx
vcl/os2/source/gdi/salgdi.cxx
vcl/os2/source/window/salmenu.cxx
vcl/os2/source/window/salobj.cxx
vcl/prj/build.lst
vcl/source/app/dbggui.cxx
vcl/source/app/help.cxx
vcl/source/app/idlemgr.cxx
vcl/source/app/settings.cxx
vcl/source/app/svapp.cxx
vcl/source/app/svdata.cxx
vcl/source/app/svmain.cxx
vcl/source/app/svmainhook.cxx
vcl/source/app/unohelp.cxx
vcl/source/app/vclevent.cxx
vcl/source/control/button.cxx
vcl/source/control/combobox.cxx
vcl/source/control/edit.cxx
vcl/source/control/field.cxx
vcl/source/control/fixed.cxx
vcl/source/control/ilstbox.cxx
vcl/source/control/imgctrl.cxx
vcl/source/control/makefile.mk
vcl/source/control/tabctrl.cxx
vcl/source/gdi/bitmap.cxx
vcl/source/gdi/bitmap2.cxx
vcl/source/gdi/bitmap4.cxx
vcl/source/gdi/bmpconv.cxx
vcl/source/gdi/cvtsvm.cxx
vcl/source/gdi/font.cxx
vcl/source/gdi/gdimtf.cxx
vcl/source/gdi/image.cxx
vcl/source/gdi/impimage.cxx
vcl/source/gdi/jobset.cxx
vcl/source/gdi/makefile.mk
vcl/source/gdi/metaact.cxx
vcl/source/gdi/outdev.cxx
vcl/source/gdi/outdev3.cxx
vcl/source/gdi/outdev4.cxx
vcl/source/gdi/outdevnative.cxx
vcl/source/gdi/pdfwriter.cxx
vcl/source/gdi/pdfwriter_impl.cxx
vcl/source/gdi/print3.cxx
vcl/source/gdi/salmisc.cxx
vcl/source/glyphs/gcach_ftyp.cxx
vcl/source/glyphs/gcach_ftyp.hxx
vcl/source/glyphs/glyphcache.cxx
vcl/source/glyphs/graphite_cache.cxx
vcl/source/glyphs/graphite_layout.cxx
vcl/source/glyphs/graphite_textsrc.hxx
vcl/source/helper/canvasbitmap.cxx
vcl/source/helper/smartid.cxx
vcl/source/helper/xconnection.cxx
vcl/source/src/btntext.src
vcl/source/src/images.src
vcl/source/src/print.src
vcl/source/window/accel.cxx
vcl/source/window/accmgr.cxx
vcl/source/window/brdwin.cxx
vcl/source/window/btndlg.cxx
vcl/source/window/dlgctrl.cxx
vcl/source/window/javachild.cxx
vcl/source/window/menu.cxx
vcl/source/window/msgbox.cxx
vcl/source/window/printdlg.cxx
vcl/source/window/status.cxx
vcl/source/window/syschild.cxx
vcl/source/window/toolbox.cxx
vcl/source/window/toolbox2.cxx
vcl/source/window/window.cxx
vcl/source/window/window2.cxx
vcl/source/window/wrkwin.cxx
vcl/unx/gtk/app/gtkdata.cxx
vcl/unx/gtk/app/gtkinst.cxx
vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
vcl/unx/gtk/window/gtkframe.cxx
vcl/unx/gtk/window/gtkobject.cxx
vcl/unx/headless/svpbmp.hxx
vcl/unx/headless/svpgdi.cxx
vcl/unx/headless/svpgdi.hxx
vcl/unx/headless/svpinst.cxx
vcl/unx/headless/svpinst.hxx
vcl/unx/headless/svpprn.cxx
vcl/unx/headless/svpprn.hxx
vcl/unx/headless/svppspgraphics.cxx
vcl/unx/headless/svppspgraphics.hxx
vcl/unx/headless/svptext.cxx
vcl/unx/inc/dtint.hxx
vcl/unx/inc/plugins/gtk/gtkdata.hxx
vcl/unx/inc/pspgraphics.h
vcl/unx/inc/salbmp.h
vcl/unx/inc/saldata.hxx
vcl/unx/inc/saldisp.hxx
vcl/unx/inc/salgdi.h
vcl/unx/inc/salinst.h
vcl/unx/inc/xfont.hxx
vcl/unx/kde/kdedata.cxx
vcl/unx/kde4/KDESalGraphics.cxx
vcl/unx/source/app/keysymnames.cxx
vcl/unx/source/app/saldata.cxx
vcl/unx/source/app/saldisp.cxx
vcl/unx/source/app/salinst.cxx
vcl/unx/source/app/wmadaptor.cxx
vcl/unx/source/dtrans/X11_selection.cxx
vcl/unx/source/dtrans/X11_service.cxx
vcl/unx/source/gdi/makefile.mk
vcl/unx/source/gdi/pspgraphics.cxx
vcl/unx/source/gdi/salgdi.cxx
vcl/unx/source/gdi/salgdi3.cxx
vcl/unx/source/gdi/salprnpsp.cxx
vcl/unx/source/gdi/xfont.cxx
vcl/unx/source/gdi/xlfd_attr.cxx
vcl/unx/source/gdi/xlfd_attr.hxx
vcl/unx/source/gdi/xlfd_extd.cxx
vcl/unx/source/gdi/xlfd_extd.hxx
vcl/unx/source/gdi/xlfd_smpl.cxx
vcl/unx/source/gdi/xlfd_smpl.hxx
vcl/unx/source/printer/ppdparser.cxx
vcl/unx/source/printer/printerinfomanager.cxx
vcl/unx/source/window/salframe.cxx
vcl/unx/source/window/salmenu.cxx
vcl/unx/source/window/salobj.cxx
vcl/util/makefile2.pmk
vcl/win/inc/salbmp.h
vcl/win/inc/saldata.hxx
vcl/win/inc/salgdi.h
vcl/win/inc/salinst.h
vcl/win/source/app/saldata.cxx
vcl/win/source/app/salinst.cxx
vcl/win/source/gdi/salgdi.cxx
vcl/win/source/gdi/salgdi3.cxx
vcl/win/source/gdi/salprn.cxx
vcl/win/source/gdi/winlayout.cxx
vcl/win/source/window/salframe.cxx
vcl/win/source/window/salobj.cxx
vcl/workben/outdevgrind.cxx
vos/inc/vos/execabl.hxx
vos/inc/vos/macros.hxx
vos/inc/vos/pipe.hxx
vos/inc/vos/process.hxx
vos/inc/vos/refernce.hxx
vos/inc/vos/signal.hxx
vos/inc/vos/socket.hxx
vos/inc/vos/stream.hxx
vos/inc/vos/thread.hxx
vos/source/pipe.cxx
vos/source/process.cxx
vos/source/signal.cxx
vos/source/thread.cxx
vos/source/timer.cxx
2011-03-11 14:24:23 +01:00
|
|
|
pSVData->mpPaperNames = new boost::unordered_map< int, rtl::OUString >();
|
2011-01-19 16:33:54 +01:00
|
|
|
if( ImplGetResMgr() )
|
|
|
|
{
|
|
|
|
ResStringArray aPaperStrings( VclResId( RID_STR_PAPERNAMES ) );
|
|
|
|
static const int PaperIndex[] =
|
|
|
|
{
|
|
|
|
PAPER_A0, PAPER_A1, PAPER_A2, PAPER_A3, PAPER_A4, PAPER_A5,
|
|
|
|
PAPER_B4_ISO, PAPER_B5_ISO, PAPER_LETTER, PAPER_LEGAL, PAPER_TABLOID,
|
|
|
|
PAPER_USER, PAPER_B6_ISO, PAPER_ENV_C4, PAPER_ENV_C5, PAPER_ENV_C6, PAPER_ENV_C65,
|
|
|
|
PAPER_ENV_DL, PAPER_SLIDE_DIA, PAPER_SCREEN, PAPER_C, PAPER_D, PAPER_E,
|
|
|
|
PAPER_EXECUTIVE, PAPER_FANFOLD_LEGAL_DE, PAPER_ENV_MONARCH, PAPER_ENV_PERSONAL,
|
|
|
|
PAPER_ENV_9, PAPER_ENV_10, PAPER_ENV_11, PAPER_ENV_12, PAPER_KAI16,
|
|
|
|
PAPER_KAI32, PAPER_KAI32BIG, PAPER_B4_JIS, PAPER_B5_JIS, PAPER_B6_JIS
|
|
|
|
};
|
|
|
|
OSL_ENSURE( sal_uInt32(sizeof(PaperIndex)/sizeof(PaperIndex[0])) == aPaperStrings.Count(), "localized paper name count wrong" );
|
|
|
|
for( int i = 0; i < int(sizeof(PaperIndex)/sizeof(PaperIndex[0])); i++ )
|
|
|
|
(*pSVData->mpPaperNames)[PaperIndex[i]] = aPaperStrings.GetString(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Merge commit 'ooo/DEV300_m101' into intm101
The following builds for me:
basebmp, basegfx, comphelper, dtrans, i18npool, i18nutil, l10ntools, o3tl,
psprint_config, regexp, rsc, sax, sot, tools, ucbhelper, unotools, vcl
The rest still needs fixing ;-)
Conflicts:
canvas/prj/build.lst
canvas/source/cairo/cairo_textlayout.cxx
canvas/source/directx/dx_winstuff.hxx
canvas/source/tools/image.cxx
canvas/source/vcl/canvashelper.cxx
comphelper/inc/comphelper/documentconstants.hxx
comphelper/inc/comphelper/optionalvalue.hxx
comphelper/inc/comphelper/querydeep.hxx
comphelper/prj/build.lst
comphelper/qa/complex/makefile.mk
comphelper/qa/string/test_string_noadditional.cxx
comphelper/source/misc/componentmodule.cxx
comphelper/source/misc/mimeconfighelper.cxx
comphelper/source/misc/querydeep.cxx
comphelper/source/misc/uieventslogger.cxx
comphelper/source/property/TypeGeneration.cxx
comphelper/test/uno_iterators/uno_iterators.cxx
comphelper/util/makefile.mk
cppcanvas/source/mtfrenderer/implrenderer.cxx
dtrans/prj/build.lst
dtrans/source/generic/dtrans.cxx
dtrans/source/win32/dtobj/FmtFilter.cxx
i18npool/prj/build.lst
i18npool/source/localedata/data/localedata_others.map
i18npool/source/localedata/data/makefile.mk
i18npool/source/localedata/localedata.cxx
i18npool/source/localedata/saxparser.cxx
i18npool/source/registerservices/registerservices.cxx
i18npool/source/search/textsearch.cxx
l10ntools/inc/cfgmerge.hxx
l10ntools/inc/export.hxx
l10ntools/inc/gsicheck.hxx
l10ntools/inc/l10ntools/vosapp.hxx
l10ntools/inc/tagtest.hxx
l10ntools/inc/xmlparse.hxx
l10ntools/layout/layoutparse.cxx
l10ntools/layout/tralay.cxx
l10ntools/source/cfgmerge.cxx
l10ntools/source/export.cxx
l10ntools/source/export2.cxx
l10ntools/source/gsicheck.cxx
l10ntools/source/help/HelpLinker.cxx
l10ntools/source/lngex.cxx
l10ntools/source/lngmerge.cxx
l10ntools/source/merge.cxx
l10ntools/source/tagtest.cxx
l10ntools/source/xmlparse.cxx
padmin/source/fontentry.cxx
padmin/source/padialog.cxx
padmin/source/padialog.src
padmin/source/pamain.cxx
rsc/inc/rscarray.hxx
rsc/inc/rscclass.hxx
rsc/inc/rscclobj.hxx
rsc/inc/rsccont.hxx
rsc/inc/rscdb.hxx
rsc/inc/rscdef.hxx
rsc/inc/rscmgr.hxx
rsc/inc/rscrange.hxx
rsc/inc/rsctop.hxx
rsc/inc/vclrsc.hxx
rsc/source/parser/rscdb.cxx
rsc/source/parser/rscicpx.cxx
rsc/source/parser/rscinit.cxx
rsc/source/prj/start.cxx
rsc/source/res/rscarray.cxx
rsc/source/res/rscclass.cxx
rsc/source/res/rscclobj.cxx
rsc/source/res/rsccont.cxx
rsc/source/res/rscmgr.cxx
rsc/source/res/rscrange.cxx
rsc/source/res/rsctop.cxx
rsc/source/rsc/rsc.cxx
rsc/source/tools/rscdef.cxx
rsc/source/tools/rsctools.cxx
sax/source/expatwrap/sax_expat.cxx
sax/source/fastparser/facreg.cxx
sax/source/tools/fastserializer.cxx
sot/inc/sot/filelist.hxx
sot/inc/sot/object.hxx
sot/source/base/factory.cxx
sot/source/base/filelist.cxx
sot/source/sdstor/stg.cxx
sot/source/sdstor/stgcache.cxx
sot/source/sdstor/stgole.cxx
sot/source/sdstor/stgstrms.cxx
sot/source/sdstor/storage.cxx
sot/source/sdstor/ucbstorage.cxx
svl/inc/svl/cenumitm.hxx
svl/inc/svl/cintitem.hxx
svl/inc/svl/cntwall.hxx
svl/inc/svl/ctypeitm.hxx
svl/inc/svl/custritm.hxx
svl/inc/svl/dateitem.hxx
svl/inc/svl/filerec.hxx
svl/inc/svl/globalnameitem.hxx
svl/inc/svl/ilstitem.hxx
svl/inc/svl/imageitm.hxx
svl/inc/svl/intitem.hxx
svl/inc/svl/itempool.hxx
svl/inc/svl/itemset.hxx
svl/inc/svl/lckbitem.hxx
svl/inc/svl/poolitem.hxx
svl/inc/svl/ptitem.hxx
svl/inc/svl/rectitem.hxx
svl/inc/svl/sfontitm.hxx
svl/inc/svl/slstitm.hxx
svl/inc/svl/srchitem.hxx
svl/inc/svl/svarray.hxx
svl/inc/svl/svdde.hxx
svl/inc/svl/svstdarr.hxx
svl/inc/svl/szitem.hxx
svl/inc/svl/visitem.hxx
svl/inc/svl/zforlist.hxx
svl/inc/svl/zformat.hxx
svl/prj/build.lst
svl/qa/complex/ConfigItems/helper/ConfigItemTest.cxx
svl/qa/complex/ConfigItems/helper/makefile.mk
svl/qa/makefile.mk
svl/source/filepicker/pickerhelper.cxx
svl/source/filerec/filerec.cxx
svl/source/items/cenumitm.cxx
svl/source/items/cintitem.cxx
svl/source/items/cntwall.cxx
svl/source/items/ctypeitm.cxx
svl/source/items/custritm.cxx
svl/source/items/dateitem.cxx
svl/source/items/globalnameitem.cxx
svl/source/items/ilstitem.cxx
svl/source/items/imageitm.cxx
svl/source/items/intitem.cxx
svl/source/items/itempool.cxx
svl/source/items/itemprop.cxx
svl/source/items/itemset.cxx
svl/source/items/lckbitem.cxx
svl/source/items/poolio.cxx
svl/source/items/poolitem.cxx
svl/source/items/ptitem.cxx
svl/source/items/rectitem.cxx
svl/source/items/slstitm.cxx
svl/source/items/srchitem.cxx
svl/source/items/style.cxx
svl/source/items/szitem.cxx
svl/source/items/visitem.cxx
svl/source/items/whiter.cxx
svl/source/memtools/svarray.cxx
svl/source/misc/PasswordHelper.cxx
svl/source/misc/adrparse.cxx
svl/source/misc/lngmisc.cxx
svl/source/notify/brdcst.cxx
svl/source/notify/listener.cxx
svl/source/notify/listenerbase.cxx
svl/source/numbers/makefile.mk
svl/source/numbers/nbdll.cxx
svl/source/numbers/zforfind.cxx
svl/source/numbers/zforlist.cxx
svl/source/numbers/zformat.cxx
svl/source/numbers/zforscan.cxx
svl/source/passwordcontainer/passwordcontainer.cxx
svl/source/svdde/ddecli.cxx
svl/source/svdde/ddeimp.hxx
svl/source/svdde/ddemlos2.h
svl/source/svdde/ddesvr.cxx
svl/source/undo/undo.cxx
svl/source/uno/registerservices.cxx
svl/util/makefile.mk
svtools/bmpmaker/bmpsum.cxx
svtools/bmpmaker/g2g.cxx
svtools/bmpmaker/makefile.mk
svtools/inc/borderhelper.hxx
svtools/inc/svtools/accessiblefactory.hxx
svtools/inc/svtools/apearcfg.hxx
svtools/inc/svtools/brwbox.hxx
svtools/inc/svtools/ctrlbox.hxx
svtools/inc/svtools/ctrltool.hxx
svtools/inc/svtools/editbrowsebox.hxx
svtools/inc/svtools/ehdl.hxx
svtools/inc/svtools/embedhlp.hxx
svtools/inc/svtools/filter.hxx
svtools/inc/svtools/ivctrl.hxx
svtools/inc/svtools/parhtml.hxx
svtools/inc/svtools/printdlg.hxx
svtools/inc/svtools/rtftoken.h
svtools/inc/svtools/ruler.hxx
svtools/inc/svtools/svicnvw.hxx
svtools/inc/svtools/svlbitm.hxx
svtools/inc/svtools/svlbox.hxx
svtools/inc/svtools/svtreebx.hxx
svtools/inc/svtools/tabbar.hxx
svtools/inc/svtools/table/abstracttablecontrol.hxx
svtools/inc/svtools/taskbar.hxx
svtools/inc/svtools/textview.hxx
svtools/inc/svtools/valueset.hxx
svtools/source/brwbox/brwbox1.cxx
svtools/source/brwbox/brwbox2.cxx
svtools/source/brwbox/datwin.cxx
svtools/source/brwbox/datwin.hxx
svtools/source/brwbox/makefile.mk
svtools/source/config/apearcfg.cxx
svtools/source/config/htmlcfg.cxx
svtools/source/config/menuoptions.cxx
svtools/source/config/miscopt.cxx
svtools/source/contnr/cont_pch.cxx
svtools/source/contnr/ctrdll.cxx
svtools/source/contnr/fileview.cxx
svtools/source/contnr/imivctl1.cxx
svtools/source/contnr/ivctrl.cxx
svtools/source/contnr/makefile.mk
svtools/source/contnr/svcontnr.src
svtools/source/contnr/svicnvw.cxx
svtools/source/contnr/svimpbox.cxx
svtools/source/contnr/svimpicn.cxx
svtools/source/contnr/svlbitm.cxx
svtools/source/contnr/svtreebx.cxx
svtools/source/contnr/templwin.cxx
svtools/source/contnr/templwin.hxx
svtools/source/control/asynclink.cxx
svtools/source/control/ctrlbox.cxx
svtools/source/control/ctrldll.cxx
svtools/source/control/ctrltool.cxx
svtools/source/control/filectrl.cxx
svtools/source/control/filectrl.src
svtools/source/control/headbar.cxx
svtools/source/control/inettbc.cxx
svtools/source/control/makefile.mk
svtools/source/control/prgsbar.cxx
svtools/source/control/roadmap.cxx
svtools/source/control/ruler.cxx
svtools/source/control/scriptedtext.cxx
svtools/source/control/stdmenu.cxx
svtools/source/control/tabbar.cxx
svtools/source/control/taskbar.cxx
svtools/source/control/taskbox.cxx
svtools/source/control/taskmisc.cxx
svtools/source/control/taskstat.cxx
svtools/source/control/valueacc.cxx
svtools/source/control/valueset.cxx
svtools/source/dialogs/addresstemplate.cxx
svtools/source/dialogs/addresstemplate.src
svtools/source/dialogs/colrdlg.src
svtools/source/dialogs/filedlg2.cxx
svtools/source/dialogs/filedlg2.hxx
svtools/source/dialogs/makefile.mk
svtools/source/dialogs/printdlg.cxx
svtools/source/dialogs/printdlg.src
svtools/source/dialogs/propctrl.cxx
svtools/source/dialogs/propctrl.hxx
svtools/source/dialogs/property.cxx
svtools/source/edit/makefile.mk
svtools/source/edit/sychconv.cxx
svtools/source/edit/syntaxhighlight.cxx
svtools/source/edit/textdoc.cxx
svtools/source/edit/texteng.cxx
svtools/source/edit/textundo.cxx
svtools/source/edit/textview.cxx
svtools/source/filter.vcl/filter/SvFilterOptionsDialog.cxx
svtools/source/filter.vcl/filter/dlgejpg.cxx
svtools/source/filter.vcl/filter/dlgejpg.hxx
svtools/source/filter.vcl/filter/dlgejpg.src
svtools/source/filter.vcl/filter/dlgepng.cxx
svtools/source/filter.vcl/filter/dlgepng.hxx
svtools/source/filter.vcl/filter/dlgepng.src
svtools/source/filter.vcl/filter/dlgexpor.cxx
svtools/source/filter.vcl/filter/dlgexpor.hxx
svtools/source/filter.vcl/filter/dlgexpor.src
svtools/source/filter.vcl/filter/filter2.cxx
svtools/source/filter.vcl/filter/makefile.mk
svtools/source/filter.vcl/filter/sgfbram.cxx
svtools/source/filter.vcl/filter/sgvmain.cxx
svtools/source/filter.vcl/filter/sgvspln.cxx
svtools/source/filter.vcl/filter/strings.src
svtools/source/filter.vcl/jpeg/makefile.mk
svtools/source/filter.vcl/wmf/emfwr.cxx
svtools/source/filter.vcl/wmf/emfwr.hxx
svtools/source/filter.vcl/wmf/enhwmf.cxx
svtools/source/filter.vcl/wmf/winmtf.hxx
svtools/source/filter.vcl/wmf/wmfwr.cxx
svtools/source/filter.vcl/wmf/wmfwr.hxx
svtools/source/graphic/grfcache.cxx
svtools/source/graphic/grfcache.hxx
svtools/source/graphic/grfmgr.cxx
svtools/source/graphic/makefile.mk
svtools/source/inc/accessibletableimp.hxx
svtools/source/inc/svimpbox.hxx
svtools/source/java/patchjavaerror.src
svtools/source/misc/ehdl.cxx
svtools/source/misc/errtxt.src
svtools/source/misc/helpagentwindow.cxx
svtools/source/misc/imagemgr.cxx
svtools/source/misc/imagemgr.src
svtools/source/misc/imageresourceaccess.cxx
svtools/source/misc/imap.cxx
svtools/source/misc/langtab.src
svtools/source/misc/makefile.mk
svtools/source/misc/svtdata.cxx
svtools/source/misc/templatefoldercache.cxx
svtools/source/misc/transfer2.cxx
svtools/source/misc/undo.src
svtools/source/plugapp/commtest.cxx
svtools/source/plugapp/commtest.src
svtools/source/plugapp/makefile.mk
svtools/source/plugapp/testtool.src
svtools/source/productregistration/productregistration.cxx
svtools/source/svhtml/htmlkywd.cxx
svtools/source/svhtml/parhtml.cxx
svtools/source/svrtf/rtfkey2.cxx
svtools/source/svrtf/rtfkeywd.cxx
svtools/source/table/defaultinputhandler.cxx
svtools/source/table/makefile.mk
svtools/source/table/tablecontrol.cxx
svtools/source/table/tablecontrol_impl.cxx
svtools/source/table/tablecontrol_impl.hxx
svtools/source/table/tabledatawindow.cxx
svtools/source/table/tablegeometry.cxx
svtools/source/table/tablegeometry.hxx
svtools/source/toolpanel/makefile.mk
svtools/source/toolpanel/toolpaneldrawer.cxx
svtools/source/uno/addrtempuno.cxx
svtools/source/uno/miscservices.cxx
svtools/source/uno/svtxgridcontrol.cxx
svtools/source/uno/svtxgridcontrol.hxx
svtools/source/uno/toolboxcontroller.cxx
svtools/source/uno/treecontrolpeer.cxx
svtools/source/uno/unocontroltablemodel.cxx
svtools/source/uno/unocontroltablemodel.hxx
svtools/source/uno/unoimap.cxx
svtools/source/urlobj/inetimg.cxx
svtools/util/makefile.mk
svtools/workben/browser.cxx
svtools/workben/cui/makefile.mk
svtools/workben/makefile.mk
svtools/workben/stest.cxx
svtools/workben/toolpanel/makefile.mk
svtools/workben/urange.cxx
toolkit/inc/toolkit/awt/vclxdevice.hxx
toolkit/inc/toolkit/awt/vclxgraphics.hxx
toolkit/inc/toolkit/awt/vclxwindows.hxx
toolkit/inc/toolkit/controls/dialogcontrol.hxx
toolkit/inc/toolkit/helper/property.hxx
toolkit/inc/toolkit/helper/servicenames.hxx
toolkit/inc/toolkit/helper/throbberimpl.hxx
toolkit/qa/complex/toolkit/accessibility/_XAccessibleComponent.java
toolkit/source/awt/asynccallback.cxx
toolkit/source/awt/vclxgraphics.cxx
toolkit/source/awt/vclxtoolkit.cxx
toolkit/source/awt/vclxwindow.cxx
toolkit/source/awt/xsimpleanimation.cxx
toolkit/source/awt/xthrobber.cxx
toolkit/source/controls/dialogcontrol.cxx
toolkit/source/controls/grid/defaultgridcolumnmodel.cxx
toolkit/source/controls/grid/defaultgriddatamodel.cxx
toolkit/source/controls/grid/gridcontrol.cxx
toolkit/source/controls/grid/initguard.hxx
toolkit/source/controls/unocontrol.cxx
toolkit/source/controls/unocontrolcontainer.cxx
toolkit/source/controls/unocontrols.cxx
toolkit/source/helper/listenermultiplexer.cxx
toolkit/source/helper/property.cxx
toolkit/source/helper/registerservices.cxx
toolkit/source/helper/servicenames.cxx
toolkit/source/helper/throbberimpl.cxx
toolkit/source/helper/tkresmgr.cxx
tools/StaticLibrary_ooopathutils.mk
tools/bootstrp/addexes/makefile.mk
tools/bootstrp/addexes2/makefile.mk
tools/bootstrp/addexes2/mkfilt.cxx
tools/bootstrp/command.cxx
tools/bootstrp/cppdep.cxx
tools/bootstrp/iserver.cxx
tools/bootstrp/makefile.mk
tools/bootstrp/mkcreate.cxx
tools/bootstrp/prj.cxx
tools/bootstrp/rscdep.cxx
tools/bootstrp/sstring.cxx
tools/inc/bootstrp/command.hxx
tools/inc/bootstrp/mkcreate.hxx
tools/inc/bootstrp/prj.hxx
tools/inc/bootstrp/sstring.hxx
tools/inc/tools/agapi.hxx
tools/inc/tools/agitem.hxx
tools/inc/tools/chapi.hxx
tools/inc/tools/download.hxx
tools/inc/tools/eacopier.hxx
tools/inc/tools/fract.hxx
tools/inc/tools/fsys.hxx
tools/inc/tools/geninfo.hxx
tools/inc/tools/globname.hxx
tools/inc/tools/inetmime.hxx
tools/inc/tools/multisel.hxx
tools/inc/tools/poly.hxx
tools/inc/tools/postsys.h
tools/inc/tools/postwin.h
tools/inc/tools/presys.h
tools/inc/tools/prewin.h
tools/inc/tools/pstm.hxx
tools/inc/tools/ref.hxx
tools/inc/tools/simplerm.hxx
tools/inc/tools/solar.h
tools/inc/tools/table.hxx
tools/inc/tools/urlkeys.hxx
tools/inc/tools/urlobj.hxx
tools/prj/build.lst
tools/prj/d.lst
tools/qa/makefile.mk
tools/source/communi/geninfo.cxx
tools/source/debug/debug.cxx
tools/source/fsys/dirent.cxx
tools/source/fsys/tdir.cxx
tools/source/fsys/unx.cxx
tools/source/fsys/urlobj.cxx
tools/source/generic/color.cxx
tools/source/generic/config.cxx
tools/source/generic/fract.cxx
tools/source/inet/inetmime.cxx
tools/source/memtools/multisel.cxx
tools/source/memtools/table.cxx
tools/source/rc/resmgr.cxx
tools/source/ref/globname.cxx
tools/source/ref/pstm.cxx
tools/source/solar/solar.c
tools/source/stream/strmos2.cxx
tools/source/stream/strmunx.cxx
tools/source/stream/strmwnt.cxx
tools/source/string/makefile.mk
tools/source/testtoolloader/testtoolloader.cxx
tools/test/makefile.mk
tools/util/makefile.mk
tools/win/inc/dll.hxx
tools/win/inc/parser.hxx
tools/win/inc/shellex.h
tools/win/inc/shutil.h
tools/win/inc/toolsdll.hxx
tools/win/inc/winshell.hxx
tools/workben/makefile.mk
ucbhelper/source/client/proxydecider.cxx
ucbhelper/workben/ucbexplorer/ucbexplorer.hrc
unotools/inc/unotools/unotunnelhelper.hxx
unotools/source/config/fltrcfg.cxx
unotools/source/config/lingucfg.cxx
unotools/source/config/misccfg.cxx
unotools/source/config/pathoptions.cxx
unotools/source/config/searchopt.cxx
unotools/source/i18n/localedatawrapper.cxx
unotools/source/ucbhelper/localfilehelper.cxx
unotools/source/ucbhelper/ucbhelper.cxx
unotools/source/ucbhelper/xtempfile.cxx
vcl/aqua/inc/salbmp.h
vcl/aqua/inc/salgdi.h
vcl/aqua/inc/salinst.h
vcl/aqua/source/app/salinst.cxx
vcl/aqua/source/gdi/aquaprintaccessoryview.mm
vcl/aqua/source/gdi/salgdi.cxx
vcl/aqua/source/gdi/salprn.cxx
vcl/aqua/source/window/salframeview.mm
vcl/aqua/source/window/salobj.cxx
vcl/inc/vcl/bitmap.hxx
vcl/inc/vcl/brdwin.hxx
vcl/inc/vcl/button.hxx
vcl/inc/vcl/cmdevt.hxx
vcl/inc/vcl/cvtgrf.hxx
vcl/inc/vcl/dialog.hxx
vcl/inc/vcl/dockwin.hxx
vcl/inc/vcl/event.hxx
vcl/inc/vcl/fixed.hxx
vcl/inc/vcl/fldunit.hxx
vcl/inc/vcl/floatwin.hxx
vcl/inc/vcl/gdimtf.hxx
vcl/inc/vcl/glyphcache.hxx
vcl/inc/vcl/graphite_adaptors.hxx
vcl/inc/vcl/graphite_features.hxx
vcl/inc/vcl/graphite_layout.hxx
vcl/inc/vcl/ilstbox.hxx
vcl/inc/vcl/image.h
vcl/inc/vcl/imgctrl.hxx
vcl/inc/vcl/impbmpconv.hxx
vcl/inc/vcl/impprn.hxx
vcl/inc/vcl/jobset.h
vcl/inc/vcl/keycodes.hxx
vcl/inc/vcl/lstbox.hxx
vcl/inc/vcl/mapunit.hxx
vcl/inc/vcl/menu.hxx
vcl/inc/vcl/msgbox.hxx
vcl/inc/vcl/outdev.hxx
vcl/inc/vcl/prndlg.hxx
vcl/inc/vcl/salatype.hxx
vcl/inc/vcl/salbmp.hxx
vcl/inc/vcl/salgdi.hxx
vcl/inc/vcl/salinst.hxx
vcl/inc/vcl/seleng.hxx
vcl/inc/vcl/settings.hxx
vcl/inc/vcl/smartid.hxx
vcl/inc/vcl/status.hxx
vcl/inc/vcl/strhelper.hxx
vcl/inc/vcl/svapp.hxx
vcl/inc/vcl/svdata.hxx
vcl/inc/vcl/syschild.hxx
vcl/inc/vcl/sysdata.hxx
vcl/inc/vcl/taskpanelist.hxx
vcl/inc/vcl/toolbox.hxx
vcl/inc/vcl/vclevent.hxx
vcl/inc/vcl/windata.hxx
vcl/inc/vcl/window.hxx
vcl/inc/vcl/wintypes.hxx
vcl/os2/source/app/salinst.cxx
vcl/os2/source/gdi/salgdi.cxx
vcl/os2/source/window/salmenu.cxx
vcl/os2/source/window/salobj.cxx
vcl/prj/build.lst
vcl/source/app/dbggui.cxx
vcl/source/app/help.cxx
vcl/source/app/idlemgr.cxx
vcl/source/app/settings.cxx
vcl/source/app/svapp.cxx
vcl/source/app/svdata.cxx
vcl/source/app/svmain.cxx
vcl/source/app/svmainhook.cxx
vcl/source/app/unohelp.cxx
vcl/source/app/vclevent.cxx
vcl/source/control/button.cxx
vcl/source/control/combobox.cxx
vcl/source/control/edit.cxx
vcl/source/control/field.cxx
vcl/source/control/fixed.cxx
vcl/source/control/ilstbox.cxx
vcl/source/control/imgctrl.cxx
vcl/source/control/makefile.mk
vcl/source/control/tabctrl.cxx
vcl/source/gdi/bitmap.cxx
vcl/source/gdi/bitmap2.cxx
vcl/source/gdi/bitmap4.cxx
vcl/source/gdi/bmpconv.cxx
vcl/source/gdi/cvtsvm.cxx
vcl/source/gdi/font.cxx
vcl/source/gdi/gdimtf.cxx
vcl/source/gdi/image.cxx
vcl/source/gdi/impimage.cxx
vcl/source/gdi/jobset.cxx
vcl/source/gdi/makefile.mk
vcl/source/gdi/metaact.cxx
vcl/source/gdi/outdev.cxx
vcl/source/gdi/outdev3.cxx
vcl/source/gdi/outdev4.cxx
vcl/source/gdi/outdevnative.cxx
vcl/source/gdi/pdfwriter.cxx
vcl/source/gdi/pdfwriter_impl.cxx
vcl/source/gdi/print3.cxx
vcl/source/gdi/salmisc.cxx
vcl/source/glyphs/gcach_ftyp.cxx
vcl/source/glyphs/gcach_ftyp.hxx
vcl/source/glyphs/glyphcache.cxx
vcl/source/glyphs/graphite_cache.cxx
vcl/source/glyphs/graphite_layout.cxx
vcl/source/glyphs/graphite_textsrc.hxx
vcl/source/helper/canvasbitmap.cxx
vcl/source/helper/smartid.cxx
vcl/source/helper/xconnection.cxx
vcl/source/src/btntext.src
vcl/source/src/images.src
vcl/source/src/print.src
vcl/source/window/accel.cxx
vcl/source/window/accmgr.cxx
vcl/source/window/brdwin.cxx
vcl/source/window/btndlg.cxx
vcl/source/window/dlgctrl.cxx
vcl/source/window/javachild.cxx
vcl/source/window/menu.cxx
vcl/source/window/msgbox.cxx
vcl/source/window/printdlg.cxx
vcl/source/window/status.cxx
vcl/source/window/syschild.cxx
vcl/source/window/toolbox.cxx
vcl/source/window/toolbox2.cxx
vcl/source/window/window.cxx
vcl/source/window/window2.cxx
vcl/source/window/wrkwin.cxx
vcl/unx/gtk/app/gtkdata.cxx
vcl/unx/gtk/app/gtkinst.cxx
vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx
vcl/unx/gtk/window/gtkframe.cxx
vcl/unx/gtk/window/gtkobject.cxx
vcl/unx/headless/svpbmp.hxx
vcl/unx/headless/svpgdi.cxx
vcl/unx/headless/svpgdi.hxx
vcl/unx/headless/svpinst.cxx
vcl/unx/headless/svpinst.hxx
vcl/unx/headless/svpprn.cxx
vcl/unx/headless/svpprn.hxx
vcl/unx/headless/svppspgraphics.cxx
vcl/unx/headless/svppspgraphics.hxx
vcl/unx/headless/svptext.cxx
vcl/unx/inc/dtint.hxx
vcl/unx/inc/plugins/gtk/gtkdata.hxx
vcl/unx/inc/pspgraphics.h
vcl/unx/inc/salbmp.h
vcl/unx/inc/saldata.hxx
vcl/unx/inc/saldisp.hxx
vcl/unx/inc/salgdi.h
vcl/unx/inc/salinst.h
vcl/unx/inc/xfont.hxx
vcl/unx/kde/kdedata.cxx
vcl/unx/kde4/KDESalGraphics.cxx
vcl/unx/source/app/keysymnames.cxx
vcl/unx/source/app/saldata.cxx
vcl/unx/source/app/saldisp.cxx
vcl/unx/source/app/salinst.cxx
vcl/unx/source/app/wmadaptor.cxx
vcl/unx/source/dtrans/X11_selection.cxx
vcl/unx/source/dtrans/X11_service.cxx
vcl/unx/source/gdi/makefile.mk
vcl/unx/source/gdi/pspgraphics.cxx
vcl/unx/source/gdi/salgdi.cxx
vcl/unx/source/gdi/salgdi3.cxx
vcl/unx/source/gdi/salprnpsp.cxx
vcl/unx/source/gdi/xfont.cxx
vcl/unx/source/gdi/xlfd_attr.cxx
vcl/unx/source/gdi/xlfd_attr.hxx
vcl/unx/source/gdi/xlfd_extd.cxx
vcl/unx/source/gdi/xlfd_extd.hxx
vcl/unx/source/gdi/xlfd_smpl.cxx
vcl/unx/source/gdi/xlfd_smpl.hxx
vcl/unx/source/printer/ppdparser.cxx
vcl/unx/source/printer/printerinfomanager.cxx
vcl/unx/source/window/salframe.cxx
vcl/unx/source/window/salmenu.cxx
vcl/unx/source/window/salobj.cxx
vcl/util/makefile2.pmk
vcl/win/inc/salbmp.h
vcl/win/inc/saldata.hxx
vcl/win/inc/salgdi.h
vcl/win/inc/salinst.h
vcl/win/source/app/saldata.cxx
vcl/win/source/app/salinst.cxx
vcl/win/source/gdi/salgdi.cxx
vcl/win/source/gdi/salgdi3.cxx
vcl/win/source/gdi/salprn.cxx
vcl/win/source/gdi/winlayout.cxx
vcl/win/source/window/salframe.cxx
vcl/win/source/window/salobj.cxx
vcl/workben/outdevgrind.cxx
vos/inc/vos/execabl.hxx
vos/inc/vos/macros.hxx
vos/inc/vos/pipe.hxx
vos/inc/vos/process.hxx
vos/inc/vos/refernce.hxx
vos/inc/vos/signal.hxx
vos/inc/vos/socket.hxx
vos/inc/vos/stream.hxx
vos/inc/vos/thread.hxx
vos/source/pipe.cxx
vos/source/process.cxx
vos/source/signal.cxx
vos/source/thread.cxx
vos/source/timer.cxx
2011-03-11 14:24:23 +01:00
|
|
|
boost::unordered_map<int,rtl::OUString>::const_iterator it = pSVData->mpPaperNames->find( (int)ePaper );
|
2011-01-19 16:33:54 +01:00
|
|
|
return (it != pSVData->mpPaperNames->end()) ? it->second : rtl::OUString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
rtl::OUString Printer::GetPaperName( bool i_bPaperUser ) const
|
|
|
|
{
|
|
|
|
Size aPageSize = PixelToLogic( GetPaperSizePixel(), MAP_100TH_MM );
|
|
|
|
Paper ePaper = ImplGetPaperFormat( aPageSize.Width(), aPageSize.Height() );
|
|
|
|
if( ePaper == PAPER_USER )
|
|
|
|
ePaper = ImplGetPaperFormat( aPageSize.Height(), aPageSize.Width() );
|
|
|
|
return (ePaper != PAPER_USER || i_bPaperUser ) ? GetPaperName( ePaper ) : rtl::OUString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2009-06-12 09:36:34 +00:00
|
|
|
const PaperInfo& Printer::GetPaperInfo( int nPaper ) const
|
2002-11-19 17:08:50 +00:00
|
|
|
{
|
|
|
|
if( ! mpInfoPrinter )
|
|
|
|
return ImplGetEmptyPaper();
|
|
|
|
if( ! mpInfoPrinter->m_bPapersInit )
|
2002-11-20 11:04:16 +00:00
|
|
|
mpInfoPrinter->InitPaperFormats( maJobSetup.ImplGetConstData() );
|
2006-06-19 18:30:44 +00:00
|
|
|
if( mpInfoPrinter->m_aPaperFormats.empty() || nPaper < 0 || nPaper >= int(mpInfoPrinter->m_aPaperFormats.size()) )
|
2002-11-19 17:08:50 +00:00
|
|
|
return ImplGetEmptyPaper();
|
|
|
|
return mpInfoPrinter->m_aPaperFormats[nPaper];
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetDuplexMode( DuplexMode eDuplex )
|
2009-05-28 16:46:25 +00:00
|
|
|
{
|
|
|
|
if ( mbInPrintPage )
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2009-05-28 16:46:25 +00:00
|
|
|
|
|
|
|
if ( maJobSetup.ImplGetConstData()->meDuplexMode != eDuplex )
|
|
|
|
{
|
|
|
|
JobSetup aJobSetup = maJobSetup;
|
|
|
|
ImplJobSetup* pSetupData = aJobSetup.ImplGetData();
|
|
|
|
pSetupData->meDuplexMode = eDuplex;
|
|
|
|
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2009-05-28 16:46:25 +00:00
|
|
|
maJobSetup = aJobSetup;
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2009-05-28 16:46:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
if ( mpInfoPrinter->SetData( SAL_JOBSET_DUPLEXMODE, pSetupData ) )
|
|
|
|
{
|
|
|
|
ImplUpdateJobSetupPaper( aJobSetup );
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_True;
|
2009-05-28 16:46:25 +00:00
|
|
|
maJobSetup = aJobSetup;
|
|
|
|
ImplUpdatePageData();
|
|
|
|
ImplUpdateFontList();
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2009-05-28 16:46:25 +00:00
|
|
|
}
|
|
|
|
else
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_False;
|
2009-05-28 16:46:25 +00:00
|
|
|
}
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2005-01-31 08:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2002-11-19 17:08:50 +00:00
|
|
|
int Printer::GetLandscapeAngle() const
|
|
|
|
{
|
2002-11-20 11:04:16 +00:00
|
|
|
return mpInfoPrinter ? mpInfoPrinter->GetLandscapeAngle( maJobSetup.ImplGetConstData() ) : 900;
|
2002-11-19 17:08:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
Paper Printer::GetPaper() const
|
|
|
|
{
|
|
|
|
return maJobSetup.ImplGetConstData()->mePaperFormat;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_uInt16 Printer::GetPaperBinCount() const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
return 0;
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
return (sal_uInt16)mpInfoPrinter->GetPaperBinCount( maJobSetup.ImplGetConstData() );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
XubString Printer::GetPaperBinName( sal_uInt16 nPaperBin ) const
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( IsDisplayPrinter() )
|
|
|
|
return ImplGetSVEmptyStr();
|
|
|
|
|
|
|
|
if ( nPaperBin < GetPaperBinCount() )
|
|
|
|
return mpInfoPrinter->GetPaperBinName( maJobSetup.ImplGetConstData(), nPaperBin );
|
|
|
|
else
|
|
|
|
return ImplGetSVEmptyStr();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::SetCopyCount( sal_uInt16 nCopy, sal_Bool bCollate )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
mnCopyCount = nCopy;
|
2009-07-16 11:37:53 +00:00
|
|
|
mbCollateCopy = bCollate;
|
2010-09-29 15:46:40 +08:00
|
|
|
return sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Printer::Error()
|
|
|
|
{
|
|
|
|
maErrorHdl.Call( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2011-01-12 15:07:10 +01:00
|
|
|
sal_uLong Printer::ImplSalPrinterErrorCodeToVCL( sal_uLong nError )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2011-01-12 15:07:10 +01:00
|
|
|
sal_uLong nVCLError;
|
2000-09-18 16:07:07 +00:00
|
|
|
switch ( nError )
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
nVCLError = PRINTER_OK;
|
|
|
|
break;
|
|
|
|
case SAL_PRINTER_ERROR_ABORT:
|
|
|
|
nVCLError = PRINTER_ABORT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
nVCLError = PRINTER_GENERALERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nVCLError;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool Printer::EndJob()
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
sal_Bool bRet = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
if ( !IsJobActive() )
|
2005-08-25 15:14:51 +00:00
|
|
|
return bRet;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( !mbInPrintPage, "Printer::EndJob() - StartPage() without EndPage() called" );
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
mbJobActive = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-06-12 15:22:27 +00:00
|
|
|
if ( mpPrinter )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
ImplReleaseGraphics();
|
|
|
|
|
|
|
|
mnCurPage = 0;
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
bRet = sal_True;
|
2005-08-25 15:14:51 +00:00
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
mbPrinting = sal_False;
|
2009-06-12 15:22:27 +00:00
|
|
|
mnCurPrintPage = 0;
|
|
|
|
maJobName.Erase();
|
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
mbDevOutput = sal_False;
|
2009-06-12 15:22:27 +00:00
|
|
|
bRet = mpPrinter->EndJob();
|
|
|
|
// Hier den Drucker nicht asyncron zerstoeren, da es
|
|
|
|
// W95 nicht verkraftet, wenn gleichzeitig gedruckt wird
|
|
|
|
// und ein Druckerobjekt zerstoert wird
|
|
|
|
ImplGetSVData()->mpDefInst->DestroyPrinter( mpPrinter );
|
|
|
|
mpPrinter = NULL;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2005-08-25 15:14:51 +00:00
|
|
|
return bRet;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2009-06-12 15:22:27 +00:00
|
|
|
void Printer::ImplStartPage()
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( !IsJobActive() )
|
2009-06-12 15:22:27 +00:00
|
|
|
return;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-06-12 15:22:27 +00:00
|
|
|
if ( mpPrinter )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-06-12 15:22:27 +00:00
|
|
|
SalGraphics* pGraphics = mpPrinter->StartPage( maJobSetup.ImplGetConstData(), mbNewJobSetup );
|
|
|
|
if ( pGraphics )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-06-12 15:22:27 +00:00
|
|
|
ImplReleaseGraphics();
|
|
|
|
mpJobGraphics = pGraphics;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
2010-09-29 15:46:40 +08:00
|
|
|
mbDevOutput = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// PrintJob not aborted ???
|
|
|
|
if ( IsJobActive() )
|
|
|
|
{
|
2010-09-29 15:46:40 +08:00
|
|
|
mbInPrintPage = sal_True;
|
2000-09-18 16:07:07 +00:00
|
|
|
mnCurPage++;
|
2009-06-12 15:22:27 +00:00
|
|
|
mnCurPrintPage++;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
2009-06-12 15:22:27 +00:00
|
|
|
void Printer::ImplEndPage()
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
if ( !IsJobActive() )
|
2009-06-12 15:22:27 +00:00
|
|
|
return;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2010-09-29 15:46:40 +08:00
|
|
|
mbInPrintPage = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-06-12 15:22:27 +00:00
|
|
|
if ( mpPrinter )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-06-12 15:22:27 +00:00
|
|
|
mpPrinter->EndPage();
|
|
|
|
ImplReleaseGraphics();
|
2010-09-29 15:46:40 +08:00
|
|
|
mbDevOutput = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
mpJobGraphics = NULL;
|
2010-09-29 15:46:40 +08:00
|
|
|
mbNewJobSetup = sal_False;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
2002-02-11 14:44:44 +00:00
|
|
|
}
|
2006-12-20 17:32:13 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
void Printer::updatePrinters()
|
|
|
|
{
|
|
|
|
ImplSVData* pSVData = ImplGetSVData();
|
|
|
|
ImplPrnQueueList* pPrnList = pSVData->maGDIData.mpPrinterQueueList;
|
|
|
|
|
|
|
|
if ( pPrnList )
|
|
|
|
{
|
|
|
|
ImplPrnQueueList* pNewList = new ImplPrnQueueList;
|
|
|
|
pSVData->mpDefInst->GetPrinterQueueInfo( pNewList );
|
|
|
|
|
|
|
|
bool bChanged = pPrnList->m_aQueueInfos.size() != pNewList->m_aQueueInfos.size();
|
|
|
|
for( unsigned int i = 0; ! bChanged && i < pPrnList->m_aQueueInfos.size(); i++ )
|
|
|
|
{
|
|
|
|
ImplPrnQueueData& rInfo = pPrnList->m_aQueueInfos[i];
|
|
|
|
ImplPrnQueueData& rNewInfo = pNewList->m_aQueueInfos[i];
|
|
|
|
if( ! rInfo.mpSalQueueInfo || ! rNewInfo.mpSalQueueInfo || // sanity check
|
|
|
|
rInfo.mpSalQueueInfo->maPrinterName != rNewInfo.mpSalQueueInfo->maPrinterName )
|
|
|
|
{
|
|
|
|
bChanged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( bChanged )
|
|
|
|
{
|
|
|
|
ImplDeletePrnQueueList();
|
|
|
|
pSVData->maGDIData.mpPrinterQueueList = pNewList;
|
|
|
|
|
|
|
|
Application* pApp = GetpApp();
|
|
|
|
if( pApp )
|
|
|
|
{
|
|
|
|
DataChangedEvent aDCEvt( DATACHANGED_PRINTER );
|
|
|
|
pApp->DataChanged( aDCEvt );
|
|
|
|
pApp->NotifyAllWindows( aDCEvt );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
delete pNewList;
|
|
|
|
}
|
|
|
|
}
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|