LibreOffice Module sw (master) 1
IDocumentDeviceAccess.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22class SfxPrinter;
23class JobSetup;
24class SwPrintData;
25class VirtualDevice;
26class OutputDevice;
27
31{
32public:
41 virtual SfxPrinter* getPrinter(/*[in]*/ bool bCreate) const = 0;
42
54 virtual void setPrinter(/*[in]*/ SfxPrinter* pP, /*[in]*/ bool bDeleteOld,
55 /*[in]*/ bool bCallPrtDataChanged)
56 = 0;
57
66 virtual VirtualDevice* getVirtualDevice(/*[in]*/ bool bCreate) const = 0;
67
76 virtual void setVirtualDevice(/*[in]*/ VirtualDevice* pVd) = 0;
77
86 virtual OutputDevice* getReferenceDevice(/*[in]*/ bool bCreate) const = 0;
87
97 virtual void setReferenceDeviceType(/*[in]*/ bool bNewVirtual, /*[in]*/ bool bNewHiRes) = 0;
98
104 virtual const JobSetup* getJobsetup() const = 0;
105
111 virtual void setJobsetup(/*[in]*/ const JobSetup& rJobSetup) = 0;
112
118 virtual const SwPrintData& getPrintData() const = 0;
119
125 virtual void setPrintData(/*[in]*/ const SwPrintData& rPrtData) = 0;
126
127protected:
129};
130
131/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Provides access to the formatting devices of a document.
virtual const JobSetup * getJobsetup() const =0
Returns the Jobsetup.
virtual SfxPrinter * getPrinter(bool bCreate) const =0
Return the printer set at the document.
virtual VirtualDevice * getVirtualDevice(bool bCreate) const =0
Return the virtual device set at the document.
virtual void setReferenceDeviceType(bool bNewVirtual, bool bNewHiRes)=0
Sets the type of the reference device used for formatting the document.
virtual void setPrintData(const SwPrintData &rPrtData)=0
Sets the PrintData.
virtual void setJobsetup(const JobSetup &rJobSetup)=0
Sets the Jobsetup.
virtual void setPrinter(SfxPrinter *pP, bool bDeleteOld, bool bCallPrtDataChanged)=0
Set the printer at the document.
virtual const SwPrintData & getPrintData() const =0
Returns the PrintData.
virtual OutputDevice * getReferenceDevice(bool bCreate) const =0
Returns the current reference device.
virtual void setVirtualDevice(VirtualDevice *pVd)=0
Sets the current virtual device.