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 <sal/config.h>
24 #include <tools/ref.hxx>
25 #include <tools/gen.hxx>
27 #include <vcl/dllapi.h>
28 #include <vcl/font.hxx>
31 namespace vcl::font
{ class PhysicalFontFace
; }
33 typedef tools::SvRef
<FontCharMap
> FontCharMapRef
;
35 class VCL_DLLPUBLIC FontMetric
: public vcl::Font
38 explicit FontMetric();
39 FontMetric( const FontMetric
& ); // TODO make this explicit
40 FontMetric(vcl::font::PhysicalFontFace
const& rFace
);
41 ~FontMetric() override
;
43 tools::Long
GetAscent() const { return mnAscent
; }
44 tools::Long
GetDescent() const { return mnDescent
; }
45 tools::Long
GetInternalLeading() const { return mnIntLeading
; }
46 tools::Long
GetExternalLeading() const { return mnExtLeading
; }
47 tools::Long
GetLineHeight() const { return mnLineHeight
; } // TODO this is ascent + descnt
48 tools::Long
GetSlant() const { return mnSlant
; }
49 tools::Long
GetBulletOffset() const { return mnBulletOffset
; }
50 tools::Long
GetHangingBaseline() const { return mnHangingBaseline
; }
52 void SetAscent( tools::Long nAscent
) { mnAscent
= nAscent
; }
53 void SetDescent( tools::Long nDescent
) { mnDescent
= nDescent
; }
54 void SetExternalLeading( tools::Long nExtLeading
) { mnExtLeading
= nExtLeading
; }
55 void SetInternalLeading( tools::Long nIntLeading
) { mnIntLeading
= nIntLeading
; }
56 void SetLineHeight( tools::Long nHeight
) { mnLineHeight
= nHeight
; } // TODO this is ascent + descent
57 void SetSlant( tools::Long nSlant
) { mnSlant
= nSlant
; }
58 void SetBulletOffset( tools::Long nOffset
) { mnBulletOffset
= nOffset
; }
59 void SetHangingBaseline( tools::Long nBaseline
) { mnHangingBaseline
= nBaseline
; }
61 bool IsFullstopCentered() const { return mbFullstopCentered
; }
63 void SetFullstopCenteredFlag( bool bCentered
) { mbFullstopCentered
= bCentered
; }
65 using Font::operator=;
66 FontMetric
& operator=( const FontMetric
& rMetric
);
67 FontMetric
& operator=( FontMetric
&& rMetric
);
68 bool operator==( const FontMetric
& rMetric
) const;
69 bool operator!=( const FontMetric
& rMetric
) const
70 { return !operator==( rMetric
); }
72 bool EqualIgnoreColor( const FontMetric
& ) const;
74 // Compute value usable as hash.
75 size_t GetHashValueIgnoreColor() const;
78 bool EqualNoBase( const FontMetric
& ) const;
79 size_t GetHashValueNoBase() const;
80 tools::Long mnAscent
; // Ascent
81 tools::Long mnDescent
; // Descent
82 tools::Long mnIntLeading
; // Internal Leading
83 tools::Long mnExtLeading
; // External Leading
84 tools::Long mnLineHeight
; // Ascent+Descent+EmphasisMark
85 tools::Long mnSlant
; // Slant
86 tools::Long mnBulletOffset
; // Offset for non-printing character
87 tools::Long mnHangingBaseline
; // Offset from Romn baseline to hanging baseline.
89 bool mbFullstopCentered
;
92 template< typename charT
, typename traits
>
93 inline std::basic_ostream
<charT
, traits
> & operator <<(
94 std::basic_ostream
<charT
, traits
> & stream
, const FontMetric
& rMetric
)
97 << "name=" << "\"" << rMetric
.GetFamilyName() << "\""
98 << ",size=(" << rMetric
.GetFontSize().Width() << "," << rMetric
.GetFontSize().Height() << ")"
99 << ",ascent=" << rMetric
.GetAscent()
100 << ",descent=" << rMetric
.GetDescent()
101 << ",intLeading=" << rMetric
.GetInternalLeading()
102 << ",extLeading=" << rMetric
.GetExternalLeading()
103 << ",lineHeight=" << rMetric
.GetLineHeight()
104 << ",slant=" << rMetric
.GetSlant()
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */