Fix uses of qRound on non-floating-point types.
[profile/ivi/qtbase.git] / src / gui / text / qfont_win.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtGui module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qfont.h"
43 #include "qfont_p.h"
44 #include "qfontengine_p.h"
45 #include "qtextengine_p.h"
46 #include "qfontmetrics.h"
47 #include "qfontinfo.h"
48
49 #include "qwidget.h"
50 #include "qpainter.h"
51 #include <limits.h>
52 #include "qt_windows.h"
53 #include <private/qapplication_p.h>
54 #include "qapplication.h"
55 #include <private/qunicodetables_p.h>
56 #include <qfontdatabase.h>
57
58 QT_BEGIN_NAMESPACE
59         
60 extern HDC   shared_dc();                // common dc for all fonts
61 extern QFont::Weight weightFromInteger(int weight); // qfontdatabase.cpp
62
63 // ### maybe move to qapplication_win
64 QFont qt_LOGFONTtoQFont(LOGFONT& lf, bool /*scale*/)
65 {
66     QString family = QString::fromWCharArray(lf.lfFaceName);
67     QFont qf(family);
68     qf.setItalic(lf.lfItalic);
69     if (lf.lfWeight != FW_DONTCARE)
70         qf.setWeight(weightFromInteger(lf.lfWeight));
71     int lfh = qAbs(lf.lfHeight);
72     qf.setPointSizeF(lfh * 72.0 / GetDeviceCaps(shared_dc(),LOGPIXELSY));
73     qf.setUnderline(false);
74     qf.setOverline(false);
75     qf.setStrikeOut(false);
76     return qf;
77 }
78
79
80 static inline float pixelSize(const QFontDef &request, int dpi)
81 {
82     float pSize;
83     if (request.pointSize != -1)
84         pSize = request.pointSize * dpi/ 72.;
85     else
86         pSize = request.pixelSize;
87     return pSize;
88 }
89
90 static inline float pointSize(const QFontDef &fd, int dpi)
91 {
92     float pSize;
93     if (fd.pointSize < 0)
94         pSize = fd.pixelSize * 72. / ((float)dpi);
95     else
96         pSize = fd.pointSize;
97     return pSize;
98 }
99
100 /*****************************************************************************
101   QFont member functions
102  *****************************************************************************/
103
104 void QFont::initialize()
105 {
106 }
107
108 void QFont::cleanup()
109 {
110     QFontCache::cleanup();
111 }
112
113 HFONT QFont::handle() const
114 {
115     QFontEngine *engine = d->engineForScript(QUnicodeTables::Common);
116     Q_ASSERT(engine != 0);
117     if (engine->type() == QFontEngine::Multi)
118         engine = static_cast<QFontEngineMulti *>(engine)->engine(0);
119     if (engine->type() == QFontEngine::Win)
120         return static_cast<QFontEngineWin *>(engine)->hfont;
121     return 0;
122 }
123
124 QString QFont::rawName() const
125 {
126     return family();
127 }
128
129 void QFont::setRawName(const QString &name)
130 {
131     setFamily(name);
132 }
133
134 QString QFont::defaultFamily() const
135 {
136     switch(d->request.styleHint) {
137         case QFont::Times:
138             return QString::fromLatin1("Times New Roman");
139         case QFont::Courier:
140         case QFont::Monospace:
141             return QString::fromLatin1("Courier New");
142         case QFont::Decorative:
143             return QString::fromLatin1("Bookman Old Style");
144         case QFont::Cursive:
145             return QString::fromLatin1("Comic Sans MS");
146         case QFont::Fantasy:
147             return QString::fromLatin1("Impact");
148         case QFont::Helvetica:
149             return QString::fromLatin1("Arial");
150         case QFont::System:
151         default:
152             return QString::fromLatin1("MS Sans Serif");
153     }
154 }
155
156 QString QFont::lastResortFamily() const
157 {
158     return QString::fromLatin1("helvetica");
159 }
160
161 QString QFont::lastResortFont() const
162 {
163     return QString::fromLatin1("arial");
164 }
165
166 QT_END_NAMESPACE