]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/qfont_metrics.C
Compilation fixes.
[lyx.git] / src / frontends / qt2 / qfont_metrics.C
1 /**
2  * \file qfont_metrics.C
3  * Copyright 1995-2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author unknown
7  * \author John Levon <moz@compsoc.man.ac.uk>
8  */
9
10 #include <config.h>
11
12
13 #ifdef __GNUG__
14 #pragma implementation "frontends/font_metrics.h"
15 #endif
16
17 #include "support/lstrings.h"
18 #include "font_metrics.h"
19 #include "qfont_loader.h"
20 #include "debug.h"
21
22 #include <qfontmetrics.h>
23 #include <qfont.h>
24
25 namespace {
26         QFontMetrics const & metrics(LyXFont const & f) {
27                 return fontloader.metrics(f);
28         }
29 }
30
31
32 namespace font_metrics {
33
34 int maxAscent(LyXFont const & f)
35 {
36         return metrics(f).ascent();
37 }
38
39
40 int maxDescent(LyXFont const & f)
41 {
42         return metrics(f).descent();
43 }
44
45
46 int ascent(char c, LyXFont const & f)
47 {
48         QRect r = metrics(f).boundingRect(c);
49         return abs(r.top());
50 }
51
52
53 int descent(char c, LyXFont const & f)
54 {
55         QRect r = metrics(f).boundingRect(c);
56         return abs(r.bottom());
57 }
58
59
60 int lbearing(char c, LyXFont const & f)
61 {
62         lyxerr << "lb of " << c << " is " << metrics(f).leftBearing(c)
63                << std::endl;
64         return metrics(f).leftBearing(c);
65 }
66
67
68 int rbearing(char c, LyXFont const & f)
69 {
70         QFontMetrics const & m(metrics(f));
71
72         // Qt rbearing is from the right edge of the char's width().
73         return (m.width(c) - m.rightBearing(c));
74 }
75
76
77 int width(char const * s, size_t ls, LyXFont const & f)
78 {
79         if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
80                 return metrics(f).width(s, ls);
81         }
82
83         // handle small caps ourselves ...
84
85         LyXFont smallfont(f);
86         smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
87
88         QFontMetrics qm = fontloader.metrics(f);
89         QFontMetrics qsmallm = fontloader.metrics(smallfont);
90
91         int w = 0;
92
93         for (size_t i = 0; i < ls; ++i) {
94                 char const c = uppercase(s[i]);
95                 if (c != s[i])
96                         w += qsmallm.width(&c, 1);
97                 else
98                         w += qm.width(&c, 1);
99         }
100         return w;
101 }
102
103
104 int signedWidth(string const & s, LyXFont const & f)
105 {
106         if (s[0] == '-')
107                 return -width(s.substr(1, s.length() - 1), f);
108         else
109                 return width(s, f);
110 }
111
112
113 void rectText(string const & str, LyXFont const & f,
114         int & w,
115         int & ascent,
116         int & descent)
117 {
118         QFontMetrics const & m(metrics(f));
119
120         static int const d = 2;
121
122         w = width(str, f) + d * 2 + 2;
123         ascent = m.ascent() + d;
124         descent = m.descent() + d;
125 }
126
127
128
129 void buttonText(string const & str, LyXFont const & f,
130         int & w,
131         int & ascent,
132         int & descent)
133 {
134         QFontMetrics const & m(metrics(f));
135
136         static int const d = 3;
137
138         w = width(str, f) + d * 2 + 2;
139         ascent = m.ascent() + d;
140         descent = m.descent() + d;
141 }
142
143 } // namespace font_metrics