/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include "sfxtypes.hxx" #include #include #include #include "sfx2/sfxresid.hxx" #include "view.hrc" // struct SfxPrinter_Impl ------------------------------------------------ struct SfxPrinter_Impl { sal_Bool mbAll; sal_Bool mbSelection; sal_Bool mbFromTo; sal_Bool mbRange; SfxPrinter_Impl() : mbAll ( sal_True ), mbSelection ( sal_True ), mbFromTo ( sal_True ), mbRange ( sal_True ) {} ~SfxPrinter_Impl() {} }; struct SfxPrintOptDlg_Impl { sal_Bool mbHelpDisabled; SfxPrintOptDlg_Impl() : mbHelpDisabled ( sal_False ) {} }; // class SfxPrinter ------------------------------------------------------ SfxPrinter* SfxPrinter::Create( SvStream& rStream, SfxItemSet* pOptions ) /* [Description] Creates a from the stream. Loading is really only a jobsetup. If such a printer is not available on the system, then the original is marked as the original Job-setup and a comparable printer is selected from existing ones. The 'pOptions' are taken over in the generated SfxPrinter, the return value belongs to the caller. */ { // Load JobSetup JobSetup aFileJobSetup; rStream >> aFileJobSetup; // Get printers SfxPrinter *pPrinter = new SfxPrinter( pOptions, aFileJobSetup ); return pPrinter; } //-------------------------------------------------------------------- SvStream& SfxPrinter::Store( SvStream& rStream ) const /* [Description] Saves the used JobSetup of s. */ { return ( rStream << GetJobSetup() ); } //-------------------------------------------------------------------- SfxPrinter::SfxPrinter( SfxItemSet* pTheOptions ) : /* [Description] This constructor creates a default printer. */ pOptions( pTheOptions ), bKnown(sal_True) { pImpl = new SfxPrinter_Impl; } //-------------------------------------------------------------------- SfxPrinter::SfxPrinter( SfxItemSet* pTheOptions, const JobSetup& rTheOrigJobSetup ) : Printer ( rTheOrigJobSetup.GetPrinterName() ), pOptions ( pTheOptions ) { pImpl = new SfxPrinter_Impl; bKnown = GetName() == rTheOrigJobSetup.GetPrinterName(); if ( bKnown ) SetJobSetup( rTheOrigJobSetup ); } //-------------------------------------------------------------------- SfxPrinter::SfxPrinter( SfxItemSet* pTheOptions, const String& rPrinterName ) : Printer ( rPrinterName ), pOptions ( pTheOptions ), bKnown ( String( GetName() ) == rPrinterName ) { pImpl = new SfxPrinter_Impl; } //-------------------------------------------------------------------- SfxPrinter::SfxPrinter( const SfxPrinter& rPrinter ) : Printer ( rPrinter.GetName() ), pOptions( rPrinter.GetOptions().Clone() ), bKnown ( rPrinter.IsKnown() ) { SetJobSetup( rPrinter.GetJobSetup() ); SetPrinterProps( &rPrinter ); SetMapMode( rPrinter.GetMapMode() ); pImpl = new SfxPrinter_Impl; pImpl->mbAll = rPrinter.pImpl->mbAll; pImpl->mbSelection = rPrinter.pImpl->mbSelection; pImpl->mbFromTo = rPrinter.pImpl->mbFromTo; pImpl->mbRange = rPrinter.pImpl->mbRange; } //-------------------------------------------------------------------- SfxPrinter* SfxPrinter::Clone() const { if ( IsDefPrinter() ) { SfxPrinter *pNewPrinter; pNewPrinter = new SfxPrinter( GetOptions().Clone() ); pNewPrinter->SetJobSetup( GetJobSetup() ); pNewPrinter->SetPrinterProps( this ); pNewPrinter->SetMapMode( GetMapMode() ); pNewPrinter->pImpl->mbAll = pImpl->mbAll; pNewPrinter->pImpl->mbSelection =pImpl->mbSelection; pNewPrinter->pImpl->mbFromTo = pImpl->mbFromTo; pNewPrinter->pImpl->mbRange =pImpl->mbRange; return pNewPrinter; } else return new SfxPrinter( *this ); } //-------------------------------------------------------------------- SfxPrinter::~SfxPrinter() { delete pOptions; delete pImpl; } //-------------------------------------------------------------------- void SfxPrinter::SetOptions( const SfxItemSet &rNewOptions ) { pOptions->Set(rNewOptions); } //-------------------------------------------------------------------- SfxPrintOptionsDialog::SfxPrintOptionsDialog(Window *pParent, SfxViewShell *pViewShell, const SfxItemSet *pSet) : ModalDialog(pParent, "PrinterOptionsDialog", "sfx/ui/printeroptionsdialog.ui") , pDlgImpl(new SfxPrintOptDlg_Impl) , pViewSh(pViewShell) , pOptions(pSet->Clone()) { VclContainer *pVBox = get_content_area(); // Insert TabPage pPage = pViewSh->CreatePrintOptionsPage(pVBox, *pOptions); DBG_ASSERT( pPage, "CreatePrintOptions != SFX_VIEW_HAS_PRINTOPTIONS" ); if( pPage ) { pPage->Reset( *pOptions ); SetHelpId( pPage->GetHelpId() ); pPage->Show(); } } //-------------------------------------------------------------------- SfxPrintOptionsDialog::~SfxPrintOptionsDialog() { delete pDlgImpl; delete pPage; delete pOptions; } //-------------------------------------------------------------------- short SfxPrintOptionsDialog::Execute() { if( ! pPage ) return RET_CANCEL; short nRet = ModalDialog::Execute(); if ( nRet == RET_OK ) pPage->FillItemSet( *pOptions ); else pPage->Reset( *pOptions ); return nRet; } //-------------------------------------------------------------------- long SfxPrintOptionsDialog::Notify( NotifyEvent& rNEvt ) { if ( rNEvt.GetType() == EVENT_KEYINPUT ) { if ( rNEvt.GetKeyEvent()->GetKeyCode().GetCode() == KEY_F1 && pDlgImpl->mbHelpDisabled ) return 1; // help disabled -> does nothing } return ModalDialog::Notify( rNEvt ); } //-------------------------------------------------------------------- void SfxPrintOptionsDialog::DisableHelp() { pDlgImpl->mbHelpDisabled = sal_True; get("help")->Disable(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */