1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <cppuhelper/compbase.hxx>
23 #include <cppuhelper/basemutex.hxx>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/geometry/Matrix2D.hpp>
27 #include <com/sun/star/rendering/FontRequest.hpp>
28 #include <com/sun/star/rendering/XCanvasFont.hpp>
29 #include <com/sun/star/rendering/XGraphicDevice.hpp>
31 #include <vcl/font.hxx>
33 #include <vclwrapper.hxx>
35 #include "outdevprovider.hxx"
38 /* Definition of CanvasFont class */
42 typedef ::cppu::WeakComponentImplHelper
< css::rendering::XCanvasFont
,
43 css::lang::XServiceInfo
> CanvasFont_Base
;
45 class CanvasFont
: public ::cppu::BaseMutex
,
46 public CanvasFont_Base
49 typedef rtl::Reference
<CanvasFont
> Reference
;
52 CanvasFont(const CanvasFont
&) = delete;
53 const CanvasFont
& operator=(const CanvasFont
&) = delete;
55 CanvasFont( const css::rendering::FontRequest
& fontRequest
,
56 const css::uno::Sequence
< css::beans::PropertyValue
>& extraFontProperties
,
57 const css::geometry::Matrix2D
& rFontMatrix
,
58 css::rendering::XGraphicDevice
& rDevice
,
59 const OutDevProviderSharedPtr
& rOutDevProvider
);
61 /// Dispose all internal references
62 virtual void SAL_CALL
disposing() override
;
65 virtual css::uno::Reference
< css::rendering::XTextLayout
> SAL_CALL
createTextLayout( const css::rendering::StringContext
& aText
, sal_Int8 nDirection
, sal_Int64 nRandomSeed
) override
;
66 virtual css::rendering::FontRequest SAL_CALL
getFontRequest( ) override
;
67 virtual css::rendering::FontMetrics SAL_CALL
getFontMetrics( ) override
;
68 virtual css::uno::Sequence
< double > SAL_CALL
getAvailableSizes( ) override
;
69 virtual css::uno::Sequence
< css::beans::PropertyValue
> SAL_CALL
getExtraFontProperties( ) override
;
72 virtual OUString SAL_CALL
getImplementationName() override
;
73 virtual sal_Bool SAL_CALL
supportsService( const OUString
& ServiceName
) override
;
74 virtual css::uno::Sequence
< OUString
> SAL_CALL
getSupportedServiceNames() override
;
76 vcl::Font
const & getVCLFont() const;
78 const css::geometry::Matrix2D
& getFontMatrix() const;
81 ::canvas::vcltools::VCLObject
<vcl::Font
> maFont
;
82 css::rendering::FontRequest maFontRequest
;
83 css::uno::Reference
< css::rendering::XGraphicDevice
> mpRefDevice
;
84 OutDevProviderSharedPtr mpOutDevProvider
;
85 css::geometry::Matrix2D maFontMatrix
;
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */