bump product version to 7.2.5.1
[LibreOffice.git] / vcl / inc / print.h
blob13650ceef34f94cafde7135d89d014245b338fbb
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 <vcl/print.hxx>
26 #include "salprn.hxx"
28 #include <vector>
29 #include <unordered_map>
31 class JobSetup;
33 namespace vcl
34 { class PrinterListener; }
36 struct ImplPrnQueueData
38 std::unique_ptr<QueueInfo> mpQueueInfo;
39 std::unique_ptr<SalPrinterQueueInfo> mpSalQueueInfo;
41 // unlike other similar places, we need to ifdef this to keep old GCC baseline happy
42 #ifdef _MSC_VER
43 ImplPrnQueueData() {}
44 ImplPrnQueueData(ImplPrnQueueData&&) = default;
46 ImplPrnQueueData& operator=( ImplPrnQueueData const & ) = delete; // MSVC2017 workaround
47 ImplPrnQueueData( ImplPrnQueueData const & ) = delete; // MSVC2017 workaround
48 #endif
51 class VCL_PLUGIN_PUBLIC ImplPrnQueueList
53 public:
54 std::unordered_map< OUString, sal_Int32 > m_aNameToIndex;
55 std::vector< ImplPrnQueueData > m_aQueueInfos;
56 std::vector< OUString > m_aPrinterList;
58 ImplPrnQueueList() {}
59 ~ImplPrnQueueList();
61 ImplPrnQueueList& operator=( ImplPrnQueueList const & ) = delete; // MSVC2017 workaround
62 ImplPrnQueueList( ImplPrnQueueList const & ) = delete; // MSVC2017 workaround
64 void Add( std::unique_ptr<SalPrinterQueueInfo> pData );
65 ImplPrnQueueData* Get( const OUString& rPrinter );
68 void ImplDeletePrnQueueList();
69 void ImplUpdateJobSetupPaper( JobSetup& rJobSetup );
71 #endif // INCLUDED_VCL_INC_PRINT_H
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */