tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / include / vcl / metric.hxx
blob0f9942e3992f3929d1685744af94906efd564838
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 #pragma once
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>
30 class FontCharMap;
31 namespace vcl::font { class PhysicalFontFace; }
33 typedef tools::SvRef<FontCharMap> FontCharMapRef;
35 class VCL_DLLPUBLIC FontMetric : public vcl::Font
37 public:
38 explicit FontMetric();
39 FontMetric( const FontMetric& ); // TODO make this explicit
40 SAL_DLLPRIVATE FontMetric(vcl::font::PhysicalFontFace const& rFace);
41 ~FontMetric() override;
43 sal_Int32 GetAscent() const { return mnAscent; }
44 sal_Int32 GetDescent() const { return mnDescent; }
45 sal_Int32 GetInternalLeading() const { return mnIntLeading; }
46 sal_Int32 GetExternalLeading() const { return mnExtLeading; }
47 sal_Int32 GetLineHeight() const { return mnLineHeight; } // TODO this is ascent + descnt
48 sal_Int32 GetSlant() const { return mnSlant; }
49 sal_Int32 GetBulletOffset() const { return mnBulletOffset; }
50 sal_Int32 GetHangingBaseline() const { return mnHangingBaseline; }
52 double GetUnitEm() const { return mdEmSize; }
53 double GetHorCJKAdvance() const { return mdHorCJKAdvanceSize; }
54 double GetVertCJKAdvance() const { return mdVertCJKAdvanceSize; }
56 void SetAscent( sal_Int32 nAscent ) { mnAscent = nAscent; }
57 void SetDescent( sal_Int32 nDescent ) { mnDescent = nDescent; }
58 void SetExternalLeading( sal_Int32 nExtLeading ) { mnExtLeading = nExtLeading; }
59 void SetInternalLeading( sal_Int32 nIntLeading ) { mnIntLeading = nIntLeading; }
60 void SetLineHeight( sal_Int32 nHeight ) { mnLineHeight = nHeight; } // TODO this is ascent + descent
61 void SetSlant( sal_Int32 nSlant ) { mnSlant = nSlant; }
62 void SetBulletOffset( sal_Int32 nOffset ) { mnBulletOffset = nOffset; }
63 void SetHangingBaseline( sal_Int32 nBaseline ) { mnHangingBaseline = nBaseline; }
65 void SetUnitEm(double dValue) { mdEmSize = dValue; }
66 void SetHorCJKAdvance(double dValue) { mdHorCJKAdvanceSize = dValue; }
67 void SetVertCJKAdvance(double dValue) { mdVertCJKAdvanceSize = dValue; }
69 bool IsFullstopCentered() const { return mbFullstopCentered; }
71 void SetFullstopCenteredFlag( bool bCentered ) { mbFullstopCentered = bCentered; }
73 using Font::operator=;
74 FontMetric& operator=( const FontMetric& rMetric );
75 FontMetric& operator=( FontMetric&& rMetric );
76 bool operator==( const FontMetric& rMetric ) const;
77 bool operator!=( const FontMetric& rMetric ) const
78 { return !operator==( rMetric ); }
80 SAL_DLLPRIVATE bool EqualIgnoreColor( const FontMetric& ) const;
82 // Compute value usable as hash.
83 size_t GetHashValueIgnoreColor() const;
85 private:
86 SAL_DLLPRIVATE bool EqualNoBase( const FontMetric& ) const;
87 SAL_DLLPRIVATE size_t GetHashValueNoBase() const;
88 sal_Int32 mnAscent; // Ascent
89 sal_Int32 mnDescent; // Descent
90 sal_Int32 mnIntLeading; // Internal Leading
91 sal_Int32 mnExtLeading; // External Leading
92 sal_Int32 mnLineHeight; // Ascent+Descent+EmphasisMark
93 sal_Int32 mnSlant; // Slant
94 sal_Int32 mnBulletOffset; // Offset for non-printing character
95 sal_Int32 mnHangingBaseline; // Offset from Romn baseline to hanging baseline.
96 double mdEmSize; // Size of an 'em' unit
97 double mdHorCJKAdvanceSize; // Size of an 'ic' unit in horizontal layout
98 double mdVertCJKAdvanceSize; // Size of an 'ic' unit in vertical layout
100 bool mbFullstopCentered;
103 template< typename charT, typename traits >
104 inline std::basic_ostream<charT, traits> & operator <<(
105 std::basic_ostream<charT, traits> & stream, const FontMetric& rMetric )
107 stream << "{"
108 << "name=" << "\"" << rMetric.GetFamilyName() << "\""
109 << ",size=(" << rMetric.GetFontSize().Width() << "," << rMetric.GetFontSize().Height() << ")"
110 << ",ascent=" << rMetric.GetAscent()
111 << ",descent=" << rMetric.GetDescent()
112 << ",intLeading=" << rMetric.GetInternalLeading()
113 << ",extLeading=" << rMetric.GetExternalLeading()
114 << ",lineHeight=" << rMetric.GetLineHeight()
115 << ",slant=" << rMetric.GetSlant()
116 << "}";
117 return stream;
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */