2008-10-01 18:22:22 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* $RCSfile: printdlg.cxx,v $
|
|
|
|
* $Revision: 1.1.2.7 $
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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).
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "precompiled_vcl.hxx"
|
|
|
|
|
|
|
|
#include "vcl/print.hxx"
|
|
|
|
#include "vcl/prndlg.hxx"
|
|
|
|
#include "vcl/dialog.hxx"
|
|
|
|
#include "vcl/button.hxx"
|
|
|
|
#include "vcl/svdata.hxx"
|
|
|
|
#include "vcl/svids.hrc"
|
|
|
|
#include "vcl/wall.hxx"
|
|
|
|
#include "vcl/jobset.h"
|
2009-03-18 14:46:10 +00:00
|
|
|
#include "vcl/status.hxx"
|
2009-03-18 16:16:06 +00:00
|
|
|
#include "vcl/decoview.hxx"
|
2009-05-22 10:06:06 +00:00
|
|
|
#include "vcl/arrange.hxx"
|
2009-06-02 11:37:36 +00:00
|
|
|
#include "vcl/configsettings.hxx"
|
2009-06-03 18:51:46 +00:00
|
|
|
#include "vcl/help.hxx"
|
2009-06-08 12:43:56 +00:00
|
|
|
#include "vcl/decoview.hxx"
|
2008-10-01 18:22:22 +00:00
|
|
|
|
2009-06-10 12:10:29 +00:00
|
|
|
#include "unotools/localedatawrapper.hxx"
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
#include "rtl/ustrbuf.hxx"
|
|
|
|
|
2008-10-30 14:31:29 +00:00
|
|
|
#include "com/sun/star/awt/Size.hpp"
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
using namespace vcl;
|
2008-10-30 14:31:29 +00:00
|
|
|
using namespace com::sun::star;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::beans;
|
2008-10-01 18:22:22 +00:00
|
|
|
|
2009-04-27 09:47:17 +00:00
|
|
|
#define HELPID_PREFIX ".HelpId:vcl:PrintDialog"
|
|
|
|
#define SMHID2( a, b ) SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( HELPID_PREFIX ":" a ":" b ) ) ) )
|
|
|
|
#define SMHID1( a ) SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( HELPID_PREFIX ":" a ) ) ) )
|
2009-04-24 15:39:41 +00:00
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
void PrintDialog::PrinterListBox::RequestHelp( const HelpEvent& i_rHEvt )
|
|
|
|
{
|
|
|
|
if( i_rHEvt.GetMode() & HELPMODE_QUICK )
|
|
|
|
Help::ShowBalloon( this, i_rHEvt.GetMousePosPixel(), GetHelpText() );
|
|
|
|
else
|
|
|
|
ListBox::RequestHelp( i_rHEvt );
|
|
|
|
}
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
PrintDialog::PrintPreviewWindow::PrintPreviewWindow( Window* i_pParent, const ResId& i_rId )
|
2009-04-24 09:43:48 +00:00
|
|
|
: Window( i_pParent, i_rId ),
|
|
|
|
mfScaleX( 1 ),
|
|
|
|
mfScaleY( 1 )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintDialog::PrintPreviewWindow::~PrintPreviewWindow()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::PrintPreviewWindow::Paint( const Rectangle& i_rRect )
|
|
|
|
{
|
|
|
|
Window::Paint( i_rRect );
|
|
|
|
|
2009-04-24 09:43:48 +00:00
|
|
|
GDIMetaFile aMtf( maMtf );
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
SetFillColor( Color( COL_WHITE ) );
|
|
|
|
SetLineColor();
|
|
|
|
DrawRect( Rectangle( Point( 0, 0 ), GetSizePixel() ));
|
|
|
|
Push();
|
|
|
|
SetMapMode( MAP_100TH_MM );
|
2009-04-24 09:43:48 +00:00
|
|
|
aMtf.WindStart();
|
|
|
|
aMtf.Scale( mfScaleX, mfScaleY );
|
|
|
|
aMtf.WindStart();
|
|
|
|
aMtf.Play( this, Point( 0, 0 ), PixelToLogic( GetSizePixel() ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
Pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::PrintPreviewWindow::setPreview( const GDIMetaFile& i_rNewPreview )
|
|
|
|
{
|
|
|
|
maMtf = i_rNewPreview;
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
2009-04-24 09:43:48 +00:00
|
|
|
void PrintDialog::PrintPreviewWindow::setScale( double fScaleX, double fScaleY )
|
|
|
|
{
|
|
|
|
mfScaleX = fScaleX;
|
|
|
|
mfScaleY = fScaleY;
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
PrintDialog::NUpTabPage::NUpTabPage( Window* i_pParent, const ResId& rResId )
|
2008-10-01 18:22:22 +00:00
|
|
|
: TabPage( i_pParent, rResId )
|
2009-03-28 08:52:14 +00:00
|
|
|
, maNupLine( this, VclResId( SV_PRINT_PRT_NUP ) )
|
|
|
|
, maNupRowsTxt( this, VclResId( SV_PRINT_PRT_NUP_ROWS_TXT ) )
|
|
|
|
, maNupRowsEdt( this, VclResId( SV_PRINT_PRT_NUP_ROWS_EDT ) )
|
|
|
|
, maNupColTxt( this, VclResId( SV_PRINT_PRT_NUP_COLUMNS_TXT ) )
|
|
|
|
, maNupColEdt( this, VclResId( SV_PRINT_PRT_NUP_COLUMNS_EDT ) )
|
2009-06-10 13:22:04 +00:00
|
|
|
, maNupRepTxt( this, VclResId( SV_PRINT_PRT_NUP_PAGEREPEAT_TXT ) )
|
|
|
|
, maNupRepEdt( this, VclResId( SV_PRINT_PRT_NUP_PAGEREPEAT_EDT ) )
|
2009-06-09 18:58:38 +00:00
|
|
|
, maBorderCB( this, VclResId( SV_PRINT_PRT_NUP_BORDER_CB ) )
|
2009-03-28 08:52:14 +00:00
|
|
|
, maNupPortrait( this, VclResId( SV_PRINT_PRT_NUP_PORTRAIT ) )
|
|
|
|
, maNupLandscape( this, VclResId( SV_PRINT_PRT_NUP_LANDSCAPE ) )
|
2009-06-09 18:58:38 +00:00
|
|
|
, maMargins( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_FL ) )
|
|
|
|
, maLeftMarginTxt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_LEFT_TXT ) )
|
|
|
|
, maLeftMarginEdt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_LEFT_EDT) )
|
|
|
|
, maRightMarginTxt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_RIGHT_TXT ) )
|
|
|
|
, maRightMarginEdt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_RIGHT_EDT ) )
|
|
|
|
, maTopMarginTxt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_TOP_TXT ) )
|
|
|
|
, maTopMarginEdt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_TOP_EDT ) )
|
|
|
|
, maBottomMarginTxt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_BOTTOM_TXT ) )
|
|
|
|
, maBottomMarginEdt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_BOTTOM_EDT ) )
|
|
|
|
, maHSpaceTxt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_HSPACE_TXT ) )
|
|
|
|
, maHSpaceEdt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_HSPACE_EDT ) )
|
|
|
|
, maVSpaceTxt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_VSPACE_TXT ) )
|
|
|
|
, maVSpaceEdt( this, VclResId( SV_PRINT_PRT_NUP_MARGINS_VSPACE_EDT ) )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
|
|
|
FreeResource();
|
2009-06-10 12:10:29 +00:00
|
|
|
|
|
|
|
// setup field units for metric fields
|
|
|
|
const LocaleDataWrapper& rLocWrap( maLeftMarginEdt.GetLocaleDataWrapper() );
|
|
|
|
FieldUnit eUnit = FUNIT_MM;
|
|
|
|
USHORT nDigits = 0;
|
|
|
|
if( rLocWrap.getMeasurementSystemEnum() == MEASURE_US )
|
|
|
|
{
|
|
|
|
eUnit = FUNIT_INCH;
|
|
|
|
nDigits = 2;
|
|
|
|
}
|
|
|
|
// set units
|
|
|
|
maLeftMarginEdt.SetUnit( eUnit );
|
|
|
|
maTopMarginEdt.SetUnit( eUnit );
|
|
|
|
maRightMarginEdt.SetUnit( eUnit );
|
|
|
|
maBottomMarginEdt.SetUnit( eUnit );
|
|
|
|
maHSpaceEdt.SetUnit( eUnit );
|
|
|
|
maVSpaceEdt.SetUnit( eUnit );
|
|
|
|
|
|
|
|
// set precision
|
|
|
|
maLeftMarginEdt.SetDecimalDigits( nDigits );
|
|
|
|
maTopMarginEdt.SetDecimalDigits( nDigits );
|
|
|
|
maRightMarginEdt.SetDecimalDigits( nDigits );
|
|
|
|
maBottomMarginEdt.SetDecimalDigits( nDigits );
|
|
|
|
maHSpaceEdt.SetDecimalDigits( nDigits );
|
|
|
|
maVSpaceEdt.SetDecimalDigits( nDigits );
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
maNupLine.SMHID2( "NUpPage", "NUPline" );
|
|
|
|
maNupRowsTxt.SMHID2( "NUpPage", "NUPRowsText" );
|
|
|
|
maNupRowsEdt.SMHID2( "NUpPage", "NUPRows" );
|
|
|
|
maNupColTxt.SMHID2( "NUpPage", "NUPColumnsText" );
|
|
|
|
maNupColEdt.SMHID2( "NUpPage", "NUPColumns" );
|
2009-06-10 13:22:04 +00:00
|
|
|
maNupRepTxt.SMHID2( "NUpPage", "NUPRepeatText" );
|
|
|
|
maNupRepEdt.SMHID2( "NUpPage", "NUPRepeat" );
|
2009-06-03 18:51:46 +00:00
|
|
|
maNupPortrait.SMHID2( "NUpPage", "NUPPortrait" );
|
|
|
|
maNupLandscape.SMHID2( "NUpPage", "NUPLandscape" );
|
2009-06-09 18:58:38 +00:00
|
|
|
maBorderCB.SMHID2( "NUpPage", "NUPBorder" );
|
|
|
|
maMargins.SMHID2( "NUpPage", "NUPMargins" );
|
|
|
|
maLeftMarginTxt.SMHID2( "NUpPage", "NUPLeftText" );
|
|
|
|
maLeftMarginEdt.SMHID2( "NUpPage", "NUPLeft" );
|
|
|
|
maTopMarginTxt.SMHID2( "NUpPage", "NUPTopText" );
|
|
|
|
maTopMarginEdt.SMHID2( "NUpPage", "NUPTop" );
|
|
|
|
maRightMarginTxt.SMHID2( "NUpPage", "NUPRightText" );
|
|
|
|
maRightMarginEdt.SMHID2( "NUpPage", "NUPRight" );
|
|
|
|
maBottomMarginTxt.SMHID2( "NUpPage", "NUPBottomText" );
|
|
|
|
maBottomMarginEdt.SMHID2( "NUpPage", "NUPBottom" );
|
|
|
|
maHSpaceTxt.SMHID2( "NUpPage", "NUPHSpaceText" );
|
|
|
|
maHSpaceEdt.SMHID2( "NUpPage", "NUPHSpace" );
|
|
|
|
maVSpaceTxt.SMHID2( "NUpPage", "NUPVSpaceText" );
|
|
|
|
maVSpaceEdt.SMHID2( "NUpPage", "NUPVSpace" );
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
PrintDialog::NUpTabPage::~NUpTabPage()
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-06-18 18:26:15 +00:00
|
|
|
void PrintDialog::NUpTabPage::Resize()
|
|
|
|
{
|
|
|
|
Size aBorder( LogicToPixel( Size( 5, 5 ), MapMode( MAP_APPFONT ) ) );
|
|
|
|
|
|
|
|
boost::shared_ptr<vcl::RowOrColumn> aPage( new vcl::RowOrColumn() );
|
|
|
|
aPage->setParentWindow( this );
|
|
|
|
aPage->setOuterBorder( aBorder.Width() );
|
|
|
|
aPage->addWindow( &maNupLine );
|
|
|
|
|
|
|
|
boost::shared_ptr<vcl::Indenter> aNupIndent( new vcl::Indenter( aPage.get(), aBorder.Width() ) );
|
|
|
|
aPage->addChild( aNupIndent );
|
|
|
|
boost::shared_ptr<vcl::RowOrColumn> aNupColumn( new vcl::RowOrColumn( aNupIndent.get() ) );
|
|
|
|
aNupIndent->setChild( aNupColumn );
|
|
|
|
|
|
|
|
boost::shared_ptr<vcl::RowOrColumn> aNupRow( new vcl::RowOrColumn( aNupColumn.get(), false ) );
|
|
|
|
aNupColumn->addChild( aNupRow );
|
|
|
|
boost::shared_ptr<vcl::MatrixArranger> aNupMat( new vcl::MatrixArranger( aNupRow.get(), aBorder.Width(), aBorder.Height() ) );
|
|
|
|
aNupRow->addChild( aNupMat );
|
|
|
|
aNupMat->addWindow( &maNupRowsTxt, 0, 0 );
|
|
|
|
aNupMat->addWindow( &maNupRowsEdt, 1, 0 );
|
|
|
|
aNupMat->addWindow( &maNupColTxt, 0, 1 );
|
|
|
|
aNupMat->addWindow( &maNupColEdt, 1, 1 );
|
|
|
|
aNupMat->addWindow( &maNupRepTxt, 0, 2 );
|
|
|
|
aNupMat->addWindow( &maNupRepEdt, 1, 2 );
|
|
|
|
boost::shared_ptr<vcl::RowOrColumn> aOriCol( new vcl::RowOrColumn( aNupRow.get() ) );
|
|
|
|
aNupRow->addChild( aOriCol );
|
|
|
|
aOriCol->addWindow( &maNupPortrait );
|
|
|
|
aOriCol->addWindow( &maNupLandscape );
|
|
|
|
|
|
|
|
aNupColumn->addWindow( &maBorderCB );
|
|
|
|
|
|
|
|
aPage->addWindow( &maMargins );
|
|
|
|
|
|
|
|
boost::shared_ptr<vcl::Indenter> aMargIndent( new vcl::Indenter( aPage.get(), aBorder.Width() ) );
|
|
|
|
aPage->addChild( aMargIndent );
|
|
|
|
boost::shared_ptr<vcl::RowOrColumn> aMargColumn( new vcl::RowOrColumn( aMargIndent.get(), true, 2*aBorder.Height() ) );
|
|
|
|
aMargIndent->setChild( aMargColumn );
|
|
|
|
|
|
|
|
boost::shared_ptr<vcl::MatrixArranger> aMargMat( new vcl::MatrixArranger( aMargIndent.get(), aBorder.Width(), aBorder.Height() ) );
|
|
|
|
aMargColumn->addChild( aMargMat );
|
|
|
|
aMargMat->addWindow( &maLeftMarginTxt, 0, 0 );
|
|
|
|
aMargMat->addWindow( &maLeftMarginEdt, 1, 0 );
|
|
|
|
aMargMat->addWindow( &maRightMarginTxt, 3, 0 );
|
|
|
|
aMargMat->addWindow( &maRightMarginEdt, 4, 0 );
|
|
|
|
aMargMat->addWindow( &maTopMarginTxt, 0, 1 );
|
|
|
|
aMargMat->addWindow( &maTopMarginEdt, 1, 1 );
|
|
|
|
aMargMat->addWindow( &maBottomMarginTxt, 3, 1 );
|
|
|
|
aMargMat->addWindow( &maBottomMarginEdt, 4, 1 );
|
|
|
|
|
|
|
|
boost::shared_ptr<vcl::MatrixArranger> aSpacingMat( new vcl::MatrixArranger( aPage.get(), aBorder.Width(), aBorder.Height() ) );
|
|
|
|
aMargColumn->addChild( aSpacingMat );
|
|
|
|
aSpacingMat->addWindow( &maHSpaceTxt, 0, 0 );
|
|
|
|
aSpacingMat->addWindow( &maHSpaceEdt, 1, 0 );
|
|
|
|
aSpacingMat->addWindow( &maVSpaceTxt, 0, 1 );
|
|
|
|
aSpacingMat->addWindow( &maVSpaceEdt, 1, 1 );
|
|
|
|
|
|
|
|
aPage->setManagedArea( Rectangle( Point(), GetOutputSizePixel() ) );
|
|
|
|
}
|
|
|
|
|
2009-06-09 18:58:38 +00:00
|
|
|
void PrintDialog::NUpTabPage::initFromMultiPageSetup( const vcl::PrinterListener::MultiPageSetup& i_rMPS )
|
|
|
|
{
|
2009-06-10 12:10:29 +00:00
|
|
|
maLeftMarginEdt.SetValue( maLeftMarginEdt.Normalize( i_rMPS.nLeftMargin ), FUNIT_100TH_MM );
|
|
|
|
maTopMarginEdt.SetValue( maTopMarginEdt.Normalize( i_rMPS.nTopMargin ), FUNIT_100TH_MM );
|
|
|
|
maRightMarginEdt.SetValue( maRightMarginEdt.Normalize( i_rMPS.nRightMargin ), FUNIT_100TH_MM );
|
|
|
|
maBottomMarginEdt.SetValue( maBottomMarginEdt.Normalize( i_rMPS.nBottomMargin ), FUNIT_100TH_MM );
|
|
|
|
maHSpaceEdt.SetValue( maHSpaceEdt.Normalize( i_rMPS.nHorizontalSpacing ), FUNIT_100TH_MM );
|
|
|
|
maVSpaceEdt.SetValue( maVSpaceEdt.Normalize( i_rMPS.nVerticalSpacing ), FUNIT_100TH_MM );
|
2009-06-09 18:58:38 +00:00
|
|
|
maBorderCB.Check( i_rMPS.bDrawBorder );
|
|
|
|
maNupRowsEdt.SetValue( i_rMPS.nRows );
|
|
|
|
maNupColEdt.SetValue( i_rMPS.nColumns );
|
2009-06-10 13:22:04 +00:00
|
|
|
maNupRepEdt.SetValue( i_rMPS.nRepeat );
|
2009-06-09 18:58:38 +00:00
|
|
|
}
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
void PrintDialog::NUpTabPage::readFromSettings()
|
2009-06-02 11:37:36 +00:00
|
|
|
{
|
2009-06-09 18:58:38 +00:00
|
|
|
#if 0
|
2009-06-02 11:37:36 +00:00
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
|
|
|
rtl::OUString aValue;
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_NUpPage" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NUp-Rows" ) ) );
|
|
|
|
sal_Int32 nVal = aValue.toInt32();
|
|
|
|
maNupRowsEdt.SetValue( sal_Int64( nVal > 1 ? nVal : 1) );
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_NUpPage" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NUp-Columns" ) ) );
|
|
|
|
nVal = aValue.toInt32();
|
|
|
|
maNupColEdt.SetValue( sal_Int64(nVal > 1 ? nVal : 1) );
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_NUpPage" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NUp-Portrait" ) ) );
|
|
|
|
if( aValue.equalsIgnoreAsciiCaseAscii( "true" ) )
|
|
|
|
maNupPortrait.Check();
|
|
|
|
else
|
|
|
|
maNupLandscape.Check();
|
2009-06-09 18:58:38 +00:00
|
|
|
#endif
|
2009-06-02 11:37:36 +00:00
|
|
|
}
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
void PrintDialog::NUpTabPage::storeToSettings()
|
2009-06-02 11:37:36 +00:00
|
|
|
{
|
2009-06-09 18:58:38 +00:00
|
|
|
#if 0
|
2009-06-02 11:37:36 +00:00
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
2009-06-03 18:51:46 +00:00
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_NUpPage" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NUp-Rows" ) ),
|
|
|
|
maNupRowsEdt.GetText() );
|
2009-06-03 18:51:46 +00:00
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_NUpPage" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NUp-Columns" ) ),
|
|
|
|
maNupColEdt.GetText() );
|
2009-06-03 18:51:46 +00:00
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_NUpPage" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "NUp-Portrait" ) ),
|
|
|
|
rtl::OUString::createFromAscii( maNupPortrait.IsChecked() ? "true" : "false" ) );
|
2009-06-09 18:58:38 +00:00
|
|
|
#endif
|
2009-06-02 11:37:36 +00:00
|
|
|
}
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
PrintDialog::JobTabPage::JobTabPage( Window* i_pParent, const ResId& rResId )
|
|
|
|
: TabPage( i_pParent, rResId )
|
2009-03-16 18:11:54 +00:00
|
|
|
, maPrinters( this, VclResId( SV_PRINT_PRINTERS) )
|
2009-06-03 18:51:46 +00:00
|
|
|
, maSetupButton( this, VclResId( SV_PRINT_PRT_SETUP ) )
|
2009-03-16 18:11:54 +00:00
|
|
|
, maToFileBox( this, VclResId( SV_PRINT_PRT_TOFILE ) )
|
2008-10-01 18:22:22 +00:00
|
|
|
, maCopies( this, VclResId( SV_PRINT_COPIES ) )
|
|
|
|
, maCopyCount( this, VclResId( SV_PRINT_COPYCOUNT ) )
|
|
|
|
, maCopyCountField( this, VclResId( SV_PRINT_COPYCOUNT_FIELD ) )
|
|
|
|
, maCollateBox( this, VclResId( SV_PRINT_COLLATE ) )
|
|
|
|
, maCollateImage( this, VclResId( SV_PRINT_COLLATE_IMAGE ) )
|
|
|
|
, maCollateImg( VclResId( SV_PRINT_COLLATE_IMG ) )
|
|
|
|
, maCollateHCImg( VclResId( SV_PRINT_COLLATE_HC_IMG ) )
|
|
|
|
, maNoCollateImg( VclResId( SV_PRINT_NOCOLLATE_IMG ) )
|
|
|
|
, maNoCollateHCImg( VclResId( SV_PRINT_NOCOLLATE_HC_IMG ) )
|
|
|
|
{
|
|
|
|
FreeResource();
|
2009-04-27 09:47:17 +00:00
|
|
|
maPrinters.SMHID2( "JobPage", "PrinterList" );
|
2009-06-03 18:51:46 +00:00
|
|
|
maSetupButton.SMHID2( "JobPage", "Setup" );
|
2009-04-27 09:47:17 +00:00
|
|
|
maToFileBox.SMHID2( "JobPage", "ToFile" );
|
|
|
|
maCopies.SMHID2( "JobPage", "CopiesLine" );
|
|
|
|
maCopyCount.SMHID2( "JobPage", "CopiesText" );
|
|
|
|
maCopyCountField.SMHID2( "JobPage", "Copies" );
|
|
|
|
maCollateBox.SMHID2( "JobPage", "Collate" );
|
|
|
|
maCollateImage.SMHID2( "JobPage", "CollateImage" );
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PrintDialog::JobTabPage::~JobTabPage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-06-02 11:37:36 +00:00
|
|
|
void PrintDialog::JobTabPage::readFromSettings()
|
|
|
|
{
|
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
|
|
|
rtl::OUString aValue;
|
|
|
|
|
|
|
|
aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_JobPage" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ToFile" ) ) );
|
|
|
|
maToFileBox.Check( aValue.equalsIgnoreAsciiCaseAscii( "true" ) );
|
|
|
|
|
2009-06-09 18:58:38 +00:00
|
|
|
#if 0
|
|
|
|
// do not actually make copy count persistent
|
|
|
|
// the assumption is that this would lead to a lot of unwanted copies
|
2009-06-02 11:37:36 +00:00
|
|
|
aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_JobPage" ) ),
|
2009-06-24 17:37:07 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "CopyCount" ) ) );
|
2009-06-02 11:37:36 +00:00
|
|
|
sal_Int32 nVal = aValue.toInt32();
|
|
|
|
maCopyCountField.SetValue( sal_Int64(nVal > 1 ? nVal : 1) );
|
2009-06-09 18:58:38 +00:00
|
|
|
#endif
|
2009-06-02 11:37:36 +00:00
|
|
|
|
|
|
|
aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_JobPage" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Collate" ) ) );
|
|
|
|
maCollateBox.Check( aValue.equalsIgnoreAsciiCaseAscii( "true" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::JobTabPage::storeToSettings()
|
|
|
|
{
|
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_JobPage" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ToFile" ) ),
|
|
|
|
rtl::OUString::createFromAscii( maToFileBox.IsChecked() ? "true" : "false" ) );
|
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_JobPage" ) ),
|
2009-06-24 17:37:07 +00:00
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "CopyCount" ) ),
|
2009-06-02 11:37:36 +00:00
|
|
|
maCopyCountField.GetText() );
|
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog_JobPage" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Collate" ) ),
|
|
|
|
rtl::OUString::createFromAscii( maCollateBox.IsChecked() ? "true" : "false" ) );
|
|
|
|
}
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
PrintDialog::PrintDialog( Window* i_pParent, const boost::shared_ptr<PrinterListener>& i_rListener )
|
|
|
|
: ModalDialog( i_pParent, VclResId( SV_DLG_PRINT ) )
|
|
|
|
, maOKButton( this, VclResId( SV_PRINT_OK ) )
|
|
|
|
, maCancelButton( this, VclResId( SV_PRINT_CANCEL ) )
|
|
|
|
, maPreviewWindow( this, VclResId( SV_PRINT_PAGE_PREVIEW ) )
|
2009-06-03 18:51:46 +00:00
|
|
|
, maPageEdit( this, VclResId( SV_PRINT_PAGE_EDIT ) )
|
|
|
|
, maNumPagesText( this, VclResId( SV_PRINT_PAGE_TXT ) )
|
|
|
|
, maForwardBtn( this, VclResId( SV_PRINT_PAGE_FORWARD ) )
|
|
|
|
, maBackwardBtn( this, VclResId( SV_PRINT_PAGE_BACKWARD ) )
|
2008-10-01 18:22:22 +00:00
|
|
|
, maTabCtrl( this, VclResId( SV_PRINT_TABCTRL ) )
|
2009-06-03 18:51:46 +00:00
|
|
|
, maNUpPage( &maTabCtrl, VclResId( SV_PRINT_TAB_NUP ) )
|
2008-10-01 18:22:22 +00:00
|
|
|
, maJobPage( &maTabCtrl, VclResId( SV_PRINT_TAB_JOB ) )
|
|
|
|
, maButtonLine( this, VclResId( SV_PRINT_BUTTONLINE ) )
|
|
|
|
, maPListener( i_rListener )
|
2009-03-26 18:00:43 +00:00
|
|
|
, maNoPageStr( String( VclResId( SV_PRINT_NOPAGES ) ) )
|
2008-10-01 18:22:22 +00:00
|
|
|
, mnCurPage( 0 )
|
|
|
|
, mnCachedPages( 0 )
|
2009-06-03 18:51:46 +00:00
|
|
|
, maCommentText( String( VclResId( SV_PRINT_PRT_COMMENT ) ) )
|
|
|
|
, maStatusText( String( VclResId( SV_PRINT_PRT_STATUS ) ) )
|
|
|
|
, maLocationText( String( VclResId( SV_PRINT_PRT_LOCATION ) ) )
|
|
|
|
, maTypeText( String( VclResId( SV_PRINT_PRT_TYPE ) ) )
|
2009-06-05 15:01:27 +00:00
|
|
|
, maPreviewCtrlRow( NULL, false )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
|
|
|
FreeResource();
|
|
|
|
|
2009-06-05 15:01:27 +00:00
|
|
|
// setup preview controls
|
|
|
|
maForwardBtn.SetStyle( maForwardBtn.GetStyle() | WB_BEVELBUTTON );
|
|
|
|
maBackwardBtn.SetStyle( maBackwardBtn.GetStyle() | WB_BEVELBUTTON );
|
|
|
|
maPreviewCtrlRow.setParentWindow( this );
|
|
|
|
maPreviewCtrlRow.addWindow( &maPageEdit );
|
|
|
|
maPreviewCtrlRow.addWindow( &maNumPagesText );
|
|
|
|
maPreviewCtrlRow.addChild( new vcl::Spacer( &maPreviewCtrlRow ) );
|
|
|
|
maPreviewCtrlRow.addWindow( &maBackwardBtn );
|
|
|
|
maPreviewCtrlRow.addWindow( &maForwardBtn );
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
// insert the tab pages
|
|
|
|
maTabCtrl.InsertPage( SV_PRINT_TAB_JOB, maJobPage.GetText() );
|
|
|
|
maTabCtrl.SetTabPage( SV_PRINT_TAB_JOB, &maJobPage );
|
2009-06-03 18:51:46 +00:00
|
|
|
maTabCtrl.InsertPage( SV_PRINT_PAGE_PREVIEW, maNUpPage.GetText() );
|
|
|
|
maTabCtrl.SetTabPage( SV_PRINT_PAGE_PREVIEW, &maNUpPage );
|
|
|
|
|
|
|
|
// set symbols on forward and backward button
|
|
|
|
maBackwardBtn.SetSymbol( SYMBOL_PREV );
|
|
|
|
maForwardBtn.SetSymbol( SYMBOL_NEXT );
|
|
|
|
maBackwardBtn.ImplSetSmallSymbol( TRUE );
|
|
|
|
maForwardBtn.ImplSetSmallSymbol( TRUE );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
maPageStr = maNumPagesText.GetText();
|
2008-10-01 18:22:22 +00:00
|
|
|
// save space for the preview window
|
|
|
|
maPreviewSpace = Rectangle( maPreviewWindow.GetPosPixel(), maPreviewWindow.GetSizePixel() );
|
|
|
|
// get the first page
|
2009-06-10 17:21:10 +00:00
|
|
|
preparePreview( true, true );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
|
|
|
// fill printer listbox
|
|
|
|
const std::vector< rtl::OUString >& rQueues( Printer::GetPrinterQueues() );
|
|
|
|
for( std::vector< rtl::OUString >::const_iterator it = rQueues.begin();
|
|
|
|
it != rQueues.end(); ++it )
|
|
|
|
{
|
2009-03-16 18:11:54 +00:00
|
|
|
maJobPage.maPrinters.InsertEntry( *it );
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
// select current printer
|
2009-06-03 18:51:46 +00:00
|
|
|
if( maJobPage.maPrinters.GetEntryPos( maPListener->getPrinter()->GetName() ) != LISTBOX_ENTRY_NOTFOUND )
|
2009-03-16 18:11:54 +00:00
|
|
|
{
|
|
|
|
maJobPage.maPrinters.SelectEntry( maPListener->getPrinter()->GetName() );
|
|
|
|
}
|
2008-10-01 18:22:22 +00:00
|
|
|
else
|
|
|
|
{
|
2009-06-02 11:37:36 +00:00
|
|
|
// fall back to last printer
|
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
|
|
|
String aValue( pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LastPrinter" ) ) ) );
|
2009-06-03 18:51:46 +00:00
|
|
|
if( maJobPage.maPrinters.GetEntryPos( aValue ) != LISTBOX_ENTRY_NOTFOUND )
|
2009-06-02 11:37:36 +00:00
|
|
|
{
|
|
|
|
maJobPage.maPrinters.SelectEntry( aValue );
|
|
|
|
maPListener->setPrinter( boost::shared_ptr<Printer>( new Printer( aValue ) ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// fall back to default printer
|
|
|
|
maJobPage.maPrinters.SelectEntry( Printer::GetDefaultPrinterName() );
|
|
|
|
maPListener->setPrinter( boost::shared_ptr<Printer>( new Printer( Printer::GetDefaultPrinterName() ) ) );
|
|
|
|
}
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
// update the text fields for the printer
|
|
|
|
updatePrinterText();
|
|
|
|
|
|
|
|
// set a select handler
|
2009-03-16 18:11:54 +00:00
|
|
|
maJobPage.maPrinters.SetSelectHdl( LINK( this, PrintDialog, SelectHdl ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
2009-03-28 08:52:14 +00:00
|
|
|
// setup sizes for N-Up
|
|
|
|
Size aNupSize( maPListener->getPrinter()->PixelToLogic(
|
|
|
|
maPListener->getPrinter()->GetPaperSizePixel(), MapMode( MAP_100TH_MM ) ) );
|
|
|
|
if( maPListener->getPrinter()->GetOrientation() == ORIENTATION_LANDSCAPE )
|
|
|
|
{
|
|
|
|
maNupLandscapeSize = aNupSize;
|
|
|
|
maNupPortraitSize = Size( aNupSize.Height(), aNupSize.Width() );
|
2009-06-03 18:51:46 +00:00
|
|
|
maNUpPage.maNupLandscape.Check();
|
2009-03-28 08:52:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
maNupPortraitSize = aNupSize;
|
|
|
|
maNupLandscapeSize = Size( aNupSize.Height(), aNupSize.Width() );
|
2009-06-03 18:51:46 +00:00
|
|
|
maNUpPage.maNupPortrait.Check();
|
2009-03-28 08:52:14 +00:00
|
|
|
}
|
2009-06-09 18:58:38 +00:00
|
|
|
maNUpPage.initFromMultiPageSetup( maPListener->getMultipage() );
|
|
|
|
|
2009-03-28 08:52:14 +00:00
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
// setup click handler on the various buttons
|
2009-06-02 11:37:36 +00:00
|
|
|
maOKButton.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
|
|
|
maCancelButton.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
|
|
|
#endif
|
2009-06-03 18:51:46 +00:00
|
|
|
maForwardBtn.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
|
|
|
maBackwardBtn.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
maJobPage.maCollateBox.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
2009-06-03 18:51:46 +00:00
|
|
|
maJobPage.maSetupButton.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
|
|
|
maNUpPage.maNupPortrait.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
|
|
|
maNUpPage.maNupLandscape.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
2009-06-09 18:58:38 +00:00
|
|
|
maNUpPage.maBorderCB.SetClickHdl( LINK( this, PrintDialog, ClickHdl ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
|
|
|
// setup modify hdl
|
2009-06-03 18:51:46 +00:00
|
|
|
maPageEdit.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
maJobPage.maCopyCountField.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
2009-06-03 18:51:46 +00:00
|
|
|
maNUpPage.maNupRowsEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
|
|
|
maNUpPage.maNupColEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
2009-06-10 13:22:04 +00:00
|
|
|
maNUpPage.maNupRepEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
2009-06-09 18:58:38 +00:00
|
|
|
maNUpPage.maLeftMarginEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
|
|
|
maNUpPage.maTopMarginEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
|
|
|
maNUpPage.maRightMarginEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
|
|
|
maNUpPage.maBottomMarginEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
|
|
|
maNUpPage.maHSpaceEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
|
|
|
maNUpPage.maVSpaceEdt.SetModifyHdl( LINK( this, PrintDialog, ModifyHdl ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
2008-10-30 14:31:29 +00:00
|
|
|
// setup optional UI options set by application
|
|
|
|
setupOptionalUI();
|
|
|
|
|
|
|
|
// set change handler for UI options
|
|
|
|
maPListener->setOptionChangeHdl( LINK( this, PrintDialog, UIOptionsChanged ) );
|
|
|
|
|
2009-03-17 12:27:26 +00:00
|
|
|
// set min size pixel to current size
|
|
|
|
SetMinOutputSizePixel( GetOutputSizePixel() );
|
|
|
|
|
2009-06-02 11:37:36 +00:00
|
|
|
// restore settings from last run
|
|
|
|
readFromSettings();
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
// setup dependencies
|
|
|
|
checkControlDependencies();
|
2009-04-27 09:47:17 +00:00
|
|
|
|
|
|
|
// set HelpIDs
|
|
|
|
maOKButton.SMHID1( "OK" );
|
|
|
|
maCancelButton.SMHID1( "Cancel" );
|
|
|
|
maPreviewWindow.SMHID1( "Preview" );
|
2009-06-03 18:51:46 +00:00
|
|
|
maNumPagesText.SMHID1( "NumPagesText" );
|
|
|
|
maPageEdit.SMHID1( "PageEdit" );
|
|
|
|
maForwardBtn.SMHID1( "ForwardBtn" );
|
|
|
|
maBackwardBtn.SMHID1( "BackwardBtn" );
|
2009-04-27 09:47:17 +00:00
|
|
|
maTabCtrl.SMHID1( "TabPages" );
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PrintDialog::~PrintDialog()
|
|
|
|
{
|
2008-10-30 14:31:29 +00:00
|
|
|
while( ! maControls.empty() )
|
|
|
|
{
|
|
|
|
delete maControls.front();
|
|
|
|
maControls.pop_front();
|
|
|
|
}
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 11:37:36 +00:00
|
|
|
void PrintDialog::readFromSettings()
|
|
|
|
{
|
|
|
|
maJobPage.readFromSettings();
|
2009-06-03 18:51:46 +00:00
|
|
|
maNUpPage.readFromSettings();
|
2009-06-02 11:37:36 +00:00
|
|
|
|
|
|
|
// read last selected tab page; if it exists, actiavte it
|
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
|
|
|
rtl::OUString aValue = pItem->getValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LastPage" ) ) );
|
|
|
|
USHORT nCount = maTabCtrl.GetPageCount();
|
|
|
|
for( USHORT i = 0; i < nCount; i++ )
|
|
|
|
{
|
|
|
|
USHORT nPageId = maTabCtrl.GetPageId( i );
|
|
|
|
if( aValue.equals( maTabCtrl.GetPageText( nPageId ) ) )
|
|
|
|
{
|
|
|
|
maTabCtrl.SelectTabPage( nPageId );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::storeToSettings()
|
|
|
|
{
|
|
|
|
maJobPage.storeToSettings();
|
2009-06-03 18:51:46 +00:00
|
|
|
maNUpPage.storeToSettings();
|
2009-06-02 11:37:36 +00:00
|
|
|
|
|
|
|
// store last selected printer
|
|
|
|
SettingsConfigItem* pItem = SettingsConfigItem::get();
|
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LastPrinter" ) ),
|
|
|
|
maJobPage.maPrinters.GetSelectEntry() );
|
|
|
|
|
|
|
|
pItem->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "PrintDialog" ) ),
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LastPage" ) ),
|
|
|
|
maTabCtrl.GetPageText( maTabCtrl.GetCurPageId() ) );
|
|
|
|
pItem->Commit();
|
|
|
|
}
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
bool PrintDialog::isPrintToFile()
|
|
|
|
{
|
2009-03-16 18:11:54 +00:00
|
|
|
return maJobPage.maToFileBox.IsChecked();
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int PrintDialog::getCopyCount()
|
|
|
|
{
|
2008-11-06 15:54:09 +00:00
|
|
|
return static_cast<int>(maJobPage.maCopyCountField.GetValue());
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool PrintDialog::isCollate()
|
|
|
|
{
|
|
|
|
return maJobPage.maCopyCountField.GetValue() > 1 ? maJobPage.maCollateBox.IsChecked() : FALSE;
|
|
|
|
}
|
|
|
|
|
2009-04-27 09:47:17 +00:00
|
|
|
static void setSmartId( Window* i_pWindow, const char* i_pType, sal_Int32 i_nId = -1, const rtl::OUString& i_rPropName = rtl::OUString() )
|
|
|
|
{
|
|
|
|
rtl::OUStringBuffer aBuf( 256 );
|
|
|
|
aBuf.appendAscii( HELPID_PREFIX );
|
|
|
|
if( i_rPropName.getLength() )
|
|
|
|
{
|
|
|
|
aBuf.append( sal_Unicode( ':' ) );
|
|
|
|
aBuf.append( i_rPropName );
|
|
|
|
}
|
|
|
|
if( i_pType )
|
|
|
|
{
|
|
|
|
aBuf.append( sal_Unicode( ':' ) );
|
|
|
|
aBuf.appendAscii( i_pType );
|
|
|
|
}
|
|
|
|
if( i_nId >= 0 )
|
|
|
|
{
|
|
|
|
aBuf.append( sal_Unicode( ':' ) );
|
|
|
|
aBuf.append( i_nId );
|
|
|
|
}
|
|
|
|
i_pWindow->SetSmartHelpId( SmartId( aBuf.makeStringAndClear() ) );
|
|
|
|
}
|
|
|
|
|
2009-04-27 16:11:03 +00:00
|
|
|
static void setHelpText( Window* i_pWindow, const Sequence< rtl::OUString >& i_rHelpTexts, sal_Int32 i_nIndex )
|
|
|
|
{
|
|
|
|
if( i_nIndex >= 0 && i_nIndex < i_rHelpTexts.getLength() )
|
|
|
|
i_pWindow->SetHelpText( i_rHelpTexts.getConstArray()[i_nIndex] );
|
|
|
|
}
|
|
|
|
|
2008-10-30 14:31:29 +00:00
|
|
|
void PrintDialog::setupOptionalUI()
|
|
|
|
{
|
2009-05-22 10:06:06 +00:00
|
|
|
const long nBorderWidth = maJobPage.maCopies.GetPosPixel().X();
|
|
|
|
|
|
|
|
vcl::RowOrColumn aPrintRangeRow( NULL, false, nBorderWidth );
|
|
|
|
std::vector<vcl::RowOrColumn*> aDynamicColumns;
|
|
|
|
vcl::RowOrColumn* pCurColumn = 0;
|
|
|
|
|
|
|
|
aPrintRangeRow.setParentWindow( &maJobPage );
|
|
|
|
aPrintRangeRow.setOuterBorder( nBorderWidth );
|
|
|
|
|
2009-05-22 07:04:13 +00:00
|
|
|
Window* pCurParent = 0, *pDynamicPageParent = 0;
|
2009-05-22 10:06:06 +00:00
|
|
|
USHORT nOptPageId = 9, nCurSubGroup = 0;
|
2009-05-22 07:04:13 +00:00
|
|
|
bool bOnJobPage = false;
|
|
|
|
|
2009-05-27 17:40:24 +00:00
|
|
|
std::multimap< rtl::OUString, vcl::RowOrColumn* > aPropertyToDependencyRowMap;
|
|
|
|
|
2008-10-30 14:31:29 +00:00
|
|
|
const Sequence< PropertyValue >& rOptions( maPListener->getUIOptions() );
|
|
|
|
for( int i = 0; i < rOptions.getLength(); i++ )
|
|
|
|
{
|
|
|
|
Sequence< beans::PropertyValue > aOptProp;
|
|
|
|
rOptions[i].Value >>= aOptProp;
|
|
|
|
|
|
|
|
// extract ui element
|
|
|
|
bool bEnabled = true;
|
|
|
|
rtl::OUString aCtrlType;
|
|
|
|
rtl::OUString aText;
|
|
|
|
rtl::OUString aPropertyName;
|
|
|
|
Sequence< rtl::OUString > aChoices;
|
2009-04-27 16:11:03 +00:00
|
|
|
Sequence< rtl::OUString > aHelpTexts;
|
2009-03-16 17:48:45 +00:00
|
|
|
sal_Int64 nMinValue = 0, nMaxValue = 0;
|
2009-04-27 16:11:03 +00:00
|
|
|
sal_Int32 nCurHelpText = 0;
|
2009-05-22 07:04:13 +00:00
|
|
|
sal_Bool bOnJobPageValue = sal_False;
|
2009-05-27 17:40:24 +00:00
|
|
|
rtl::OUString aDependsOnName;
|
|
|
|
sal_Int32 nDependsOnValue = 0;
|
|
|
|
sal_Bool bUseDependencyRow = sal_False;
|
2008-10-30 14:31:29 +00:00
|
|
|
|
|
|
|
for( int n = 0; n < aOptProp.getLength(); n++ )
|
|
|
|
{
|
|
|
|
const beans::PropertyValue& rEntry( aOptProp[ n ] );
|
|
|
|
if( rEntry.Name.equalsAscii( "Text" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= aText;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "ControlType" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= aCtrlType;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "Choices" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= aChoices;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "Property" ) )
|
|
|
|
{
|
|
|
|
PropertyValue aVal;
|
|
|
|
rEntry.Value >>= aVal;
|
|
|
|
aPropertyName = aVal.Name;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "Enabled" ) )
|
|
|
|
{
|
|
|
|
sal_Bool bValue = sal_True;
|
|
|
|
rEntry.Value >>= bValue;
|
|
|
|
bEnabled = bValue;
|
|
|
|
}
|
2009-05-22 07:04:13 +00:00
|
|
|
else if( rEntry.Name.equalsAscii( "PutOnJobPage" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= bOnJobPageValue;
|
|
|
|
}
|
2009-03-16 15:13:59 +00:00
|
|
|
else if( rEntry.Name.equalsAscii( "DependsOnName" ) )
|
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
rEntry.Value >>= aDependsOnName;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "DependsOnEntry" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= nDependsOnValue;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "AttachToDependency" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= bUseDependencyRow;
|
2009-03-16 15:13:59 +00:00
|
|
|
}
|
2009-03-16 17:48:45 +00:00
|
|
|
else if( rEntry.Name.equalsAscii( "MinValue" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= nMinValue;
|
|
|
|
}
|
|
|
|
else if( rEntry.Name.equalsAscii( "MaxValue" ) )
|
|
|
|
{
|
|
|
|
rEntry.Value >>= nMaxValue;
|
|
|
|
}
|
2009-04-27 16:11:03 +00:00
|
|
|
else if( rEntry.Name.equalsAscii( "HelpText" ) )
|
|
|
|
{
|
|
|
|
if( ! (rEntry.Value >>= aHelpTexts) )
|
|
|
|
{
|
|
|
|
rtl::OUString aHelpText;
|
|
|
|
if( (rEntry.Value >>= aHelpText) )
|
|
|
|
{
|
|
|
|
aHelpTexts.realloc( 1 );
|
|
|
|
*aHelpTexts.getArray() = aHelpText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
2008-11-05 14:54:11 +00:00
|
|
|
|
2009-05-27 18:53:40 +00:00
|
|
|
if( aCtrlType.equalsAscii( "Group" ) ||
|
|
|
|
( ! pCurParent && ! (bOnJobPage || bOnJobPageValue) ) )
|
2009-05-27 17:40:24 +00:00
|
|
|
{
|
|
|
|
// add new tab page
|
|
|
|
TabPage* pNewGroup = new TabPage( &maTabCtrl );
|
|
|
|
maControls.push_front( pNewGroup );
|
|
|
|
pCurParent = pNewGroup;
|
|
|
|
pNewGroup->SetText( aText );
|
|
|
|
maTabCtrl.InsertPage( ++nOptPageId, aText );
|
|
|
|
maTabCtrl.SetTabPage( nOptPageId, pNewGroup );
|
|
|
|
|
|
|
|
// set help id
|
|
|
|
setSmartId( pNewGroup, "TabPage", nOptPageId );
|
|
|
|
// set help text
|
|
|
|
setHelpText( pNewGroup, aHelpTexts, 0 );
|
|
|
|
|
|
|
|
// reset subgroup counter
|
|
|
|
nCurSubGroup = 0;
|
|
|
|
|
|
|
|
aDynamicColumns.push_back( new vcl::RowOrColumn( NULL, true, nBorderWidth ) );
|
|
|
|
pCurColumn = aDynamicColumns.back();
|
|
|
|
pCurColumn->setParentWindow( pNewGroup );
|
|
|
|
pCurColumn->setOuterBorder( nBorderWidth );
|
|
|
|
}
|
2009-05-27 18:53:40 +00:00
|
|
|
else if( aCtrlType.equalsAscii( "Subgroup" ) && (pCurParent || bOnJobPageValue) )
|
2008-10-30 14:31:29 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
// change to job page or back if necessary
|
|
|
|
if( (bOnJobPage && ! bOnJobPageValue) ||
|
|
|
|
(! bOnJobPage && bOnJobPageValue) )
|
2008-10-30 14:31:29 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
bOnJobPage = bOnJobPageValue;
|
|
|
|
if( bOnJobPage )
|
|
|
|
{
|
|
|
|
pDynamicPageParent = pCurParent; // save current parent
|
|
|
|
pCurParent = &maJobPage; // set job page as current parent
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pCurParent = pDynamicPageParent; // set current tab page as parent
|
|
|
|
}
|
|
|
|
}
|
2009-04-27 09:47:17 +00:00
|
|
|
|
2009-05-27 17:40:24 +00:00
|
|
|
if( bOnJobPage )
|
|
|
|
{
|
|
|
|
// create a new column in the PrintRange row
|
|
|
|
vcl::RowOrColumn* pNewColumn = new vcl::RowOrColumn( &aPrintRangeRow, true, nBorderWidth );
|
|
|
|
aPrintRangeRow.addChild( pNewColumn );
|
|
|
|
pCurColumn = pNewColumn;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pCurColumn = aDynamicColumns.back();
|
2009-04-27 09:47:17 +00:00
|
|
|
|
2009-05-27 17:40:24 +00:00
|
|
|
// create group FixedLine
|
|
|
|
FixedLine* pNewSub = new FixedLine( pCurParent );
|
|
|
|
maControls.push_front( pNewSub );
|
|
|
|
pNewSub->SetText( aText );
|
|
|
|
pNewSub->Show();
|
2009-05-22 10:06:06 +00:00
|
|
|
|
2009-05-27 17:40:24 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pNewSub, "FixedLine", sal_Int32( nCurSubGroup++ ) );
|
|
|
|
// set help text
|
|
|
|
setHelpText( pNewSub, aHelpTexts, 0 );
|
2008-10-30 14:31:29 +00:00
|
|
|
|
2009-05-27 17:40:24 +00:00
|
|
|
// add group to current column
|
|
|
|
pCurColumn->addWindow( pNewSub );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vcl::RowOrColumn* pSaveCurColumn = pCurColumn;
|
|
|
|
|
|
|
|
if( bUseDependencyRow && aDependsOnName.getLength() )
|
2008-11-05 15:52:15 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
// find the correct dependency row (if any)
|
|
|
|
std::pair< std::multimap< rtl::OUString, vcl::RowOrColumn* >::iterator,
|
|
|
|
std::multimap< rtl::OUString, vcl::RowOrColumn* >::iterator > aDepRange;
|
|
|
|
aDepRange = aPropertyToDependencyRowMap.equal_range( aDependsOnName );
|
|
|
|
if( aDepRange.first != aDepRange.second )
|
2009-05-22 07:04:13 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
while( nDependsOnValue && aDepRange.first != aDepRange.second )
|
2009-05-22 07:04:13 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
nDependsOnValue--;
|
|
|
|
++aDepRange.first;
|
2009-05-22 07:04:13 +00:00
|
|
|
}
|
2009-05-27 17:40:24 +00:00
|
|
|
if( aDepRange.first != aPropertyToDependencyRowMap.end() )
|
2009-05-22 07:04:13 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
pCurColumn = aDepRange.first->second;
|
2009-05-22 07:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-05 15:52:15 +00:00
|
|
|
}
|
2009-05-27 17:40:24 +00:00
|
|
|
if( aCtrlType.equalsAscii( "Bool" ) && pCurParent )
|
2008-10-30 14:31:29 +00:00
|
|
|
{
|
|
|
|
// add a check box
|
|
|
|
CheckBox* pNewBox = new CheckBox( pCurParent );
|
|
|
|
maControls.push_front( pNewBox );
|
|
|
|
pNewBox->SetText( aText );
|
|
|
|
pNewBox->Show();
|
2009-05-22 10:06:06 +00:00
|
|
|
|
2008-10-30 14:31:29 +00:00
|
|
|
sal_Bool bVal = sal_False;
|
|
|
|
PropertyValue* pVal = maPListener->getValue( aPropertyName );
|
|
|
|
if( pVal )
|
|
|
|
pVal->Value >>= bVal;
|
|
|
|
pNewBox->Check( bVal );
|
|
|
|
pNewBox->Enable( maPListener->isUIOptionEnabled( aPropertyName ) && pVal != NULL );
|
2009-03-16 12:27:57 +00:00
|
|
|
pNewBox->SetToggleHdl( LINK( this, PrintDialog, UIOption_CheckHdl ) );
|
2008-10-30 14:31:29 +00:00
|
|
|
|
|
|
|
maPropertyToWindowMap.insert( std::pair< rtl::OUString, Window* >( aPropertyName, pNewBox ) );
|
2009-03-16 12:27:57 +00:00
|
|
|
maControlToPropertyMap[pNewBox] = aPropertyName;
|
2009-03-16 15:13:59 +00:00
|
|
|
|
2009-04-27 09:47:17 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pNewBox, "CheckBox", -1, aPropertyName );
|
2009-04-27 16:11:03 +00:00
|
|
|
// set help text
|
|
|
|
setHelpText( pNewBox, aHelpTexts, 0 );
|
2009-05-22 10:06:06 +00:00
|
|
|
|
2009-05-27 17:40:24 +00:00
|
|
|
vcl::RowOrColumn* pDependencyRow = new vcl::RowOrColumn( pCurColumn, false );
|
|
|
|
pCurColumn->addChild( pDependencyRow );
|
|
|
|
aPropertyToDependencyRowMap.insert( std::pair< rtl::OUString, vcl::RowOrColumn* >( aPropertyName, pDependencyRow ) );
|
|
|
|
|
2009-05-22 10:06:06 +00:00
|
|
|
// add checkbox to current column
|
2009-05-27 17:40:24 +00:00
|
|
|
pDependencyRow->addWindow( pNewBox );
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
|
|
|
else if( aCtrlType.equalsAscii( "Radio" ) && pCurParent )
|
|
|
|
{
|
2009-05-22 10:06:06 +00:00
|
|
|
vcl::RowOrColumn* pRadioColumn = pCurColumn;
|
2008-10-30 14:31:29 +00:00
|
|
|
if( aText.getLength() )
|
|
|
|
{
|
|
|
|
// add a FixedText:
|
|
|
|
FixedText* pHeading = new FixedText( pCurParent );
|
|
|
|
maControls.push_front( pHeading );
|
|
|
|
pHeading->SetText( aText );
|
|
|
|
pHeading->Show();
|
|
|
|
|
2009-04-27 09:47:17 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pHeading, "FixedText", -1, aPropertyName );
|
2009-04-27 16:11:03 +00:00
|
|
|
// set help text
|
|
|
|
setHelpText( pHeading, aHelpTexts, nCurHelpText++ );
|
2009-05-22 10:06:06 +00:00
|
|
|
// add fixed text to current column
|
|
|
|
pCurColumn->addWindow( pHeading );
|
|
|
|
// add an indent to the current column
|
|
|
|
vcl::Indenter* pIndent = new vcl::Indenter( pCurColumn, 15 );
|
|
|
|
pCurColumn->addChild( pIndent );
|
|
|
|
// and create a column inside the indent
|
|
|
|
pRadioColumn = new vcl::RowOrColumn( pIndent );
|
|
|
|
pIndent->setChild( pRadioColumn );
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
|
|
|
// iterate options
|
2009-03-16 13:18:23 +00:00
|
|
|
sal_Int32 nSelectVal = 0;
|
2008-10-30 14:31:29 +00:00
|
|
|
PropertyValue* pVal = maPListener->getValue( aPropertyName );
|
2008-11-05 14:54:11 +00:00
|
|
|
if( pVal && pVal->Value.hasValue() )
|
2009-03-16 13:18:23 +00:00
|
|
|
pVal->Value >>= nSelectVal;
|
2008-10-30 14:31:29 +00:00
|
|
|
for( sal_Int32 m = 0; m < aChoices.getLength(); m++ )
|
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
vcl::RowOrColumn* pDependencyRow = new vcl::RowOrColumn( pCurColumn, false );
|
|
|
|
pRadioColumn->addChild( pDependencyRow );
|
|
|
|
aPropertyToDependencyRowMap.insert( std::pair< rtl::OUString, vcl::RowOrColumn* >( aPropertyName, pDependencyRow ) );
|
|
|
|
|
2008-10-30 14:31:29 +00:00
|
|
|
RadioButton* pBtn = new RadioButton( pCurParent, m == 0 ? WB_GROUP : 0 );
|
|
|
|
maControls.push_front( pBtn );
|
|
|
|
pBtn->SetText( aChoices[m] );
|
2009-03-16 13:18:23 +00:00
|
|
|
pBtn->Check( m == nSelectVal );
|
2008-10-30 14:31:29 +00:00
|
|
|
pBtn->Enable( maPListener->isUIOptionEnabled( aPropertyName ) );
|
2009-03-16 12:27:57 +00:00
|
|
|
pBtn->SetToggleHdl( LINK( this, PrintDialog, UIOption_RadioHdl ) );
|
2008-10-30 14:31:29 +00:00
|
|
|
pBtn->Show();
|
|
|
|
maPropertyToWindowMap.insert( std::pair< rtl::OUString, Window* >( aPropertyName, pBtn ) );
|
2009-03-16 12:27:57 +00:00
|
|
|
maControlToPropertyMap[pBtn] = aPropertyName;
|
2009-03-16 13:18:23 +00:00
|
|
|
maControlToNumValMap[pBtn] = m;
|
2009-03-16 12:27:57 +00:00
|
|
|
|
2009-04-27 09:47:17 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pBtn, "RadioButton", m, aPropertyName );
|
2009-04-27 16:11:03 +00:00
|
|
|
// set help text
|
|
|
|
setHelpText( pBtn, aHelpTexts, nCurHelpText++ );
|
2009-05-22 10:06:06 +00:00
|
|
|
// add the radio button to the column
|
2009-05-27 17:40:24 +00:00
|
|
|
pDependencyRow->addWindow( pBtn );
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
|
|
|
}
|
2009-05-22 10:19:01 +00:00
|
|
|
else if( ( aCtrlType.equalsAscii( "List" ) ||
|
|
|
|
aCtrlType.equalsAscii( "Range" ) ||
|
|
|
|
aCtrlType.equalsAscii( "Edit" )
|
|
|
|
) && pCurParent )
|
2008-10-30 14:31:29 +00:00
|
|
|
{
|
2009-05-27 17:40:24 +00:00
|
|
|
// create a row in the current column
|
|
|
|
vcl::RowOrColumn* pFieldColumn = new vcl::RowOrColumn( pCurColumn, false );
|
|
|
|
pCurColumn->addChild( pFieldColumn );
|
|
|
|
aPropertyToDependencyRowMap.insert( std::pair< rtl::OUString, vcl::RowOrColumn* >( aPropertyName, pFieldColumn ) );
|
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
if( aText.getLength() )
|
2008-10-30 14:31:29 +00:00
|
|
|
{
|
2009-05-22 10:19:01 +00:00
|
|
|
// add a FixedText:
|
|
|
|
FixedText* pHeading = new FixedText( pCurParent, WB_VCENTER );
|
|
|
|
maControls.push_front( pHeading );
|
|
|
|
pHeading->SetText( aText );
|
|
|
|
pHeading->Show();
|
2009-04-27 09:47:17 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pHeading, "FixedText", -1, aPropertyName );
|
2009-05-22 10:06:06 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// add to row
|
|
|
|
pFieldColumn->addWindow( pHeading );
|
|
|
|
}
|
2009-03-16 17:48:45 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
if( aCtrlType.equalsAscii( "List" ) )
|
2009-03-16 17:48:45 +00:00
|
|
|
{
|
2009-05-22 10:19:01 +00:00
|
|
|
ListBox* pList = new ListBox( pCurParent, WB_DROPDOWN | WB_BORDER );
|
|
|
|
maControls.push_front( pList );
|
2009-03-16 17:48:45 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// iterate options
|
|
|
|
for( sal_Int32 m = 0; m < aChoices.getLength(); m++ )
|
|
|
|
{
|
|
|
|
pList->InsertEntry( aChoices[m] );
|
|
|
|
}
|
|
|
|
sal_Int32 nSelectVal = 0;
|
|
|
|
PropertyValue* pVal = maPListener->getValue( aPropertyName );
|
|
|
|
if( pVal && pVal->Value.hasValue() )
|
|
|
|
pVal->Value >>= nSelectVal;
|
|
|
|
pList->SelectEntryPos( static_cast<USHORT>(nSelectVal) );
|
|
|
|
pList->Enable( maPListener->isUIOptionEnabled( aPropertyName ) );
|
|
|
|
pList->SetSelectHdl( LINK( this, PrintDialog, UIOption_SelectHdl ) );
|
2009-05-25 15:12:27 +00:00
|
|
|
pList->SetDropDownLineCount( static_cast<USHORT>(aChoices.getLength()) );
|
2009-05-22 10:19:01 +00:00
|
|
|
pList->Show();
|
2009-03-16 17:48:45 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pList, "ListBox", -1, aPropertyName );
|
|
|
|
// set help text
|
|
|
|
setHelpText( pList, aHelpTexts, 0 );
|
2009-04-27 09:47:17 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
maPropertyToWindowMap.insert( std::pair< rtl::OUString, Window* >( aPropertyName, pList ) );
|
|
|
|
maControlToPropertyMap[pList] = aPropertyName;
|
2009-03-16 17:48:45 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// finish the pair
|
|
|
|
pFieldColumn->addWindow( pList );
|
|
|
|
}
|
|
|
|
else if( aCtrlType.equalsAscii( "Range" ) )
|
2009-05-22 07:04:13 +00:00
|
|
|
{
|
2009-05-22 10:19:01 +00:00
|
|
|
NumericField* pField = new NumericField( pCurParent, WB_BORDER | WB_SPIN );
|
|
|
|
maControls.push_front( pField );
|
2009-05-22 10:06:06 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// set min/max and current value
|
|
|
|
if( nMinValue != nMaxValue )
|
|
|
|
{
|
|
|
|
pField->SetMin( nMinValue );
|
|
|
|
pField->SetMax( nMaxValue );
|
|
|
|
}
|
|
|
|
sal_Int64 nCurVal = 0;
|
|
|
|
PropertyValue* pVal = maPListener->getValue( aPropertyName );
|
|
|
|
if( pVal && pVal->Value.hasValue() )
|
|
|
|
pVal->Value >>= nCurVal;
|
|
|
|
pField->SetValue( nCurVal );
|
|
|
|
|
|
|
|
pField->Enable( maPListener->isUIOptionEnabled( aPropertyName ) );
|
|
|
|
pField->SetModifyHdl( LINK( this, PrintDialog, UIOption_ModifyHdl ) );
|
|
|
|
pField->Show();
|
2009-05-22 07:04:13 +00:00
|
|
|
|
|
|
|
// set help id
|
2009-05-22 10:19:01 +00:00
|
|
|
setSmartId( pField, "NumericField", -1, aPropertyName );
|
|
|
|
// set help text
|
|
|
|
setHelpText( pField, aHelpTexts, 0 );
|
2009-05-22 07:04:13 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
maPropertyToWindowMap.insert( std::pair< rtl::OUString, Window* >( aPropertyName, pField ) );
|
|
|
|
maControlToPropertyMap[pField] = aPropertyName;
|
2009-05-22 07:04:13 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// add to row
|
|
|
|
pFieldColumn->addWindow( pField );
|
|
|
|
}
|
|
|
|
else if( aCtrlType.equalsAscii( "Edit" ) )
|
|
|
|
{
|
|
|
|
Edit* pField = new Edit( pCurParent, WB_BORDER );
|
|
|
|
maControls.push_front( pField );
|
|
|
|
|
|
|
|
rtl::OUString aCurVal;
|
|
|
|
PropertyValue* pVal = maPListener->getValue( aPropertyName );
|
|
|
|
if( pVal && pVal->Value.hasValue() )
|
|
|
|
pVal->Value >>= aCurVal;
|
|
|
|
pField->SetText( aCurVal );
|
|
|
|
pField->Enable( maPListener->isUIOptionEnabled( aPropertyName ) );
|
|
|
|
pField->SetModifyHdl( LINK( this, PrintDialog, UIOption_ModifyHdl ) );
|
|
|
|
pField->Show();
|
2009-05-22 07:04:13 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// set help id
|
|
|
|
setSmartId( pField, "Edit", -1, aPropertyName );
|
|
|
|
// set help text
|
|
|
|
setHelpText( pField, aHelpTexts, 0 );
|
2009-05-22 07:04:13 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
maPropertyToWindowMap.insert( std::pair< rtl::OUString, Window* >( aPropertyName, pField ) );
|
|
|
|
maControlToPropertyMap[pField] = aPropertyName;
|
2009-05-22 07:04:13 +00:00
|
|
|
|
2009-05-22 10:19:01 +00:00
|
|
|
// add to row
|
2009-05-27 17:40:24 +00:00
|
|
|
pFieldColumn->addWindow( pField, 2 );
|
2009-05-22 10:19:01 +00:00
|
|
|
}
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
2009-05-27 17:40:24 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
DBG_ERROR( "Unsupported UI option" );
|
|
|
|
}
|
|
|
|
|
|
|
|
pCurColumn = pSaveCurColumn;
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
|
|
|
}
|
2009-03-26 18:54:45 +00:00
|
|
|
|
2009-05-22 10:06:06 +00:00
|
|
|
// calculate job page
|
|
|
|
long nJobPageCurY = maJobPage.maCollateImage.GetPosPixel().Y();
|
|
|
|
nJobPageCurY += maJobPage.maCollateImage.GetSizePixel().Height();
|
|
|
|
|
|
|
|
Size aMaxSize = aPrintRangeRow.getOptimalSize( WINDOWSIZE_PREFERRED );
|
|
|
|
aMaxSize.Height() += nJobPageCurY;
|
|
|
|
|
|
|
|
Size aMaxPageSize;
|
|
|
|
for( std::vector< vcl::RowOrColumn* >::iterator it = aDynamicColumns.begin();
|
|
|
|
it != aDynamicColumns.end(); ++it )
|
|
|
|
{
|
|
|
|
Size aPageSize( (*it)->getOptimalSize( WINDOWSIZE_PREFERRED ) );
|
|
|
|
if( aPageSize.Width() > aMaxPageSize.Width() )
|
|
|
|
aMaxPageSize.Width() = aPageSize.Width();
|
|
|
|
if( aPageSize.Height() > aMaxPageSize.Height() )
|
|
|
|
aMaxPageSize.Height() = aPageSize.Height();
|
|
|
|
}
|
|
|
|
if( aMaxPageSize.Width() > aMaxSize.Width() )
|
|
|
|
aMaxSize.Width() = aMaxPageSize.Width();
|
|
|
|
if( aMaxPageSize.Height() > aMaxSize.Height() )
|
|
|
|
aMaxSize.Height() = aMaxPageSize.Height();
|
2009-03-26 18:54:45 +00:00
|
|
|
|
|
|
|
// resize dialog if necessary
|
2009-05-22 10:06:06 +00:00
|
|
|
Size aTabSize = maTabCtrl.GetTabPageSizePixel();
|
|
|
|
if( aMaxSize.Height() > aTabSize.Height() || aMaxSize.Width() > aTabSize.Width() )
|
2009-03-26 18:54:45 +00:00
|
|
|
{
|
|
|
|
Size aCurSize( GetSizePixel() );
|
2009-05-22 10:06:06 +00:00
|
|
|
if( aMaxSize.Height() > aTabSize.Height() )
|
|
|
|
aCurSize.Height() += aMaxSize.Height() - aTabSize.Height();
|
|
|
|
if( aMaxSize.Width() > aTabSize.Width() )
|
|
|
|
{
|
|
|
|
aCurSize.Width() += aMaxSize.Width() - aTabSize.Width();
|
|
|
|
// and the tab ctrl needs more space, too
|
|
|
|
aTabSize.Width() = aMaxSize.Width();
|
|
|
|
maTabCtrl.SetSizePixel( aTabSize );
|
|
|
|
}
|
2009-03-26 18:54:45 +00:00
|
|
|
SetSizePixel( aCurSize );
|
|
|
|
}
|
2009-05-22 10:06:06 +00:00
|
|
|
|
|
|
|
// and finally arrange controls
|
|
|
|
aTabSize = maTabCtrl.GetTabPageSizePixel();
|
|
|
|
aPrintRangeRow.setManagedArea( Rectangle( Point( 0, nJobPageCurY ),
|
|
|
|
Size( aTabSize.Width(), aTabSize.Height() - nJobPageCurY ) ) );
|
|
|
|
for( std::vector< vcl::RowOrColumn* >::iterator it = aDynamicColumns.begin();
|
|
|
|
it != aDynamicColumns.end(); ++it )
|
|
|
|
{
|
|
|
|
(*it)->setManagedArea( Rectangle( Point(), aMaxPageSize ) );
|
|
|
|
delete *it;
|
|
|
|
*it = NULL;
|
|
|
|
}
|
2008-10-30 14:31:29 +00:00
|
|
|
}
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
void PrintDialog::checkControlDependencies()
|
|
|
|
{
|
|
|
|
if( maJobPage.maCopyCountField.GetValue() > 1 )
|
|
|
|
maJobPage.maCollateBox.Enable( TRUE );
|
|
|
|
else
|
|
|
|
maJobPage.maCollateBox.Enable( FALSE );
|
|
|
|
|
|
|
|
Image aImg( maJobPage.maCollateBox.IsChecked() ? maJobPage.maCollateImg : maJobPage.maNoCollateImg );
|
|
|
|
if( GetSettings().GetStyleSettings().GetFieldColor().IsDark() )
|
|
|
|
aImg = maJobPage.maCollateBox.IsChecked() ? maJobPage.maCollateHCImg : maJobPage.maNoCollateHCImg;
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
// adjust size of image
|
2008-10-01 18:22:22 +00:00
|
|
|
maJobPage.maCollateImage.SetSizePixel( aImg.GetSizePixel() );
|
|
|
|
maJobPage.maCollateImage.SetImage( aImg );
|
|
|
|
|
|
|
|
// enable setup button only for printers that can be setup
|
2009-06-03 18:51:46 +00:00
|
|
|
bool bHaveSetup = maPListener->getPrinter()->HasSupport( SUPPORT_SETUPDIALOG );
|
|
|
|
maJobPage.maSetupButton.Enable( bHaveSetup );
|
|
|
|
if( bHaveSetup )
|
|
|
|
{
|
|
|
|
if( ! maJobPage.maSetupButton.IsVisible() )
|
|
|
|
{
|
|
|
|
Point aPrinterPos( maJobPage.maPrinters.GetPosPixel() );
|
|
|
|
Point aSetupPos( maJobPage.maSetupButton.GetPosPixel() );
|
|
|
|
Size aPrinterSize( maJobPage.maPrinters.GetSizePixel() );
|
|
|
|
aPrinterSize.Width() = aSetupPos.X() - aPrinterPos.X() - LogicToPixel( Size( 5, 5 ), MapMode( MAP_APPFONT ) ).Width();
|
|
|
|
maJobPage.maPrinters.SetSizePixel( aPrinterSize );
|
|
|
|
maJobPage.maSetupButton.Show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( maJobPage.maSetupButton.IsVisible() )
|
|
|
|
{
|
|
|
|
Point aPrinterPos( maJobPage.maPrinters.GetPosPixel() );
|
|
|
|
Point aSetupPos( maJobPage.maSetupButton.GetPosPixel() );
|
|
|
|
Size aPrinterSize( maJobPage.maPrinters.GetSizePixel() );
|
|
|
|
Size aSetupSize( maJobPage.maSetupButton.GetSizePixel() );
|
|
|
|
aPrinterSize.Width() = aSetupPos.X() + aSetupSize.Width() - aPrinterPos.X();
|
|
|
|
maJobPage.maPrinters.SetSizePixel( aPrinterSize );
|
|
|
|
maJobPage.maSetupButton.Hide();
|
|
|
|
}
|
|
|
|
}
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
2009-03-16 15:13:59 +00:00
|
|
|
void PrintDialog::checkOptionalControlDependencies()
|
|
|
|
{
|
|
|
|
for( std::map< Window*, rtl::OUString >::iterator it = maControlToPropertyMap.begin();
|
|
|
|
it != maControlToPropertyMap.end(); ++it )
|
|
|
|
{
|
|
|
|
bool bShouldbeEnabled = maPListener->isUIOptionEnabled( it->second );
|
|
|
|
bool bIsEnabled = it->first->IsEnabled();
|
|
|
|
// Enable does not do a change check first, so can be less cheap than expected
|
|
|
|
if( bShouldbeEnabled != bIsEnabled )
|
|
|
|
it->first->Enable( bShouldbeEnabled );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
static rtl::OUString searchAndReplace( const rtl::OUString& i_rOrig, const char* i_pRepl, sal_Int32 i_nReplLen, const rtl::OUString& i_rRepl )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
|
|
|
sal_Int32 nPos = i_rOrig.indexOfAsciiL( i_pRepl, i_nReplLen );
|
|
|
|
if( nPos != -1 )
|
|
|
|
{
|
|
|
|
rtl::OUStringBuffer aBuf( i_rOrig.getLength() );
|
|
|
|
aBuf.append( i_rOrig.getStr(), nPos );
|
2009-06-03 18:51:46 +00:00
|
|
|
aBuf.append( i_rRepl );
|
2008-10-01 18:22:22 +00:00
|
|
|
if( nPos + i_nReplLen < i_rOrig.getLength() )
|
|
|
|
aBuf.append( i_rOrig.getStr() + nPos + i_nReplLen );
|
|
|
|
return aBuf.makeStringAndClear();
|
|
|
|
}
|
|
|
|
return i_rOrig;
|
|
|
|
}
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
void PrintDialog::updatePrinterText()
|
|
|
|
{
|
|
|
|
const QueueInfo* pInfo = Printer::GetQueueInfo( maJobPage.maPrinters.GetSelectEntry(), true );
|
|
|
|
if( pInfo )
|
|
|
|
{
|
|
|
|
rtl::OUStringBuffer aBuf( 256 );
|
|
|
|
aBuf.append( searchAndReplace( maTypeText, "%s", 2, pInfo->GetDriver() ) );
|
|
|
|
aBuf.append( sal_Unicode( '\n' ) );
|
|
|
|
aBuf.append( searchAndReplace( maLocationText, "%s", 2, pInfo->GetLocation() ) );
|
|
|
|
aBuf.append( sal_Unicode( '\n' ) );
|
|
|
|
aBuf.append( searchAndReplace( maCommentText, "%s", 2, pInfo->GetComment() ) );
|
|
|
|
aBuf.append( sal_Unicode( '\n' ) );
|
|
|
|
maJobPage.maPrinters.SetHelpText( aBuf.makeStringAndClear() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-03 19:22:35 +00:00
|
|
|
void PrintDialog::setPreviewText( sal_Int32 )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
2009-03-26 18:00:43 +00:00
|
|
|
if( mnCachedPages != 0 )
|
|
|
|
{
|
2009-06-03 18:51:46 +00:00
|
|
|
rtl::OUString aNewText( searchAndReplace( maPageStr, "%n", 2, rtl::OUString::valueOf( mnCachedPages ) ) );
|
|
|
|
maNumPagesText.SetText( aNewText );
|
2009-03-26 18:00:43 +00:00
|
|
|
}
|
|
|
|
else
|
2009-06-03 18:51:46 +00:00
|
|
|
maNumPagesText.SetText( maNoPageStr );
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
2009-06-10 17:21:10 +00:00
|
|
|
void PrintDialog::preparePreview( bool i_bNewPage, bool i_bMayUseCache )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
2008-11-05 14:54:11 +00:00
|
|
|
// page range may have changed depending on options
|
2009-03-27 23:46:53 +00:00
|
|
|
sal_Int32 nPages = maPListener->getFilteredPageCount();
|
2008-10-01 18:22:22 +00:00
|
|
|
mnCachedPages = nPages;
|
|
|
|
|
2008-11-05 14:54:11 +00:00
|
|
|
if( mnCurPage >= nPages )
|
|
|
|
mnCurPage = nPages-1;
|
2009-03-26 18:00:43 +00:00
|
|
|
if( mnCurPage < 0 )
|
|
|
|
mnCurPage = 0;
|
2008-11-05 14:54:11 +00:00
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
setPreviewText( mnCurPage );
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
maPageEdit.SetMin( 1 );
|
|
|
|
maPageEdit.SetMax( nPages );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
|
|
|
boost::shared_ptr<Printer> aPrt( maPListener->getPrinter() );
|
|
|
|
|
|
|
|
|
2009-04-24 09:43:48 +00:00
|
|
|
if( i_bNewPage )
|
|
|
|
{
|
|
|
|
const MapMode aMapMode( MAP_100TH_MM );
|
|
|
|
GDIMetaFile aMtf;
|
2009-05-05 17:16:25 +00:00
|
|
|
if( nPages > 0 )
|
2009-06-10 17:21:10 +00:00
|
|
|
maCurPageSize = maPListener->getFilteredPageFile( mnCurPage, aMtf, i_bMayUseCache );
|
2009-04-24 09:43:48 +00:00
|
|
|
|
|
|
|
maPreviewWindow.setPreview( aMtf );
|
|
|
|
}
|
2009-05-05 17:16:25 +00:00
|
|
|
// catch corner case of strange page size
|
|
|
|
if( maCurPageSize.Width() == 0 || maCurPageSize.Height() == 0 )
|
|
|
|
maCurPageSize = aPrt->PixelToLogic( aPrt->GetPaperSizePixel(), MapMode( MAP_100TH_MM ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
|
|
|
|
Size aPreviewSize;
|
|
|
|
Point aPreviewPos = maPreviewSpace.TopLeft();
|
|
|
|
const long nW = maPreviewSpace.GetSize().Width();
|
|
|
|
const long nH = maPreviewSpace.GetSize().Height();
|
2009-04-24 09:43:48 +00:00
|
|
|
if( maCurPageSize.Width() > maCurPageSize.Height() )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
2009-04-24 09:43:48 +00:00
|
|
|
aPreviewSize = Size( nW, nW * maCurPageSize.Height() / maCurPageSize.Width() );
|
2008-10-01 18:22:22 +00:00
|
|
|
aPreviewPos.Y() += (maPreviewSpace.GetHeight() - aPreviewSize.Height())/2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-24 09:43:48 +00:00
|
|
|
aPreviewSize = Size( nH * maCurPageSize.Width() / maCurPageSize.Height(), nH );
|
2008-10-01 18:22:22 +00:00
|
|
|
aPreviewPos.X() += (maPreviewSpace.GetWidth() - aPreviewSize.Width())/2;
|
|
|
|
}
|
2009-04-24 09:43:48 +00:00
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
maPreviewWindow.SetPosSizePixel( aPreviewPos, aPreviewSize );
|
|
|
|
const Size aLogicSize( maPreviewWindow.PixelToLogic( maPreviewWindow.GetSizePixel(), MapMode( MAP_100TH_MM ) ) );
|
2009-04-24 09:43:48 +00:00
|
|
|
maPreviewWindow.setScale( double(aLogicSize.Width())/double(maCurPageSize.Width()),
|
|
|
|
double(aLogicSize.Height())/double(maCurPageSize.Height()) );
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
|
2009-03-28 08:52:14 +00:00
|
|
|
void PrintDialog::updateNup()
|
|
|
|
{
|
2009-06-10 13:22:04 +00:00
|
|
|
int nRows = int(maNUpPage.maNupRowsEdt.GetValue());
|
|
|
|
int nCols = int(maNUpPage.maNupColEdt.GetValue());
|
|
|
|
int nRepeat = int(maNUpPage.maNupRepEdt.GetValue());
|
2009-03-28 08:52:14 +00:00
|
|
|
|
2009-06-09 18:58:38 +00:00
|
|
|
PrinterListener::MultiPageSetup aMPS;
|
|
|
|
aMPS.nRows = nRows;
|
|
|
|
aMPS.nColumns = nCols;
|
2009-06-10 13:22:04 +00:00
|
|
|
aMPS.nRepeat = nRepeat;
|
2009-06-09 18:58:38 +00:00
|
|
|
aMPS.aPaperSize = maNUpPage.maNupPortrait.IsChecked()
|
|
|
|
? maNupPortraitSize : maNupLandscapeSize;
|
2009-06-10 12:10:29 +00:00
|
|
|
aMPS.nLeftMargin = long(maNUpPage.maLeftMarginEdt.Denormalize(maNUpPage.maLeftMarginEdt.GetValue( FUNIT_100TH_MM )));
|
|
|
|
aMPS.nTopMargin = long(maNUpPage.maTopMarginEdt.Denormalize(maNUpPage.maTopMarginEdt.GetValue( FUNIT_100TH_MM )));
|
|
|
|
aMPS.nRightMargin = long(maNUpPage.maRightMarginEdt.Denormalize(maNUpPage.maRightMarginEdt.GetValue( FUNIT_100TH_MM )));
|
|
|
|
aMPS.nBottomMargin = long(maNUpPage.maBottomMarginEdt.Denormalize(maNUpPage.maBottomMarginEdt.GetValue( FUNIT_100TH_MM )));
|
2009-06-09 18:58:38 +00:00
|
|
|
|
2009-06-10 12:10:29 +00:00
|
|
|
aMPS.nHorizontalSpacing = long(maNUpPage.maHSpaceEdt.Denormalize(maNUpPage.maHSpaceEdt.GetValue( FUNIT_100TH_MM )));
|
|
|
|
aMPS.nVerticalSpacing = long(maNUpPage.maVSpaceEdt.Denormalize(maNUpPage.maVSpaceEdt.GetValue( FUNIT_100TH_MM )));
|
2009-06-09 18:58:38 +00:00
|
|
|
|
|
|
|
aMPS.bDrawBorder = maNUpPage.maBorderCB.IsChecked();
|
|
|
|
|
|
|
|
maPListener->setMultipage( aMPS );
|
2009-03-28 08:52:14 +00:00
|
|
|
|
2009-06-10 17:21:10 +00:00
|
|
|
preparePreview( true, true );
|
2009-03-28 08:52:14 +00:00
|
|
|
}
|
|
|
|
|
2008-10-01 18:22:22 +00:00
|
|
|
IMPL_LINK( PrintDialog, SelectHdl, ListBox*, pBox )
|
|
|
|
{
|
2009-06-03 18:51:46 +00:00
|
|
|
if( pBox == &maJobPage.maPrinters )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
2009-03-16 18:11:54 +00:00
|
|
|
String aNewPrinter( pBox->GetSelectEntry() );
|
|
|
|
maJobPage.maPrinters.SelectEntry( aNewPrinter );
|
2008-10-01 18:22:22 +00:00
|
|
|
// set new printer
|
2009-03-16 18:11:54 +00:00
|
|
|
maPListener->setPrinter( boost::shared_ptr<Printer>( new Printer( aNewPrinter ) ) );
|
2008-10-01 18:22:22 +00:00
|
|
|
// update text fields
|
|
|
|
updatePrinterText();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( PrintDialog, ClickHdl, Button*, pButton )
|
|
|
|
{
|
2009-06-02 11:37:36 +00:00
|
|
|
if( pButton == &maOKButton || pButton == &maCancelButton )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
2009-06-02 11:37:36 +00:00
|
|
|
storeToSettings();
|
|
|
|
EndDialog( pButton == &maOKButton );
|
|
|
|
}
|
2009-06-03 18:51:46 +00:00
|
|
|
else if( pButton == &maForwardBtn )
|
|
|
|
{
|
|
|
|
maPageEdit.Up();
|
|
|
|
}
|
|
|
|
else if( pButton == &maBackwardBtn )
|
|
|
|
{
|
|
|
|
maPageEdit.Down();
|
|
|
|
}
|
2009-06-02 11:37:36 +00:00
|
|
|
else
|
|
|
|
{
|
2009-06-03 18:51:46 +00:00
|
|
|
if( pButton == &maJobPage.maSetupButton )
|
2009-06-02 11:37:36 +00:00
|
|
|
{
|
|
|
|
maPListener->getPrinter()->Setup( this );
|
|
|
|
}
|
|
|
|
checkControlDependencies();
|
2009-06-09 18:58:38 +00:00
|
|
|
if( pButton == &maNUpPage.maNupPortrait || pButton == &maNUpPage.maNupLandscape || pButton == &maNUpPage.maBorderCB )
|
2009-06-02 11:37:36 +00:00
|
|
|
updateNup();
|
2008-10-01 18:22:22 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-26 18:00:43 +00:00
|
|
|
IMPL_LINK( PrintDialog, ModifyHdl, Edit*, pEdit )
|
2008-10-01 18:22:22 +00:00
|
|
|
{
|
|
|
|
checkControlDependencies();
|
2009-06-10 13:22:04 +00:00
|
|
|
if( pEdit == &maNUpPage.maNupRowsEdt || pEdit == &maNUpPage.maNupColEdt || pEdit == &maNUpPage.maNupRepEdt ||
|
2009-06-09 18:58:38 +00:00
|
|
|
pEdit == &maNUpPage.maLeftMarginEdt || pEdit == &maNUpPage.maTopMarginEdt ||
|
|
|
|
pEdit == &maNUpPage.maRightMarginEdt || pEdit == &maNUpPage.maBottomMarginEdt ||
|
|
|
|
pEdit == &maNUpPage.maHSpaceEdt || pEdit == &maNUpPage.maVSpaceEdt
|
|
|
|
)
|
2009-03-28 08:52:14 +00:00
|
|
|
{
|
|
|
|
updateNup();
|
|
|
|
}
|
2009-06-03 18:51:46 +00:00
|
|
|
else if( pEdit == &maPageEdit )
|
|
|
|
{
|
|
|
|
mnCurPage = sal_Int32( maPageEdit.GetValue() - 1 );
|
2009-06-10 17:21:10 +00:00
|
|
|
preparePreview( true, true );
|
2009-06-03 18:51:46 +00:00
|
|
|
}
|
2009-06-24 17:37:07 +00:00
|
|
|
else if( pEdit == &maJobPage.maCopyCountField )
|
|
|
|
{
|
|
|
|
maPListener->setValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "CopyCount" ) ),
|
|
|
|
makeAny( sal_Int32(maJobPage.maCopyCountField.GetValue()) ) );
|
|
|
|
}
|
2008-10-01 18:22:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-18 14:52:24 +00:00
|
|
|
IMPL_LINK( PrintDialog, UIOptionsChanged, void*, EMPTYARG )
|
2008-10-30 14:31:29 +00:00
|
|
|
{
|
2009-03-16 15:13:59 +00:00
|
|
|
checkOptionalControlDependencies();
|
2008-10-30 14:31:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-05 14:54:11 +00:00
|
|
|
PropertyValue* PrintDialog::getValueForWindow( Window* i_pWindow ) const
|
|
|
|
{
|
|
|
|
PropertyValue* pVal = NULL;
|
|
|
|
std::map< Window*, rtl::OUString >::const_iterator it = maControlToPropertyMap.find( i_pWindow );
|
|
|
|
if( it != maControlToPropertyMap.end() )
|
|
|
|
{
|
|
|
|
pVal = maPListener->getValue( it->second );
|
|
|
|
DBG_ASSERT( pVal, "property value not found" );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DBG_ERROR( "changed control not in property map" );
|
|
|
|
}
|
|
|
|
return pVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( PrintDialog, UIOption_CheckHdl, CheckBox*, i_pBox )
|
|
|
|
{
|
|
|
|
PropertyValue* pVal = getValueForWindow( i_pBox );
|
|
|
|
if( pVal )
|
|
|
|
{
|
|
|
|
sal_Bool bVal = i_pBox->IsChecked();
|
|
|
|
pVal->Value <<= bVal;
|
|
|
|
|
2009-03-16 15:13:59 +00:00
|
|
|
checkOptionalControlDependencies();
|
|
|
|
|
2008-11-05 14:54:11 +00:00
|
|
|
// update preview and page settings
|
|
|
|
preparePreview();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( PrintDialog, UIOption_RadioHdl, RadioButton*, i_pBtn )
|
|
|
|
{
|
2009-03-16 15:22:03 +00:00
|
|
|
// this handler gets called for all radiobuttons that get unchecked, too
|
|
|
|
// however we only want one notificaction for the new value (that is for
|
|
|
|
// the button that gets checked)
|
|
|
|
if( i_pBtn->IsChecked() )
|
2008-11-05 14:54:11 +00:00
|
|
|
{
|
2009-03-16 15:22:03 +00:00
|
|
|
PropertyValue* pVal = getValueForWindow( i_pBtn );
|
|
|
|
std::map< Window*, sal_Int32 >::const_iterator it = maControlToNumValMap.find( i_pBtn );
|
|
|
|
if( pVal && it != maControlToNumValMap.end() )
|
|
|
|
{
|
2009-03-16 13:18:23 +00:00
|
|
|
|
2009-03-16 15:22:03 +00:00
|
|
|
sal_Int32 nVal = it->second;
|
|
|
|
pVal->Value <<= nVal;
|
2008-11-05 14:54:11 +00:00
|
|
|
|
2009-03-16 15:22:03 +00:00
|
|
|
checkOptionalControlDependencies();
|
2009-03-16 15:13:59 +00:00
|
|
|
|
2009-03-16 15:22:03 +00:00
|
|
|
// update preview and page settings
|
|
|
|
preparePreview();
|
|
|
|
}
|
2008-11-05 14:54:11 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( PrintDialog, UIOption_SelectHdl, ListBox*, i_pBox )
|
|
|
|
{
|
|
|
|
PropertyValue* pVal = getValueForWindow( i_pBox );
|
|
|
|
if( pVal )
|
|
|
|
{
|
2009-03-16 13:18:23 +00:00
|
|
|
sal_Int32 nVal( i_pBox->GetSelectEntryPos() );
|
|
|
|
pVal->Value <<= nVal;
|
2008-11-05 14:54:11 +00:00
|
|
|
|
2009-03-16 15:13:59 +00:00
|
|
|
checkOptionalControlDependencies();
|
|
|
|
|
2008-11-05 14:54:11 +00:00
|
|
|
// update preview and page settings
|
|
|
|
preparePreview();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-10-30 14:31:29 +00:00
|
|
|
|
2009-03-16 17:48:45 +00:00
|
|
|
IMPL_LINK( PrintDialog, UIOption_ModifyHdl, Edit*, i_pBox )
|
|
|
|
{
|
|
|
|
PropertyValue* pVal = getValueForWindow( i_pBox );
|
|
|
|
if( pVal )
|
|
|
|
{
|
|
|
|
NumericField* pNum = dynamic_cast<NumericField*>(i_pBox);
|
|
|
|
MetricField* pMetric = dynamic_cast<MetricField*>(i_pBox);
|
|
|
|
if( pNum )
|
|
|
|
{
|
|
|
|
sal_Int64 nVal = pNum->GetValue();
|
|
|
|
pVal->Value <<= nVal;
|
|
|
|
}
|
|
|
|
else if( pMetric )
|
|
|
|
{
|
|
|
|
sal_Int64 nVal = pMetric->GetValue();
|
|
|
|
pVal->Value <<= nVal;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rtl::OUString aVal( i_pBox->GetText() );
|
|
|
|
pVal->Value <<= aVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
checkOptionalControlDependencies();
|
|
|
|
|
|
|
|
// update preview and page settings
|
|
|
|
preparePreview();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-08 12:43:56 +00:00
|
|
|
void PrintDialog::Paint( const Rectangle& i_rRect )
|
|
|
|
{
|
|
|
|
ModalDialog::Paint( i_rRect );
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
// sadly Tab panes are not a reliable choice for a grouping background
|
|
|
|
// since they depend on the tab items above in some themes
|
|
|
|
if( IsNativeControlSupported( CTRL_TAB_PANE, PART_ENTIRE_CONTROL) )
|
|
|
|
{
|
|
|
|
Rectangle aPrevBg( maPreviewBackground );
|
|
|
|
#ifdef QUARTZ
|
|
|
|
// FIXME: this interacts with vcl/aqua/source/gdi/salnativewidgets.cxx where
|
|
|
|
// some magic offsets are added to the area
|
|
|
|
aPrevBg.Top() += 10;
|
|
|
|
#endif
|
|
|
|
const ImplControlValue aControlValue( BUTTONVALUE_DONTKNOW, rtl::OUString(), 0 );
|
|
|
|
|
|
|
|
ControlState nState = CTRL_STATE_ENABLED;
|
|
|
|
Region aCtrlRegion( aPrevBg );
|
|
|
|
DrawNativeControl( CTRL_TAB_PANE, PART_ENTIRE_CONTROL, aCtrlRegion, nState,
|
|
|
|
aControlValue, rtl::OUString() );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
DecorationView aVw( this );
|
|
|
|
aVw.DrawFrame( maPreviewBackground, FRAME_DRAW_IN );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-03-17 12:27:26 +00:00
|
|
|
void PrintDialog::Resize()
|
|
|
|
{
|
|
|
|
Size aPixDiff( LogicToPixel( Size( 5, 5 ), MapMode( MAP_APPFONT ) ) );
|
|
|
|
Size aWindowSize( GetOutputSizePixel() );
|
|
|
|
|
|
|
|
// position buttons from lower end, right to left
|
|
|
|
Size aBtnSize( maCancelButton.GetSizePixel() );
|
|
|
|
Rectangle aBtnRect( Point( aWindowSize.Width() - aPixDiff.Width() - aBtnSize.Width(),
|
|
|
|
aWindowSize.Height() - aPixDiff.Height() - aBtnSize.Height() ),
|
|
|
|
aBtnSize );
|
|
|
|
maCancelButton.SetPosSizePixel( aBtnRect.TopLeft(), aBtnRect.GetSize() );
|
|
|
|
aBtnSize = maOKButton.GetSizePixel();
|
|
|
|
aBtnRect = Rectangle( Point( aBtnRect.Left() - aPixDiff.Width() - aBtnSize.Width(),
|
|
|
|
aWindowSize.Height() - aPixDiff.Height() - aBtnSize.Height() ),
|
|
|
|
aBtnSize );
|
|
|
|
maOKButton.SetPosSizePixel( aBtnRect.TopLeft(), aBtnRect.GetSize() );
|
|
|
|
aBtnSize = maButtonLine.GetSizePixel();
|
|
|
|
|
|
|
|
// position fixed line above buttons
|
|
|
|
aBtnRect = Rectangle( Point( 0, aBtnRect.Top() - aPixDiff.Width() - aBtnSize.Height()/2 ),
|
|
|
|
Size( aWindowSize.Width(), aBtnSize.Height() ) );
|
|
|
|
maButtonLine.SetPosSizePixel( aBtnRect.TopLeft(), aBtnRect.GetSize() );
|
|
|
|
|
|
|
|
// position tab control on upper right
|
|
|
|
aBtnSize = maTabCtrl.GetSizePixel();
|
|
|
|
aBtnRect = Rectangle( Point( aWindowSize.Width() - aPixDiff.Width() - aBtnSize.Width(),
|
|
|
|
aPixDiff.Height() ),
|
|
|
|
Size( aBtnSize.Width(), maButtonLine.GetPosPixel().Y() - 2*aPixDiff.Height() ) );
|
|
|
|
maTabCtrl.SetPosSizePixel( aBtnRect.TopLeft(), aBtnRect.GetSize() );
|
|
|
|
|
|
|
|
// set size for preview
|
|
|
|
long nMaxX = maTabCtrl.GetPosPixel().X() - 2*aPixDiff.Width();
|
|
|
|
long nMaxY = maButtonLine.GetPosPixel().Y()
|
2009-06-08 12:43:56 +00:00
|
|
|
- 4 * aPixDiff.Height()
|
2009-06-03 18:51:46 +00:00
|
|
|
- maForwardBtn.GetSizePixel().Height();
|
2009-03-17 12:27:26 +00:00
|
|
|
long nPreviewLength = std::min( nMaxX, nMaxY );
|
2009-06-08 12:43:56 +00:00
|
|
|
maPreviewSpace = Rectangle( Point( aPixDiff.Width(), 2 * aPixDiff.Height() ),
|
2009-03-17 12:27:26 +00:00
|
|
|
Size( nPreviewLength, nPreviewLength ) );
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
// position text and slider below preview, aligned
|
2009-06-05 15:01:27 +00:00
|
|
|
Size aPrefSize( maPreviewCtrlRow.getOptimalSize( WINDOWSIZE_PREFERRED ) );
|
2009-06-08 12:43:56 +00:00
|
|
|
aPrefSize.Width() = nPreviewLength - 2* aPixDiff.Width();
|
|
|
|
Point aCtrlPos( 2*aPixDiff.Width(), 3*aPixDiff.Height() + nPreviewLength );
|
2009-06-05 15:01:27 +00:00
|
|
|
maPreviewCtrlRow.setManagedArea( Rectangle( aCtrlPos, aPrefSize ) );
|
2009-06-10 12:18:55 +00:00
|
|
|
maPreviewBackground.Left() = aPixDiff.Width() - 2;
|
|
|
|
maPreviewBackground.Top() = aPixDiff.Height() - 2;
|
|
|
|
maPreviewBackground.Right() = aPixDiff.Width() + nPreviewLength + 2;
|
2009-06-08 12:43:56 +00:00
|
|
|
maPreviewBackground.Bottom() = maPreviewCtrlRow.getManagedArea().Bottom() + aPixDiff.Height();
|
|
|
|
|
|
|
|
// and do the preview; however the metafile does not need to be gotten anew
|
|
|
|
preparePreview( false );
|
|
|
|
|
2009-03-17 12:27:26 +00:00
|
|
|
}
|
2009-03-18 14:46:10 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// PrintProgressDialog
|
|
|
|
//
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
PrintProgressDialog::PrintProgressDialog( Window* i_pParent, int i_nMax ) :
|
|
|
|
ModelessDialog( i_pParent, VclResId( SV_DLG_PRINT_PROGRESS ) ),
|
|
|
|
maText( this, VclResId( SV_PRINT_PROGRESS_TEXT ) ),
|
|
|
|
maButton( this, VclResId( SV_PRINT_PROGRESS_CANCEL ) ),
|
|
|
|
mbCanceled( false ),
|
|
|
|
mnCur( 0 ),
|
2009-03-18 16:16:06 +00:00
|
|
|
mnMax( i_nMax ),
|
|
|
|
mnProgressHeight( 15 ),
|
|
|
|
mbNativeProgress( false )
|
2009-03-18 14:46:10 +00:00
|
|
|
{
|
2009-03-24 14:21:10 +00:00
|
|
|
FreeResource();
|
|
|
|
|
2009-05-05 17:16:25 +00:00
|
|
|
if( mnMax < 1 )
|
|
|
|
mnMax = 1;
|
|
|
|
|
2009-03-18 14:46:10 +00:00
|
|
|
maStr = maText.GetText();
|
|
|
|
|
|
|
|
maButton.SetClickHdl( LINK( this, PrintProgressDialog, ClickHdl ) );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintProgressDialog::~PrintProgressDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( PrintProgressDialog, ClickHdl, Button*, pButton )
|
|
|
|
{
|
|
|
|
if( pButton == &maButton )
|
|
|
|
mbCanceled = true;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintProgressDialog::implCalcProgressRect()
|
|
|
|
{
|
|
|
|
if( IsNativeControlSupported( CTRL_PROGRESS, PART_ENTIRE_CONTROL ) )
|
|
|
|
{
|
|
|
|
ImplControlValue aValue;
|
2009-03-18 16:16:06 +00:00
|
|
|
Region aControlRegion( Rectangle( Point(), Size( 100, mnProgressHeight ) ) );
|
2009-03-18 14:46:10 +00:00
|
|
|
Region aNativeControlRegion, aNativeContentRegion;
|
|
|
|
if( GetNativeControlRegion( CTRL_PROGRESS, PART_ENTIRE_CONTROL, aControlRegion,
|
|
|
|
CTRL_STATE_ENABLED, aValue, rtl::OUString(),
|
|
|
|
aNativeControlRegion, aNativeContentRegion ) )
|
|
|
|
{
|
2009-03-18 16:16:06 +00:00
|
|
|
mnProgressHeight = aNativeControlRegion.GetBoundRect().GetHeight();
|
2009-03-18 14:46:10 +00:00
|
|
|
}
|
2009-03-18 16:16:06 +00:00
|
|
|
mbNativeProgress = true;
|
2009-03-18 14:46:10 +00:00
|
|
|
}
|
|
|
|
maProgressRect = Rectangle( Point( 10, maText.GetPosPixel().Y() + maText.GetSizePixel().Height() + 8 ),
|
2009-03-18 16:16:06 +00:00
|
|
|
Size( GetSizePixel().Width() - 20, mnProgressHeight ) );
|
2009-03-18 14:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintProgressDialog::setProgress( int i_nCurrent, int i_nMax )
|
|
|
|
{
|
2009-03-18 16:16:06 +00:00
|
|
|
if( maProgressRect.IsEmpty() )
|
|
|
|
implCalcProgressRect();
|
|
|
|
|
2009-03-18 14:46:10 +00:00
|
|
|
mnCur = i_nCurrent;
|
|
|
|
if( i_nMax != -1 )
|
|
|
|
mnMax = i_nMax;
|
|
|
|
|
2009-05-05 17:16:25 +00:00
|
|
|
if( mnMax < 1 )
|
|
|
|
mnMax = 1;
|
|
|
|
|
2009-06-03 18:51:46 +00:00
|
|
|
rtl::OUString aNewText( searchAndReplace( maStr, "%p", 2, rtl::OUString::valueOf( mnCur ) ) );
|
|
|
|
aNewText = searchAndReplace( aNewText, "%n", 2, rtl::OUString::valueOf( mnMax ) );
|
2009-03-18 14:46:10 +00:00
|
|
|
maText.SetText( aNewText );
|
|
|
|
|
|
|
|
// update progress
|
2009-03-18 18:04:53 +00:00
|
|
|
Invalidate( maProgressRect, INVALIDATE_UPDATE );
|
2009-03-18 14:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintProgressDialog::tick()
|
|
|
|
{
|
|
|
|
if( mnCur < mnMax )
|
|
|
|
setProgress( ++mnCur );
|
|
|
|
}
|
|
|
|
|
2009-03-18 14:52:24 +00:00
|
|
|
void PrintProgressDialog::Paint( const Rectangle& )
|
2009-03-18 14:46:10 +00:00
|
|
|
{
|
2009-05-05 17:16:25 +00:00
|
|
|
if( maProgressRect.IsEmpty() )
|
|
|
|
implCalcProgressRect();
|
|
|
|
|
2009-03-18 16:16:06 +00:00
|
|
|
Push( PUSH_LINECOLOR | PUSH_FILLCOLOR );
|
|
|
|
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
|
|
|
|
Color aPrgsColor = rStyleSettings.GetHighlightColor();
|
|
|
|
if ( aPrgsColor == rStyleSettings.GetFaceColor() )
|
|
|
|
aPrgsColor = rStyleSettings.GetDarkShadowColor();
|
|
|
|
SetLineColor();
|
|
|
|
SetFillColor( aPrgsColor );
|
|
|
|
|
2009-03-18 18:05:51 +00:00
|
|
|
const long nOffset = 3;
|
2009-03-18 16:16:06 +00:00
|
|
|
const long nWidth = 3*mnProgressHeight/2;
|
|
|
|
const long nFullWidth = nWidth + nOffset;
|
|
|
|
const long nMaxCount = maProgressRect.GetWidth() / nFullWidth;
|
2009-03-18 14:46:10 +00:00
|
|
|
DrawProgress( this, maProgressRect.TopLeft(),
|
2009-03-18 16:16:06 +00:00
|
|
|
nOffset,
|
|
|
|
nWidth,
|
|
|
|
mnProgressHeight,
|
2009-03-18 14:46:10 +00:00
|
|
|
static_cast<USHORT>(0),
|
2009-03-18 16:16:06 +00:00
|
|
|
static_cast<USHORT>(10000*mnCur/mnMax),
|
|
|
|
static_cast<USHORT>(10000/nMaxCount),
|
2009-03-18 14:46:10 +00:00
|
|
|
maProgressRect
|
|
|
|
);
|
2009-03-18 16:16:06 +00:00
|
|
|
Pop();
|
2009-03-18 14:46:10 +00:00
|
|
|
|
2009-03-18 16:16:06 +00:00
|
|
|
if( ! mbNativeProgress )
|
|
|
|
{
|
|
|
|
DecorationView aDecoView( this );
|
|
|
|
Rectangle aFrameRect( maProgressRect );
|
|
|
|
aFrameRect.Left() -= nOffset;
|
|
|
|
aFrameRect.Right() += nOffset;
|
|
|
|
aFrameRect.Top() -= nOffset;
|
|
|
|
aFrameRect.Bottom() += nOffset;
|
|
|
|
aDecoView.DrawFrame( aFrameRect );
|
|
|
|
}
|
2009-03-18 14:46:10 +00:00
|
|
|
}
|