1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
|
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: printoptions.cxx,v $
*
* $Revision: 1.14 $
*
* last change: $Author: hr $ $Date: 2007-06-27 21:16:09 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_svtools.hxx"
#ifdef SVL_DLLIMPLEMENTATION
#undef SVL_DLLIMPLEMENTATION
#endif
#define SVT_DLLIMPLEMENTATION
//_________________________________________________________________________________________________________________
// includes
//_________________________________________________________________________________________________________________
#include <svtools/printoptions.hxx>
#ifndef _UTL_CONFIGMGR_HXX_
#include <unotools/configmgr.hxx>
#endif
#ifndef _UTL_CONFIGITEM_HXX_
#include <unotools/configitem.hxx>
#endif
#ifndef _TOOLS_DEBUG_HXX
#include <tools/debug.hxx>
#endif
#ifndef _SV_PRINT_HXX
#include <vcl/print.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_ANY_HXX_
#include <com/sun/star/uno/Any.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
#include <com/sun/star/uno/Sequence.hxx>
#endif
#include <itemholder2.hxx>
// -----------
// - statics -
// -----------
static USHORT aDPIArray[] = { 72, 96, 150, 200, 300, 600 };
#define DPI_COUNT (sizeof(aDPIArray)/sizeof(aDPIArray[0 ]))
// -----------
// - Defines -
// -----------
#define ROOTNODE_START OUString(RTL_CONSTASCII_USTRINGPARAM("Office.Common/Print/Option"))
#define PROPERTYNAME_REDUCETRANSPARENCY OUString(RTL_CONSTASCII_USTRINGPARAM("ReduceTransparency"))
#define PROPERTYNAME_REDUCEDTRANSPARENCYMODE OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedTransparencyMode"))
#define PROPERTYNAME_REDUCEGRADIENTS OUString(RTL_CONSTASCII_USTRINGPARAM("ReduceGradients"))
#define PROPERTYNAME_REDUCEDGRADIENTMODE OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedGradientMode"))
#define PROPERTYNAME_REDUCEDGRADIENTSTEPCOUNT OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedGradientStepCount"))
#define PROPERTYNAME_REDUCEBITMAPS OUString(RTL_CONSTASCII_USTRINGPARAM("ReduceBitmaps"))
#define PROPERTYNAME_REDUCEDBITMAPMODE OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedBitmapMode"))
#define PROPERTYNAME_REDUCEDBITMAPRESOLUTION OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedBitmapResolution"))
#define PROPERTYNAME_REDUCEDBITMAPINCLUDESTRANSPARENCY OUString(RTL_CONSTASCII_USTRINGPARAM("ReducedBitmapIncludesTransparency"))
#define PROPERTYNAME_CONVERTTOGREYSCALES OUString(RTL_CONSTASCII_USTRINGPARAM("ConvertToGreyscales"))
#define PROPERTYHDL_REDUCETRANSPARENCY 0
#define PROPERTYHDL_REDUCEDTRANSPARENCYMODE 1
#define PROPERTYHDL_REDUCEGRADIENTS 2
#define PROPERTYHDL_REDUCEDGRADIENTMODE 3
#define PROPERTYHDL_REDUCEDGRADIENTSTEPCOUNT 4
#define PROPERTYHDL_REDUCEBITMAPS 5
#define PROPERTYHDL_REDUCEDBITMAPMODE 6
#define PROPERTYHDL_REDUCEDBITMAPRESOLUTION 7
#define PROPERTYHDL_REDUCEDBITMAPINCLUDESTRANSPARENCY 8
#define PROPERTYHDL_CONVERTTOGREYSCALES 9
#define PROPERTYCOUNT 10
// --------------
// - Namespaces -
// --------------
using namespace ::utl;
using namespace ::rtl;
using namespace ::osl;
using namespace ::com::sun::star::uno;
// -----------
// - statics -
// -----------
static SvtPrintOptions_Impl* pPrinterOptionsDataContainer = NULL;
static SvtPrintOptions_Impl* pPrintFileOptionsDataContainer = NULL;
SvtPrintOptions_Impl* SvtPrinterOptions::m_pStaticDataContainer = NULL;
sal_Int32 SvtPrinterOptions::m_nRefCount = 0;
SvtPrintOptions_Impl* SvtPrintFileOptions::m_pStaticDataContainer = NULL;
sal_Int32 SvtPrintFileOptions::m_nRefCount = 0;
// ------------------------
// - SvtPrintOptions_Impl -
// ------------------------
class SvtPrintOptions_Impl : public ConfigItem
{
public:
//---------------------------------------------------------------------------------------------------------
// constructor / destructor
//---------------------------------------------------------------------------------------------------------
SvtPrintOptions_Impl( const OUString& rConfigRoot );
~SvtPrintOptions_Impl();
//---------------------------------------------------------------------------------------------------------
// overloaded methods of baseclass
//---------------------------------------------------------------------------------------------------------
virtual void Commit();
//---------------------------------------------------------------------------------------------------------
// public interface
//---------------------------------------------------------------------------------------------------------
sal_Bool IsReduceTransparency() const { return m_bReduceTransparency; }
sal_Int16 GetReducedTransparencyMode() const { return m_nReducedTransparencyMode; }
sal_Bool IsReduceGradients() const { return m_bReduceGradients; }
sal_Int16 GetReducedGradientMode() const { return m_nReducedGradientMode; }
sal_Int16 GetReducedGradientStepCount() const { return m_nReducedGradientStepCount; }
sal_Bool IsReduceBitmaps() const { return m_bReduceBitmaps; }
sal_Int16 GetReducedBitmapMode() const { return m_nReducedBitmapMode; }
sal_Int16 GetReducedBitmapResolution() const { return m_nReducedBitmapResolution; }
sal_Bool IsReducedBitmapIncludesTransparency() const { return m_bReducedBitmapIncludesTransparency; }
sal_Bool IsConvertToGreyscales() const { return m_bConvertToGreyscales; }
void SetReduceTransparency( sal_Bool bState ) { m_bReduceTransparency = bState; SetModified(); }
void SetReducedTransparencyMode( sal_Int16 nMode ) { m_nReducedTransparencyMode = nMode; SetModified(); }
void SetReduceGradients( sal_Bool bState ) { m_bReduceGradients = bState; SetModified(); }
void SetReducedGradientMode( sal_Int16 nMode ) { m_nReducedGradientMode = nMode; SetModified(); }
void SetReducedGradientStepCount( sal_Int16 nStepCount ) { m_nReducedGradientStepCount = nStepCount; SetModified(); }
void SetReduceBitmaps( sal_Bool bState ) { m_bReduceBitmaps = bState; SetModified(); }
void SetReducedBitmapMode( sal_Int16 nMode ) { m_nReducedBitmapMode = nMode; SetModified(); }
void SetReducedBitmapResolution( sal_Int16 nResolution ) { m_nReducedBitmapResolution = nResolution; SetModified(); }
void SetReducedBitmapIncludesTransparency( sal_Bool bState ) { m_bReducedBitmapIncludesTransparency = bState; SetModified(); }
void SetConvertToGreyscales( sal_Bool bState ) { m_bConvertToGreyscales = bState; SetModified(); }
//-------------------------------------------------------------------------------------------------------------
// private methods
//-------------------------------------------------------------------------------------------------------------
private:
static Sequence< OUString > impl_GetPropertyNames();
//-------------------------------------------------------------------------------------------------------------
// private member
//-------------------------------------------------------------------------------------------------------------
private:
sal_Bool m_bReduceTransparency;
sal_Int16 m_nReducedTransparencyMode;
sal_Bool m_bReduceGradients;
sal_Int16 m_nReducedGradientMode;
sal_Int16 m_nReducedGradientStepCount;
sal_Bool m_bReduceBitmaps;
sal_Int16 m_nReducedBitmapMode;
sal_Int16 m_nReducedBitmapResolution;
sal_Bool m_bReducedBitmapIncludesTransparency;
sal_Bool m_bConvertToGreyscales;
};
// -----------------------------------------------------------------------------
SvtPrintOptions_Impl::SvtPrintOptions_Impl( const OUString& rConfigRoot ) :
ConfigItem( rConfigRoot ),
m_bReduceTransparency( sal_False ),
m_nReducedTransparencyMode( 0 ),
m_bReduceGradients( sal_False ),
m_nReducedGradientMode( 0 ),
m_nReducedGradientStepCount( 64 ),
m_bReduceBitmaps( sal_False ),
m_nReducedBitmapMode( 1 ),
m_nReducedBitmapResolution( 3 ),
m_bReducedBitmapIncludesTransparency( sal_True ),
m_bConvertToGreyscales( sal_False )
{
Sequence< OUString > seqNames( impl_GetPropertyNames() );
Sequence< Any > seqValues( GetProperties( seqNames ) );
DBG_ASSERT( !(seqNames.getLength()!=seqValues.getLength()), "SvtPrintOptions_Impl::SvtPrintOptions_Impl()\nI miss some values of configuration keys!\n" );
// Copy values from list in right order to our internal member.
sal_Int32 nPropertyCount = seqValues.getLength();
sal_Int32 nProperty = 0;
for( nProperty=0; nProperty<nPropertyCount; ++nProperty )
{
DBG_ASSERT( !(seqValues[nProperty].hasValue()==sal_False), "SvtPrintOptions_Impl::SvtPrintOptions_Impl()\nInvalid property value for property detected!\n" );
switch( nProperty )
{
case PROPERTYHDL_REDUCETRANSPARENCY:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_BOOLEAN), "Invalid type" );
seqValues[nProperty] >>= m_bReduceTransparency;
}
break;
case PROPERTYHDL_REDUCEDTRANSPARENCYMODE:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_SHORT), "Invalid type" );
seqValues[nProperty] >>= m_nReducedTransparencyMode;
}
break;
case PROPERTYHDL_REDUCEGRADIENTS:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_BOOLEAN), "Invalid type" );
seqValues[nProperty] >>= m_bReduceGradients;
}
break;
case PROPERTYHDL_REDUCEDGRADIENTMODE:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_SHORT), "Invalid type" );
seqValues[nProperty] >>= m_nReducedGradientMode;
}
break;
case PROPERTYHDL_REDUCEDGRADIENTSTEPCOUNT:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_SHORT), "Invalid type" );
seqValues[nProperty] >>= m_nReducedGradientStepCount;
}
break;
case PROPERTYHDL_REDUCEBITMAPS:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_BOOLEAN), "Invalid type" );
seqValues[nProperty] >>= m_bReduceBitmaps;
}
break;
case PROPERTYHDL_REDUCEDBITMAPMODE:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_SHORT), "Invalid type" );
seqValues[nProperty] >>= m_nReducedBitmapMode;
}
break;
case PROPERTYHDL_REDUCEDBITMAPRESOLUTION:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_SHORT), "Invalid type" );
seqValues[nProperty] >>= m_nReducedBitmapResolution;
}
break;
case PROPERTYHDL_REDUCEDBITMAPINCLUDESTRANSPARENCY:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_BOOLEAN), "Invalid type" );
seqValues[nProperty] >>= m_bReducedBitmapIncludesTransparency;
}
break;
case PROPERTYHDL_CONVERTTOGREYSCALES:
{
DBG_ASSERT(!(seqValues[nProperty].getValueTypeClass()!=TypeClass_BOOLEAN), "Invalid type" );
seqValues[nProperty] >>= m_bConvertToGreyscales;
}
break;
}
}
}
// -----------------------------------------------------------------------------
SvtPrintOptions_Impl::~SvtPrintOptions_Impl()
{
if( IsModified() )
Commit();
}
// -----------------------------------------------------------------------------
void SvtPrintOptions_Impl::Commit()
{
Sequence< OUString > aSeqNames( impl_GetPropertyNames() );
Sequence< Any > aSeqValues( aSeqNames.getLength() );
for( sal_Int32 nProperty = 0, nCount = aSeqNames.getLength(); nProperty < nCount; ++nProperty )
{
switch( nProperty )
{
case PROPERTYHDL_REDUCETRANSPARENCY:
aSeqValues[nProperty] <<= m_bReduceTransparency;
break;
case PROPERTYHDL_REDUCEDTRANSPARENCYMODE:
aSeqValues[nProperty] <<= m_nReducedTransparencyMode;
break;
case PROPERTYHDL_REDUCEGRADIENTS:
aSeqValues[nProperty] <<= m_bReduceGradients;
break;
case PROPERTYHDL_REDUCEDGRADIENTMODE:
aSeqValues[nProperty] <<= m_nReducedGradientMode;
break;
case PROPERTYHDL_REDUCEDGRADIENTSTEPCOUNT:
aSeqValues[nProperty] <<= m_nReducedGradientStepCount;
break;
case PROPERTYHDL_REDUCEBITMAPS:
aSeqValues[nProperty] <<= m_bReduceBitmaps;
break;
case PROPERTYHDL_REDUCEDBITMAPMODE:
aSeqValues[nProperty] <<= m_nReducedBitmapMode;
break;
case PROPERTYHDL_REDUCEDBITMAPRESOLUTION:
aSeqValues[nProperty] <<= m_nReducedBitmapResolution;
break;
case PROPERTYHDL_REDUCEDBITMAPINCLUDESTRANSPARENCY:
aSeqValues[nProperty] <<= m_bReducedBitmapIncludesTransparency;
break;
case PROPERTYHDL_CONVERTTOGREYSCALES:
aSeqValues[nProperty] <<= m_bConvertToGreyscales;
break;
}
}
PutProperties( aSeqNames, aSeqValues );
}
// -----------------------------------------------------------------------------
Sequence< OUString > SvtPrintOptions_Impl::impl_GetPropertyNames()
{
// Build static list of configuration key names.
static const OUString pProperties[] =
{
PROPERTYNAME_REDUCETRANSPARENCY,
PROPERTYNAME_REDUCEDTRANSPARENCYMODE,
PROPERTYNAME_REDUCEGRADIENTS,
PROPERTYNAME_REDUCEDGRADIENTMODE,
PROPERTYNAME_REDUCEDGRADIENTSTEPCOUNT,
PROPERTYNAME_REDUCEBITMAPS,
PROPERTYNAME_REDUCEDBITMAPMODE,
PROPERTYNAME_REDUCEDBITMAPRESOLUTION,
PROPERTYNAME_REDUCEDBITMAPINCLUDESTRANSPARENCY,
PROPERTYNAME_CONVERTTOGREYSCALES
};
// Initialize return sequence with these list ...
static const Sequence< OUString > seqPropertyNames( pProperties, PROPERTYCOUNT );
return seqPropertyNames;
}
// -----------------------
// - SvtBasePrintOptions -
// -----------------------
SvtBasePrintOptions::SvtBasePrintOptions()
{
}
// -----------------------------------------------------------------------------
SvtBasePrintOptions::~SvtBasePrintOptions()
{
}
// -----------------------------------------------------------------------------
Mutex& SvtBasePrintOptions::GetOwnStaticMutex()
{
// Initialize static mutex only for one time!
static Mutex* pMutex = NULL;
// If these method first called (Mutex not already exist!) ...
if( pMutex == NULL )
{
// ... we must create a new one. Protect follow code with the global mutex -
// It must be - we create a static variable!
MutexGuard aGuard( Mutex::getGlobalMutex() );
// We must check our pointer again - because it can be that another instance of ouer class will be fastr then these!
if( pMutex == NULL )
{
// Create the new mutex and set it for return on static variable.
static Mutex aMutex;
pMutex = &aMutex;
}
}
// Return new created or already existing mutex object.
return *pMutex;
}
// -----------------------------------------------------------------------------
sal_Bool SvtBasePrintOptions::IsReduceTransparency() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->IsReduceTransparency();
}
// -----------------------------------------------------------------------------
sal_Int16 SvtBasePrintOptions::GetReducedTransparencyMode() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->GetReducedTransparencyMode();
}
// -----------------------------------------------------------------------------
sal_Bool SvtBasePrintOptions::IsReduceGradients() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->IsReduceGradients();
}
// -----------------------------------------------------------------------------
sal_Int16 SvtBasePrintOptions::GetReducedGradientMode() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->GetReducedGradientMode();
}
// -----------------------------------------------------------------------------
sal_Int16 SvtBasePrintOptions::GetReducedGradientStepCount() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->GetReducedGradientStepCount();
}
// -----------------------------------------------------------------------------
sal_Bool SvtBasePrintOptions::IsReduceBitmaps() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->IsReduceBitmaps();
}
// -----------------------------------------------------------------------------
sal_Int16 SvtBasePrintOptions::GetReducedBitmapMode() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->GetReducedBitmapMode();
}
// -----------------------------------------------------------------------------
sal_Int16 SvtBasePrintOptions::GetReducedBitmapResolution() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->GetReducedBitmapResolution();
}
// -----------------------------------------------------------------------------
sal_Bool SvtBasePrintOptions::IsReducedBitmapIncludesTransparency() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->IsReducedBitmapIncludesTransparency();
}
// -----------------------------------------------------------------------------
sal_Bool SvtBasePrintOptions::IsConvertToGreyscales() const
{
MutexGuard aGuard( GetOwnStaticMutex() );
return m_pDataContainer->IsConvertToGreyscales();
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReduceTransparency( sal_Bool bState )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReduceTransparency( bState ) ;
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReducedTransparencyMode( sal_Int16 nMode )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReducedTransparencyMode( nMode );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReduceGradients( sal_Bool bState )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReduceGradients( bState );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReducedGradientMode( sal_Int16 nMode )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReducedGradientMode( nMode );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReducedGradientStepCount( sal_Int16 nStepCount )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReducedGradientStepCount( nStepCount );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReduceBitmaps( sal_Bool bState )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReduceBitmaps( bState );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReducedBitmapMode( sal_Int16 nMode )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReducedBitmapMode( nMode );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReducedBitmapResolution( sal_Int16 nResolution )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReducedBitmapResolution( nResolution );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetReducedBitmapIncludesTransparency( sal_Bool bState )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetReducedBitmapIncludesTransparency( bState );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetConvertToGreyscales( sal_Bool bState )
{
MutexGuard aGuard( GetOwnStaticMutex() );
m_pDataContainer->SetConvertToGreyscales( bState );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::GetPrinterOptions( PrinterOptions& rOptions ) const
{
rOptions.SetReduceTransparency( IsReduceTransparency() );
rOptions.SetReducedTransparencyMode( (PrinterTransparencyMode) GetReducedTransparencyMode() );
rOptions.SetReduceGradients( IsReduceGradients() );
rOptions.SetReducedGradientMode( (PrinterGradientMode) GetReducedGradientMode() );
rOptions.SetReducedGradientStepCount( GetReducedGradientStepCount() );
rOptions.SetReduceBitmaps( IsReduceBitmaps() );
rOptions.SetReducedBitmapMode( (PrinterBitmapMode) GetReducedBitmapMode() );
rOptions.SetReducedBitmapResolution( aDPIArray[ Min( (USHORT) GetReducedBitmapResolution(), (USHORT)( DPI_COUNT - 1 ) ) ] );
rOptions.SetReducedBitmapIncludesTransparency( IsReducedBitmapIncludesTransparency() );
rOptions.SetConvertToGreyscales( IsConvertToGreyscales() );
}
// -----------------------------------------------------------------------------
void SvtBasePrintOptions::SetPrinterOptions( const PrinterOptions& rOptions )
{
SetReduceTransparency( rOptions.IsReduceTransparency() );
SetReducedTransparencyMode(
sal::static_int_cast< sal_Int16 >(
rOptions.GetReducedTransparencyMode()) );
SetReduceGradients( rOptions.IsReduceGradients() );
SetReducedGradientMode(
sal::static_int_cast< sal_Int16 >(rOptions.GetReducedGradientMode()) );
SetReducedGradientStepCount( rOptions.GetReducedGradientStepCount() );
SetReduceBitmaps( rOptions.IsReduceBitmaps() );
SetReducedBitmapMode(
sal::static_int_cast< sal_Int16 >(rOptions.GetReducedBitmapMode()) );
SetReducedBitmapIncludesTransparency( rOptions.IsReducedBitmapIncludesTransparency() );
SetConvertToGreyscales( rOptions.IsConvertToGreyscales() );
const USHORT nDPI = rOptions.GetReducedBitmapResolution();
if( nDPI < aDPIArray[ 0 ] )
SetReducedBitmapResolution( 0 );
else
{
for( long i = ( DPI_COUNT - 1 ); i >= 0; i-- )
{
if( nDPI >= aDPIArray[ i ] )
{
SetReducedBitmapResolution( (sal_Int16) i );
i = -1;
}
}
}
}
// ---------------------
// - SvtPrinterOptions -
// ---------------------
SvtPrinterOptions::SvtPrinterOptions()
{
// Global access, must be guarded (multithreading!).
MutexGuard aGuard( GetOwnStaticMutex() );
// Increase ouer refcount ...
++m_nRefCount;
// ... and initialize ouer data container only if it not already!
if( m_pStaticDataContainer == NULL )
{
OUString aRootPath( ROOTNODE_START );
m_pStaticDataContainer = new SvtPrintOptions_Impl( aRootPath += OUString( RTL_CONSTASCII_USTRINGPARAM( "/Printer" ) ) );
pPrinterOptionsDataContainer = m_pStaticDataContainer;
ItemHolder2::holdConfigItem(E_PRINTOPTIONS);
}
SetDataContainer( m_pStaticDataContainer );
}
// -----------------------------------------------------------------------------
SvtPrinterOptions::~SvtPrinterOptions()
{
// Global access, must be guarded (multithreading!)
MutexGuard aGuard( GetOwnStaticMutex() );
// Decrease ouer refcount.
--m_nRefCount;
// If last instance was deleted ...
// we must destroy ouer static data container!
if( m_nRefCount <= 0 )
{
delete m_pStaticDataContainer;
m_pStaticDataContainer = NULL;
pPrinterOptionsDataContainer = NULL;
}
}
// ---------------------
// - SvtPrintFileOptions -
// ---------------------
SvtPrintFileOptions::SvtPrintFileOptions()
{
// Global access, must be guarded (multithreading!).
MutexGuard aGuard( GetOwnStaticMutex() );
// Increase ouer refcount ...
++m_nRefCount;
// ... and initialize ouer data container only if it not already!
if( m_pStaticDataContainer == NULL )
{
OUString aRootPath( ROOTNODE_START );
m_pStaticDataContainer = new SvtPrintOptions_Impl( aRootPath += OUString( RTL_CONSTASCII_USTRINGPARAM( "/File" ) ) );
pPrintFileOptionsDataContainer = m_pStaticDataContainer;
ItemHolder2::holdConfigItem(E_PRINTFILEOPTIONS);
}
SetDataContainer( m_pStaticDataContainer );
}
// -----------------------------------------------------------------------------
SvtPrintFileOptions::~SvtPrintFileOptions()
{
// Global access, must be guarded (multithreading!)
MutexGuard aGuard( GetOwnStaticMutex() );
// Decrease ouer refcount.
--m_nRefCount;
// If last instance was deleted ...
// we must destroy ouer static data container!
if( m_nRefCount <= 0 )
{
delete m_pStaticDataContainer;
m_pStaticDataContainer = NULL;
pPrintFileOptionsDataContainer = NULL;
}
}
|