]> git.lyx.org Git - features.git/blob - src/frontends/qt4/GuiFontMetrics.C
* support/qstring_helpers.h: erase ucs4_to_qstring() method.
[features.git] / src / frontends / qt4 / GuiFontMetrics.C
1 /**
2  * \file GuiFontMetrics.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author unknown
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiFontMetrics.h"
15
16 #include "qt_helpers.h"
17
18 #include "language.h"
19 #include "dimension.h"
20
21 #include "support/unicode.h"
22
23 using std::string;
24
25 namespace lyx {
26 namespace frontend {
27
28 GuiFontMetrics::GuiFontMetrics(QFont const & font)
29 : metrics_(font), smallcaps_metrics_(font), smallcaps_shape_(false)
30 {
31 }
32
33
34 GuiFontMetrics::GuiFontMetrics(QFont const & font, QFont const & smallcaps_font)
35 : metrics_(font), smallcaps_metrics_(smallcaps_font), smallcaps_shape_(true)
36 {
37 }
38
39
40 int GuiFontMetrics::maxAscent() const
41 {
42         return metrics_.ascent();
43 }
44
45
46 int GuiFontMetrics::maxDescent() const
47 {
48         // We add 1 as the value returned by QT is different than X
49         // See http://doc.trolltech.com/2.3/qfontmetrics.html#200b74
50         return metrics_.descent() + 1;
51 }
52
53
54 int GuiFontMetrics::lbearing(char_type c) const
55 {
56         return metrics_.leftBearing(ucs4_to_qchar(c));
57 }
58
59
60 int GuiFontMetrics::rbearing(char_type c) const
61 {
62         // Qt rbearing is from the right edge of the char's width().
63         QChar sc = ucs4_to_qchar(c);
64         return metrics_.width(sc) - metrics_.rightBearing(sc);
65 }
66
67
68 int GuiFontMetrics::smallcapsWidth(QString const & s) const
69 {
70         int w = 0;
71         int const ls = s.size();
72
73         for (int i = 0; i < ls; ++i) {
74                 QChar const & c = s[i];
75                 QChar const uc = c.toUpper();
76                 if (c != uc)
77                         w += smallcaps_metrics_.width(uc);
78                 else
79                         w += metrics_.width(c);
80         }
81         return w;
82 }
83
84
85 int GuiFontMetrics::width(docstring const & s) const
86 {
87         size_t ls = s.size();
88         if (ls == 0)
89                 return 0;
90
91         if (ls == 1 && !smallcaps_shape_) {
92                 return width(s[0]);
93         }
94
95         if (smallcaps_shape_)
96                 return smallcapsWidth(toqstr(s));
97
98         int w = 0;
99         for (unsigned int i = 0; i < ls; ++i)
100                 w += width(s[i]);
101
102         return w;
103 }
104
105
106 int GuiFontMetrics::width(QString const & ucs2) const
107 {
108         int const ls = ucs2.size();
109         if (ls == 1 && !smallcaps_shape_) {
110                 return width(ucs2[0].unicode());
111         }
112
113         if (smallcaps_shape_)
114                 return smallcapsWidth(ucs2);
115
116         int w = 0;
117         for (int i = 0; i < ls; ++i)
118                 w += width(ucs2[i].unicode());
119
120         return w;
121 }
122
123
124 int GuiFontMetrics::signedWidth(docstring const & s) const
125 {
126         if (s.empty())
127                 return 0;
128
129         if (s[0] == '-')
130                 return -width(s.substr(1, s.size() - 1));
131         else
132                 return width(s);
133 }
134
135
136 void GuiFontMetrics::rectText(docstring const & str,
137         int & w, int & ascent, int & descent) const
138 {
139         static int const d = 2;
140         w = width(str) + d * 2 + 2;
141         ascent = metrics_.ascent() + d;
142         descent = metrics_.descent() + d;
143 }
144
145
146
147 void GuiFontMetrics::buttonText(docstring const & str,
148         int & w, int & ascent, int & descent) const
149 {
150         static int const d = 3;
151         w = width(str) + d * 2 + 2;
152         ascent = metrics_.ascent() + d;
153         descent = metrics_.descent() + d;
154 }
155
156
157 Dimension const GuiFontMetrics::defaultDimension() const
158 {
159         return Dimension(0, maxAscent(), maxDescent());
160 }
161
162
163 Dimension const GuiFontMetrics::dimension(char_type c) const
164 {
165         return Dimension(width(c), ascent(c), descent(c));
166 }
167
168
169 void GuiFontMetrics::fillMetricsCache(char_type c) const
170 {
171         QRect const & r = metrics_.boundingRect(ucs4_to_qchar(c));
172         AscendDescend ad = { -r.top(), r.bottom() + 1};
173         // We could as well compute the width but this is not really
174         // needed for now as it is done directly in width() below.
175         metrics_cache_.insert(c, ad);
176 }
177
178
179 int GuiFontMetrics::width(char_type c) const
180 {
181         if (smallcaps_shape_)
182                 return smallcapsWidth(ucs4_to_qchar(c));
183
184         if (!width_cache_.contains(c)) {
185                 width_cache_.insert(c, metrics_.width(ucs4_to_qchar(c)));
186         }
187
188         return width_cache_.value(c);
189 }
190
191
192 int GuiFontMetrics::ascent(char_type c) const
193 {
194         if (!metrics_cache_.contains(c))
195                 fillMetricsCache(c);
196
197         return metrics_cache_.value(c).ascent;
198 }
199
200
201 int GuiFontMetrics::descent(char_type c) const
202 {
203         if (!metrics_cache_.contains(c))
204                 fillMetricsCache(c);
205
206         return metrics_cache_.value(c).descent;
207 }
208
209 } // frontend
210 } // lyx