Coverage Report

Created: 2025-11-16 09:57

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/vcl/inc/unx/geninst.h
Line
Count
Source
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
22
#include <sal/config.h>
23
24
#include <memory>
25
#include <comphelper/solarmutex.hxx>
26
#include <salinst.hxx>
27
#include <svdata.hxx>
28
#include <unx/genprn.h>
29
30
class VCL_DLLPUBLIC SalYieldMutex : public comphelper::SolarMutex
31
{
32
public:
33
    SalYieldMutex();
34
    virtual ~SalYieldMutex() override;
35
};
36
37
/*
38
 * Abstract generic class to build vclplugin's instance classes from
39
 */
40
class GenPspGraphics;
41
namespace vcl::font
42
{
43
    class PhysicalFontCollection;
44
}
45
46
class VCL_DLLPUBLIC SalGenericInstance : public SalInstance
47
{
48
protected:
49
    bool           mbPrinterInit;
50
51
public:
52
    SalGenericInstance( std::unique_ptr<comphelper::SolarMutex> pMutex )
53
108
        : SalInstance(std::move(pMutex)), mbPrinterInit(false) {}
54
    virtual ~SalGenericInstance() override;
55
56
    // Printing
57
    virtual SalInfoPrinter*     CreateInfoPrinter      ( SalPrinterQueueInfo* pQueueInfo,
58
                                                         ImplJobSetup* pSetupData ) override;
59
    virtual void                DestroyInfoPrinter     ( SalInfoPrinter* pPrinter ) override;
60
    virtual std::unique_ptr<SalPrinter> CreatePrinter  ( SalInfoPrinter* pInfoPrinter ) override;
61
    virtual void                GetPrinterQueueInfo    ( ImplPrnQueueList* pList ) override;
62
    virtual void                GetPrinterQueueState   ( SalPrinterQueueInfo* pInfo ) override;
63
    virtual OUString            GetDefaultPrinter() override;
64
    virtual void                PostPrintersChanged() = 0;
65
    virtual void                updatePrinterUpdate() override;
66
0
    bool isPrinterInit() const { return mbPrinterInit; }
67
    virtual std::unique_ptr<GenPspGraphics> CreatePrintGraphics() = 0;
68
69
    virtual OUString            getOSVersion() override;
70
71
    // prolly belongs somewhere else ... just a font help
72
    static void RegisterFontSubstitutors( vcl::font::PhysicalFontCollection* pFontCollection );
73
74
protected:
75
    static void configurePspInfoPrinter( PspSalInfoPrinter* pInfoPrinter,
76
                                         SalPrinterQueueInfo const * pQueueInfo,
77
                                         ImplJobSetup* pSetupData );
78
};
79
80
inline SalGenericInstance *GetGenericInstance()
81
0
{
82
0
    return static_cast<SalGenericInstance*>(GetSalInstance());
83
0
}
84
85
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */