Bump version to 4.1-6
[LibreOffice.git] / vcl / ios / dummies.cxx
blob7cf84b5a47ec5c25b46b74f89db94f5ae0779b25
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "salprn.hxx"
21 #include "headless/svpgdi.hxx"
22 #include "headless/svpinst.hxx"
24 sal_Bool SvpSalGraphics::CreateFontSubset( const OUString& /* rToFile */,
25 const PhysicalFontFace* /* pFontData */,
26 sal_Int32* /* pGlyphIDs */,
27 sal_uInt8* /* pEncoding */,
28 sal_Int32* /* pGlyphWidths */,
29 int /* nGlyphCount */,
30 FontSubsetInfo& /* rInfo */ )
32 return sal_False;
35 bool SvpSalGraphics::AddTempDevFont( ImplDevFontList* /* pFontList */,
36 const OUString& /* rFileURL */,
37 const OUString& /* rFontName */ )
39 return false;
42 SalPrinter* SvpSalInstance::CreatePrinter( SalInfoPrinter* /* pInfoPrinter */ )
44 return NULL;
47 OUString SvpSalInstance::GetDefaultPrinter()
49 return OUString();
52 GenPspGraphics *SvpSalInstance::CreatePrintGraphics()
54 return NULL;
57 void SvpSalInstance::DestroyPrinter( SalPrinter* pPrinter )
59 delete pPrinter;
63 void SvpSalInstance::PostPrintersChanged()
67 SalInfoPrinter* SvpSalInstance::CreateInfoPrinter( SalPrinterQueueInfo* /* pQueueInfo */,
68 ImplJobSetup* /* pJobSetup */ )
70 return NULL;
73 void SvpSalInstance::DestroyInfoPrinter( SalInfoPrinter* pPrinter )
75 delete pPrinter;
78 void SvpSalInstance::GetPrinterQueueInfo( ImplPrnQueueList* /* pList */ )
82 void SvpSalInstance::GetPrinterQueueState( SalPrinterQueueInfo* /* pInfo */ )
86 void SvpSalInstance::DeletePrinterQueueInfo( SalPrinterQueueInfo* pInfo )
88 delete pInfo;
91 SalPrinter* SalGenericInstance::CreatePrinter( SalInfoPrinter* /* pInfoPrinter */ )
93 return NULL;
96 OUString SalGenericInstance::GetDefaultPrinter()
98 return OUString();
101 void SalGenericInstance::DestroyPrinter( SalPrinter* pPrinter )
103 delete pPrinter;
106 void SalGenericInstance::PostPrintersChanged()
110 SalInfoPrinter* SalGenericInstance::CreateInfoPrinter( SalPrinterQueueInfo* /* pQueueInfo */,
111 ImplJobSetup* /* pJobSetup */ )
113 return NULL;
116 void SalGenericInstance::DestroyInfoPrinter( SalInfoPrinter* pPrinter )
118 delete pPrinter;
121 void SalGenericInstance::GetPrinterQueueInfo( ImplPrnQueueList* /* pList */ )
125 void SalGenericInstance::GetPrinterQueueState( SalPrinterQueueInfo* /* pInfo */ )
129 void SalGenericInstance::DeletePrinterQueueInfo( SalPrinterQueueInfo* pInfo )
131 delete pInfo;
134 void SalGenericInstance::updatePrinterUpdate()
138 void SalGenericInstance::jobStartedPrinterUpdate()
142 void SalGenericInstance::jobEndedPrinterUpdate()
146 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */