Line data Source code
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 : #ifndef INCLUDED_VCL_INC_PRINT_H
21 : #define INCLUDED_VCL_INC_PRINT_H
22 :
23 : #include "rtl/ustring.hxx"
24 : #include "vcl/dllapi.h"
25 : #include <vector>
26 : #include <boost/unordered_map.hpp>
27 :
28 : struct SalPrinterQueueInfo;
29 : class QueueInfo;
30 : class JobSetup;
31 :
32 : namespace vcl
33 : { class PrinterListener; }
34 :
35 : struct ImplPrnQueueData
36 : {
37 : QueueInfo* mpQueueInfo;
38 : SalPrinterQueueInfo* mpSalQueueInfo;
39 : };
40 :
41 : class VCL_PLUGIN_PUBLIC ImplPrnQueueList
42 : {
43 : public:
44 : boost::unordered_map< OUString, sal_Int32, OUStringHash >
45 : m_aNameToIndex;
46 : std::vector< ImplPrnQueueData > m_aQueueInfos;
47 : std::vector< OUString > m_aPrinterList;
48 :
49 0 : ImplPrnQueueList() {}
50 : ~ImplPrnQueueList();
51 :
52 : void Add( SalPrinterQueueInfo* pData );
53 : ImplPrnQueueData* Get( const OUString& rPrinter );
54 : };
55 :
56 : void ImplDeletePrnQueueList();
57 : void ImplUpdateJobSetupPaper( JobSetup& rJobSetup );
58 :
59 : #endif // INCLUDED_VCL_INC_PRINT_H
60 :
61 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|