Branch libreoffice-5-0-4
[LibreOffice.git] / vcl / inc / print.h
blob7eec4216eb635d33f46597a557d0912d44602bb8
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 #ifndef INCLUDED_VCL_INC_PRINT_H
21 #define INCLUDED_VCL_INC_PRINT_H
23 #include "rtl/ustring.hxx"
24 #include "vcl/dllapi.h"
25 #include <vector>
26 #include <unordered_map>
28 struct SalPrinterQueueInfo;
29 class QueueInfo;
30 class JobSetup;
32 namespace vcl
33 { class PrinterListener; }
35 struct ImplPrnQueueData
37 QueueInfo* mpQueueInfo;
38 SalPrinterQueueInfo* mpSalQueueInfo;
41 class VCL_PLUGIN_PUBLIC ImplPrnQueueList
43 public:
44 std::unordered_map< OUString, sal_Int32, OUStringHash >
45 m_aNameToIndex;
46 std::vector< ImplPrnQueueData > m_aQueueInfos;
47 std::vector< OUString > m_aPrinterList;
49 ImplPrnQueueList() {}
50 ~ImplPrnQueueList();
52 void Add( SalPrinterQueueInfo* pData );
53 ImplPrnQueueData* Get( const OUString& rPrinter );
56 void ImplDeletePrnQueueList();
57 void ImplUpdateJobSetupPaper( JobSetup& rJobSetup );
59 #endif // INCLUDED_VCL_INC_PRINT_H
61 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */