summaryrefslogtreecommitdiff
path: root/frontends/windows/font.c
blob: 37ccf23fe25e8e2f8649e1d23db459851ce4097f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/*
 * Copyright 2009 - 2014 Vincent Sanders <vince@netsurf-browser.org>
 * Copyright 2009 - 2013 Michael Drake <tlsa@netsurf-browser.org>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * NetSurf is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * NetSurf is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/**
 * \file
 * Windows font handling and character encoding implementation.
 */

#include "utils/config.h"
#include <assert.h>
#include <windows.h>

#include "netsurf/inttypes.h"
#include "utils/log.h"
#include "utils/nsoption.h"
#include "utils/utf8.h"
#include "netsurf/layout.h"
#include "netsurf/utf8.h"
#include "netsurf/plot_style.h"

#include "windows/font.h"

HWND font_hwnd;

/* exported interface documented in windows/font.h */
nserror
utf8_to_font_encoding(const struct font_desc* font,
		      const char *string,
		      size_t len,
		      char **result)
{
	return utf8_to_enc(string, font->encoding, len, result);
}


/**
 * Convert a string to UCS2 from UTF8
 *
 * \param[in] string source string
 * \param[in] len source string length
 * \param[out] result The UCS2 string
 */
static nserror
utf8_to_local_encoding(const char *string, size_t len, char **result)
{
	return utf8_to_enc(string, "UCS-2", len, result);
}


/**
 * Convert a string to UTF8 from local encoding
 *
 * \param[in] string source string
 * \param[in] len source string length
 * \param[out] result The UTF8 string
 */
static nserror
utf8_from_local_encoding(const char *string, size_t len, char **result)
{
	assert(string && result);

	if (len == 0) {
		len = strlen(string);
	}

	*result = strndup(string, len);
	if (!(*result)) {
		return NSERROR_NOMEM;
	}

	return NSERROR_OK;
}


/* exported interface documented in windows/font.h */
HFONT get_font(const plot_font_style_t *style)
{
	char *face = NULL;
	DWORD family;
	switch(style->family) {
	case PLOT_FONT_FAMILY_SERIF:
		face = strdup(nsoption_charp(font_serif));
		family = FF_ROMAN | DEFAULT_PITCH;
		break;
	case PLOT_FONT_FAMILY_MONOSPACE:
		face = strdup(nsoption_charp(font_mono));
		family = FF_MODERN | DEFAULT_PITCH;
		break;
	case PLOT_FONT_FAMILY_CURSIVE:
		face = strdup(nsoption_charp(font_cursive));
		family = FF_SCRIPT | DEFAULT_PITCH;
		break;
	case PLOT_FONT_FAMILY_FANTASY:
		face = strdup(nsoption_charp(font_fantasy));
		family = FF_DECORATIVE | DEFAULT_PITCH;
		break;
	case PLOT_FONT_FAMILY_SANS_SERIF:
	default:
		face = strdup(nsoption_charp(font_sans));
		family = FF_SWISS | DEFAULT_PITCH;
		break;
	}

	int nHeight = -10;

	HDC hdc = GetDC(font_hwnd);
	nHeight = -MulDiv(style->size, GetDeviceCaps(hdc, LOGPIXELSY), 72 * FONT_SIZE_SCALE);
	ReleaseDC(font_hwnd, hdc);

	HFONT font = CreateFont(
		nHeight, /* height */
		0, /* width */
		0, /* escapement*/
		0, /* orientation */
		style->weight,
		(style->flags & FONTF_ITALIC) ? TRUE : FALSE,
		FALSE, /* underline */
		FALSE, /* strike */
		DEFAULT_CHARSET, /* for locale */
		OUT_DEFAULT_PRECIS, /* general 'best match' */
		CLIP_DEFAULT_PRECIS,
		DEFAULT_QUALITY,
		family,
		face /* name of font face */
		);
	if (face != NULL)
		free(face);

	if (font == NULL) {
		if (style->family == PLOT_FONT_FAMILY_MONOSPACE) {
			font = (HFONT) GetStockObject(ANSI_FIXED_FONT);
		} else {
			font = (HFONT) GetStockObject(ANSI_VAR_FONT);
		}
	}
	if (font == NULL)
		font = (HFONT) GetStockObject(SYSTEM_FONT);
	return font;
}


/**
 * Measure the width of a string.
 *
 * \param[in] style plot style for this text
 * \param[in] string UTF-8 string to measure
 * \param[in] length length of string, in bytes
 * \param[out] width updated to width of string[0..length)
 * \return NSERROR_OK on success otherwise appropriate error code
 */
static nserror
win32_font_width(const plot_font_style_t *style,
		 const char *string,
		 size_t length,
		 int *width)
{
	HDC hdc;
	HFONT font;
	HFONT fontbak;
	SIZE s;
	nserror ret = NSERROR_OK;

	if (length == 0) {
		*width = 0;
	} else {
		hdc = GetDC(NULL);
		font = get_font(style);
		fontbak = SelectObject(hdc, font);

		/* may well need to convert utf-8 to lpctstr */
		if (GetTextExtentPoint32A(hdc, string, length, &s) != 0) {
			*width = s.cx;
		} else {
			ret = NSERROR_UNKNOWN;
		}
		font = SelectObject(hdc, fontbak);
		DeleteObject(font);
		ReleaseDC(NULL, hdc);
	}
	return ret;
}


/**
 * Find the position in a string where an x coordinate falls.
 *
 * \param  style	css_style for this text, with style->font_size.size ==
 *			CSS_FONT_SIZE_LENGTH
 * \param  string	UTF-8 string to measure
 * \param  length	length of string
 * \param  x		x coordinate to search for
 * \param  char_offset	updated to offset in string of actual_x, [0..length]
 * \param  actual_x	updated to x coordinate of character closest to x
 * \return NSERROR_OK on success otherwise appropriate error code
 */
static nserror
win32_font_position(const plot_font_style_t *style,
		    const char *string,
		    size_t length,
		    int x,
		    size_t *char_offset,
		    int *actual_x)
{
	HDC hdc;
	HFONT font;
	HFONT fontbak;
	SIZE s;
	int offset;
	nserror ret = NSERROR_OK;

	if ((length == 0) || (x < 1)) {
		*char_offset = 0;
		*actual_x = 0;
	} else {
		hdc = GetDC(NULL);
		font = get_font(style);
		fontbak = SelectObject(hdc, font);

		if ((GetTextExtentExPointA(hdc, string, length, x, &offset, NULL,&s) != 0) &&
		    (GetTextExtentPoint32A(hdc, string, offset, &s) != 0)) {
			*char_offset = (size_t)offset;
			*actual_x = s.cx;
		} else {
			ret = NSERROR_UNKNOWN;
		}
		font = SelectObject(hdc, fontbak);
		DeleteObject(font);
		ReleaseDC(NULL, hdc);
	}

	return ret;
}


/**
 * Find where to split a string to make it fit a width.
 *
 * \param  style	css_style for this text, with style->font_size.size ==
 *			CSS_FONT_SIZE_LENGTH
 * \param  string	UTF-8 string to measure
 * \param  length	length of string
 * \param  x		width available
 * \param  char_offset	updated to offset in string of actual_x, [0..length]
 * \param  actual_x	updated to x coordinate of character closest to x
 * \return NSERROR_OK on success otherwise appropriate error code
 *
 * On exit, [char_offset == 0 ||
 *	   string[char_offset] == ' ' ||
 *	   char_offset == length]
 */
static nserror
win32_font_split(const plot_font_style_t *style,
		 const char *string,
		 size_t length,
		 int x,
		 size_t *char_offset,
		 int *actual_x)
{
	int c_off;
	nserror ret = NSERROR_UNKNOWN;

	if (win32_font_position(style,
				string,
				length,
				x,
				char_offset,
				actual_x) == NSERROR_OK) {
		c_off = *char_offset;
		if (*char_offset == length) {
			ret = NSERROR_OK;
		} else {
			bool success;
			while ((string[*char_offset] != ' ') &&
			       (*char_offset > 0)) {
				(*char_offset)--;
			}

			if (*char_offset == 0) {
				*char_offset = c_off;
				while ((*char_offset < length) &&
				       (string[*char_offset] != ' ')) {
					(*char_offset)++;
				}
			}

			success = win32_font_width(style,
						   string,
						   *char_offset,
						   actual_x);
			if (success) {
				ret = NSERROR_OK;
			}
		}
	}


	NSLOG(netsurf, DEEPDEBUG,
	      "ret %d Split %u chars at %ipx: Split at char %i (%ipx) - %.*s",
	      ret, length, x, *char_offset, *actual_x, *char_offset, string);

	return ret;
}


/** win32 font operations table */
static struct gui_layout_table layout_table = {
	.width = win32_font_width,
	.position = win32_font_position,
	.split = win32_font_split,
};

struct gui_layout_table *win32_layout_table = &layout_table;

/** win32 utf8 encoding operations table */
static struct gui_utf8_table utf8_table = {
	.utf8_to_local = utf8_to_local_encoding,
	.local_to_utf8 = utf8_from_local_encoding,
};

struct gui_utf8_table *win32_utf8_table = &utf8_table;