]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/qfont_metrics.C
unrevert per-char metrics
[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         return metrics(f).leftBearing(c);
63 }
64
65
66 int rbearing(char c, LyXFont const & f)
67 {
68         return metrics(f).rightBearing(c);
69 }
70
71
72 int width(char const * s, size_t ls, LyXFont const & f)
73 {
74         if (f.realShape() != LyXFont::SMALLCAPS_SHAPE) {
75                 return metrics(f).width(s, ls);
76         }
77
78         // handle small caps ourselves ...
79  
80         LyXFont smallfont(f);
81         smallfont.decSize().decSize().setShape(LyXFont::UP_SHAPE);
82
83         QFontMetrics qm = fontloader.metrics(f);
84         QFontMetrics qsmallm = fontloader.metrics(smallfont);
85
86         int w = 0;
87
88         for (size_t i = 0; i < ls; ++i) {
89                 char const c = uppercase(s[i]);
90                 if (c != s[i])
91                         w += qsmallm.width(&c, 1);
92                 else
93                         w += qm.width(&c, 1);
94         }
95         return w;
96 }
97
98
99 int signedWidth(string const & s, LyXFont const & f)
100 {
101         if (s[0] == '-')
102                 return -width(s.substr(1, s.length() - 1), f);
103         else
104                 return width(s, f);
105 }
106
107
108 void rectText(string const & str, LyXFont const & f,
109         int & w,
110         int & ascent, 
111         int & descent)
112 {
113         QFontMetrics const & m(metrics(f));
114  
115         w = width(str, f);
116         ascent = m.ascent();
117         descent = m.descent();
118 }
119
120
121
122 void buttonText(string const & str, LyXFont const & f,
123         int & w, 
124         int & ascent, 
125         int & descent)
126 {
127         QFontMetrics const & m(metrics(f));
128  
129         static int const d = 3;
130         
131         w = width(str, f) + d * 2 + 2;
132         ascent = m.ascent() + d;
133         descent = m.descent() + d;
134 }
135
136 } // namespace font_metrics