netsurf/debug/fontd.c
Daniel Silverstone 6807b4208a Remove the netsurf/ from the include paths and rationalise use of <> vs "" in includes
NetSurf includes are now done with ""s and other system includes with <>s as C intended.
The scandeps tool has been updated to only look for ""ed includes, and to verify that the
files exist in the tree before adding them to the dependency lines. The depend rule has
therefore been augmented to make sure the autogenerated files are built before it is run.

This is untested under self-hosted RISC OS builds. All else tested and works.


svn path=/trunk/netsurf/; revision=3307
2007-05-30 22:39:54 +00:00

55 lines
1.1 KiB
C

/*
* This file is part of NetSurf, http://netsurf-browser.org/
* Licensed under the GNU General Public License,
* http://www.opensource.org/licenses/gpl-license
* Copyright 2005 James Bursa <bursa@users.sourceforge.net>
*/
#include <assert.h>
#include "css/css.h"
#include "render/font.h"
bool nsfont_width(const struct css_style *style,
const char *string, size_t length,
int *width)
{
assert(style);
assert(string);
*width = length * 10;
return true;
}
bool nsfont_position_in_string(const struct css_style *style,
const char *string, size_t length,
int x, size_t *char_offset, int *actual_x)
{
assert(style);
assert(string);
*char_offset = (x + 5) / 10;
if (length < *char_offset)
*char_offset = length;
*actual_x = *char_offset * 10;
return true;
}
bool nsfont_split(const struct css_style *style,
const char *string, size_t length,
int x, size_t *char_offset, int *actual_x)
{
assert(style);
assert(string);
*char_offset = x / 10;
if (length < *char_offset)
*char_offset = length;
while (*char_offset && string[*char_offset] != ' ')
(*char_offset)--;
*actual_x = *char_offset * 10;
return true;
}