/* -*- 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 . */ #ifndef VCL_INC_NEWPRINTDLG_HXX #define VCL_INC_NEWPRINTDLG_HXX #include #include #include #include #include #include #include #include #include #include #include namespace vcl { class MoreOptionsDialog : public ModalDialog { VclPtr mpParent; VclPtr mpOKButton; VclPtr mpCancelButton; VclPtr mpSingleJobsBox; DECL_LINK( ClickHdl, Button*, void ); public: MoreOptionsDialog( VclPtr i_pParent ); virtual ~MoreOptionsDialog() override; virtual void dispose() override; }; class PrintDialog : public ModalDialog { friend class MoreOptionsDialog; public: class PrintPreviewWindow : public vcl::Window { GDIMetaFile maMtf; Size maOrigSize; Size maPreviewSize; sal_Int32 mnDPIX; sal_Int32 mnDPIY; BitmapEx maPreviewBitmap; OUString maReplacementString; OUString const maToolTipString; bool mbGreyscale; VclPtr maHorzDim; VclPtr maVertDim; void preparePreviewBitmap(); public: PrintPreviewWindow( vcl::Window* pParent ); virtual ~PrintPreviewWindow() override; virtual void dispose() override; virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect ) override; virtual void Command( const CommandEvent& ) override; virtual void Resize() override; void setPreview( const GDIMetaFile&, const Size& i_rPaperSize, const OUString& i_rPaperName, const OUString& i_rNoPageString, sal_Int32 i_nDPIX, sal_Int32 i_nDPIY, bool i_bGreyscale ); }; class ShowNupOrderWindow : public vcl::Window { NupOrderType mnOrderMode; int mnRows; int mnColumns; public: ShowNupOrderWindow( vcl::Window* pParent ); virtual Size GetOptimalSize() const override; virtual void Paint( vcl::RenderContext& rRenderContext, const tools::Rectangle& ) override; void setValues( NupOrderType i_nOrderMode, int i_nColumns, int i_nRows ) { mnOrderMode = i_nOrderMode; mnRows = i_nRows; mnColumns = i_nColumns; Invalidate(); } }; PrintDialog( vcl::Window*, const std::shared_ptr< PrinterController >& ); virtual ~PrintDialog() override; virtual void dispose() override; bool isPrintToFile(); bool isCollate(); bool isSingleJobs() const { return mbSingleJobs; }; bool hasPreview(); void setPaperSizes(); void previewForward(); void previewBackward(); private: std::unique_ptr mpCustomOptionsUIBuilder; std::shared_ptr maPController; VclPtr< MoreOptionsDialog > mpMoreOptionsDlg; VclPtr mpTabCtrl; VclPtr mpPageLayoutFrame; VclPtr mpPrinters; VclPtr mpStatusTxt; VclPtr mpSetupButton; OUString const maPrintToFileText; OUString maPrintText; OUString const maDefPrtText; VclPtr mpCopyCountField; VclPtr mpCollateBox; VclPtr mpCollateImage; VclPtr mpReverseOrderBox; VclPtr mpOKButton; VclPtr mpCancelButton; VclPtr mpHelpButton; VclPtr mpMoreOptionsBtn; VclPtr mpBackwardBtn; VclPtr mpForwardBtn; VclPtr mpPreviewBox; VclPtr mpNumPagesText; VclPtr mpPreviewWindow; VclPtr mpPageEdit; OUString maPageStr; OUString maNoPageStr; OUString maNoPreviewStr; sal_Int32 mnCurPage; sal_Int32 mnCachedPages; BitmapEx const maCollateBmp; BitmapEx const maNoCollateBmp; long mnCollateUIMode; VclPtr mpPagesBtn; VclPtr mpBrochureBtn; VclPtr mpPagesBoxTitleTxt; VclPtr mpNupPagesBox; // controls for "Custom" page mode VclPtr mpNupNumPagesTxt; VclPtr mpNupColEdt; VclPtr mpNupTimesTxt; VclPtr mpNupRowsEdt; VclPtr mpPageMarginTxt1; VclPtr mpPageMarginEdt; VclPtr mpPageMarginTxt2; VclPtr mpSheetMarginTxt1; VclPtr mpSheetMarginEdt; VclPtr mpSheetMarginTxt2; VclPtr mpPaperSizeBox; VclPtr mpNupOrientationBox; // page order ("left to right, then down") VclPtr mpNupOrderTxt; VclPtr mpNupOrderBox; VclPtr mpNupOrderWin; /// border around each page VclPtr mpBorderCB; std::map< VclPtr, OUString > maControlToPropertyMap; std::map< OUString, std::vector< VclPtr > > maPropertyToWindowMap; std::map< VclPtr, sal_Int32 > maControlToNumValMap; std::set< OUString > maReverseDependencySet; Size maNupPortraitSize; Size maNupLandscapeSize; /// internal, used for automatic Nup-Portrait/landscape Size maFirstPageSize; bool mbShowLayoutFrame; bool mbSingleJobs; Paper mePaper; DECL_LINK( ClickHdl, Button*, void ); DECL_LINK( SelectHdl, ListBox&, void ); DECL_LINK( ModifyHdl, Edit&, void ); DECL_LINK( ToggleHdl, CheckBox&, void ); DECL_LINK( ToggleRadioHdl, RadioButton&, void ); DECL_LINK( UIOption_CheckHdl, CheckBox&, void ); DECL_LINK( UIOption_RadioHdl, RadioButton&, void ); DECL_LINK( UIOption_SelectHdl, ListBox&, void ); DECL_LINK( UIOption_ModifyHdl, Edit&, void ); css::beans::PropertyValue* getValueForWindow( vcl::Window* ) const; void preparePreview( bool i_bPrintChanged = true, bool i_bMayUseCache = false ); void setPreviewText(); void updatePrinterText(); void checkControlDependencies(); void checkOptionalControlDependencies(); void makeEnabled( vcl::Window* ); void updateWindowFromProperty( const OUString& ); void initFromMultiPageSetup( const vcl::PrinterController::MultiPageSetup& ); void showAdvancedControls( bool ); void updateNup(); void updateNupFromPages(); void enableNupControls( bool bEnable ); void setupOptionalUI(); Size const & getJobPageSize(); }; class PrintProgressDialog : public ModelessDialog { OUString maStr; VclPtr mpText; VclPtr mpProgress; VclPtr mpButton; bool mbCanceled; sal_Int32 mnCur; sal_Int32 mnMax; DECL_LINK( ClickHdl, Button*, void ); public: PrintProgressDialog(vcl::Window* i_pParent, int i_nMax); virtual ~PrintProgressDialog() override; virtual void dispose() override; bool isCanceled() const { return mbCanceled; } void setProgress( int i_nCurrent ); void tick(); void reset(); }; } #endif // VCL_INC_NEWPRINTDLG_HXX