Nvu is a complete Web Authoring System to rival programs like FrontPage and Dreamweaver. Nvu (which stands for "new view") makes managing a web site a snap. Now anyone can create web pages and manage a website with no technical expertise or knowledge of HTML. * WYSIWYG editing of pages, making web creation as easy as typing a letter with your word processor. * Integrated file management via FTP. Simply login to your web site and navigate through your files, editing web pages on the fly, directly from your site. * Reliable HTML code creation that will work with all of today's most popular browsers. * Jump between WYSIWYG Editing Mode and HTML using tabs. * Tabbed editing to make working on multiple pages a snap. * Powerful support for forms, tables, and templates.
62 lines
2.2 KiB
Text
62 lines
2.2 KiB
Text
$NetBSD: patch-ai,v 1.1.1.1 2006/10/21 21:54:13 rillig Exp $
|
|
|
|
--- gfx/src/ps/nsFontMetricsPS.cpp.orig 2004-02-05 02:57:05.000000000 +0100
|
|
+++ gfx/src/ps/nsFontMetricsPS.cpp 2006-10-21 20:37:14.000000000 +0200
|
|
@@ -1141,10 +1142,10 @@ nsFontPSFreeType::Init(nsITrueTypeFontCa
|
|
|
|
mPixelSize = NSToIntRound(app2dev * mFont->size);
|
|
|
|
- mImageDesc.font.face_id = (void*)mEntry;
|
|
- mImageDesc.font.pix_width = mPixelSize;
|
|
- mImageDesc.font.pix_height = mPixelSize;
|
|
- mImageDesc.image_type = 0;
|
|
+ mImageDesc->face_id = (FTC_FaceID)&mEntry;
|
|
+ mImageDesc->width = mPixelSize;
|
|
+ mImageDesc->height = mPixelSize;
|
|
+ mImageDesc->flags = 0;
|
|
|
|
nsresult rv;
|
|
mFt2 = do_GetService(NS_FREETYPE2_CONTRACTID, &rv);
|
|
@@ -1190,7 +1191,7 @@ nsFontPSFreeType::GetWidth(const PRUnich
|
|
if (!face)
|
|
return 0;
|
|
|
|
- FTC_Image_Cache iCache;
|
|
+ FTC_ImageCache iCache;
|
|
nsresult rv = mFt2->GetImageCache(&iCache);
|
|
if (NS_FAILED(rv)) {
|
|
NS_ERROR("Failed to get Image Cache");
|
|
@@ -1228,8 +1229,8 @@ nsFontPSFreeType::getFTFace()
|
|
|
|
FTC_Manager cManager;
|
|
mFt2->GetFTCacheManager(&cManager);
|
|
- nsresult rv = mFt2->ManagerLookupSize(cManager, &mImageDesc.font,
|
|
- &face, nsnull);
|
|
+ nsresult rv = mFt2->ManagerLookupFace(cManager, mImageDesc->face_id,
|
|
+ &face);
|
|
NS_ASSERTION(rv==0, "failed to get face/size");
|
|
if (rv)
|
|
return nsnull;
|
|
@@ -1622,16 +1623,16 @@ void nsFT2Type8Generator::GeneratePSFont
|
|
mEntry->GetFamilyName(fontName);
|
|
mEntry->GetStyleName(styleName);
|
|
|
|
- mImageDesc.font.face_id = (void*)mEntry;
|
|
+ mImageDesc->face_id = (FTC_FaceID)&mEntry;
|
|
// TT glyph has no relation to size
|
|
- mImageDesc.font.pix_width = 16;
|
|
- mImageDesc.font.pix_height = 16;
|
|
- mImageDesc.image_type = 0;
|
|
+ mImageDesc->width = 16;
|
|
+ mImageDesc->height = 16;
|
|
+ mImageDesc->flags = 0;
|
|
FT_Face face = nsnull;
|
|
FTC_Manager cManager;
|
|
mFt2->GetFTCacheManager(&cManager);
|
|
- nsresult rv = mFt2->ManagerLookupSize(cManager, &mImageDesc.font,
|
|
- &face, nsnull);
|
|
+ nsresult rv = mFt2->ManagerLookupFace(cManager, mImageDesc->face_id,
|
|
+ &face);
|
|
if (NS_FAILED(rv))
|
|
return;
|
|
|