mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
206 lines
7.5 KiB
C++
206 lines
7.5 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is Mozilla Foundation code.
|
|
*
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Stuart Parmenter <stuart@mozilla.com>
|
|
* Masayuki Nakano <masayuki@d-toybox.com>
|
|
* John Daggett <jdaggett@mozilla.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef GFX_WINDOWSFONTS_H
|
|
#define GFX_WINDOWSFONTS_H
|
|
|
|
#include "prtypes.h"
|
|
#include "gfxTypes.h"
|
|
#include "gfxColor.h"
|
|
#include "gfxFont.h"
|
|
#include "gfxMatrix.h"
|
|
#include "gfxFontUtils.h"
|
|
#include "gfxUserFontSet.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include <usp10.h>
|
|
#include <cairo-win32.h>
|
|
|
|
class GDIFontEntry;
|
|
|
|
/**********************************************************************
|
|
*
|
|
* class gfxWindowsFont
|
|
*
|
|
**********************************************************************/
|
|
|
|
class gfxWindowsFont : public gfxFont {
|
|
public:
|
|
gfxWindowsFont(gfxFontEntry *aFontEntry, const gfxFontStyle *aFontStyle,
|
|
cairo_antialias_t anAntialiasOption = CAIRO_ANTIALIAS_DEFAULT);
|
|
virtual ~gfxWindowsFont();
|
|
|
|
virtual const gfxFont::Metrics& GetMetrics();
|
|
|
|
HFONT GetHFONT() { return mFont; }
|
|
cairo_font_face_t *CairoFontFace();
|
|
cairo_scaled_font_t *CairoScaledFont();
|
|
SCRIPT_CACHE *ScriptCache() { return &mScriptCache; }
|
|
gfxFloat GetAdjustedSize() { MakeHFONT(); return mAdjustedSize; }
|
|
|
|
virtual nsString GetUniqueName();
|
|
|
|
virtual void Draw(gfxTextRun *aTextRun, PRUint32 aStart, PRUint32 aEnd,
|
|
gfxContext *aContext, PRBool aDrawToPath, gfxPoint *aBaselineOrigin,
|
|
Spacing *aSpacing);
|
|
|
|
virtual RunMetrics Measure(gfxTextRun *aTextRun,
|
|
PRUint32 aStart, PRUint32 aEnd,
|
|
BoundingBoxType aBoundingBoxType,
|
|
gfxContext *aContextForTightBoundingBox,
|
|
Spacing *aSpacing);
|
|
|
|
virtual PRUint32 GetSpaceGlyph() {
|
|
GetMetrics(); // ensure that the metrics are computed but don't recompute them
|
|
return mSpaceGlyph;
|
|
};
|
|
|
|
PRBool IsValid() { GetMetrics(); return mIsValid; }
|
|
GDIFontEntry *GetFontEntry();
|
|
|
|
virtual void InitTextRun(gfxTextRun *aTextRun,
|
|
const PRUnichar *aString,
|
|
PRUint32 aRunStart,
|
|
PRUint32 aRunLength);
|
|
|
|
static already_AddRefed<gfxWindowsFont>
|
|
GetOrMakeFont(gfxFontEntry *aFontEntry, const gfxFontStyle *aStyle,
|
|
PRBool aNeedsBold = PR_FALSE);
|
|
|
|
protected:
|
|
HFONT MakeHFONT();
|
|
void FillLogFont(gfxFloat aSize);
|
|
|
|
HFONT mFont;
|
|
gfxFloat mAdjustedSize;
|
|
PRUint32 mSpaceGlyph;
|
|
|
|
private:
|
|
void ComputeMetrics();
|
|
|
|
SCRIPT_CACHE mScriptCache;
|
|
|
|
cairo_font_face_t *mFontFace;
|
|
cairo_scaled_font_t *mScaledFont;
|
|
|
|
gfxFont::Metrics *mMetrics;
|
|
|
|
LOGFONTW mLogFont;
|
|
|
|
cairo_antialias_t mAntialiasOption;
|
|
|
|
virtual PRBool SetupCairoFont(gfxContext *aContext);
|
|
};
|
|
|
|
/**********************************************************************
|
|
*
|
|
* class gfxWindowsFontGroup
|
|
*
|
|
**********************************************************************/
|
|
|
|
class THEBES_API gfxWindowsFontGroup : public gfxFontGroup {
|
|
|
|
public:
|
|
gfxWindowsFontGroup(const nsAString& aFamilies, const gfxFontStyle* aStyle, gfxUserFontSet *aUserFontSet);
|
|
virtual ~gfxWindowsFontGroup();
|
|
|
|
virtual gfxFontGroup *Copy(const gfxFontStyle *aStyle);
|
|
|
|
virtual gfxTextRun *MakeTextRun(const PRUnichar* aString, PRUint32 aLength,
|
|
const Parameters* aParams, PRUint32 aFlags);
|
|
virtual gfxTextRun *MakeTextRun(const PRUint8* aString, PRUint32 aLength,
|
|
const Parameters* aParams, PRUint32 aFlags);
|
|
|
|
const nsACString& GetGenericFamily() const {
|
|
return mGenericFamily;
|
|
}
|
|
|
|
void GroupFamilyListToArrayList(nsTArray<nsRefPtr<gfxFontEntry> > *list,
|
|
nsTArray<PRPackedBool> *aNeedsBold);
|
|
void FamilyListToArrayList(const nsString& aFamilies,
|
|
nsIAtom *aLangGroup,
|
|
nsTArray<nsRefPtr<gfxFontEntry> > *list);
|
|
|
|
virtual void UpdateFontList();
|
|
virtual gfxFloat GetUnderlineOffset();
|
|
|
|
gfxWindowsFont* GetFontAt(PRInt32 aFontIndex) {
|
|
// If it turns out to be hard for all clients that cache font
|
|
// groups to call UpdateFontList at appropriate times, we could
|
|
// instead consider just calling UpdateFontList from someplace
|
|
// more central (such as here).
|
|
NS_ASSERTION(!mUserFontSet || mCurrGeneration == GetGeneration(),
|
|
"Whoever was caching this font group should have "
|
|
"called UpdateFontList on it");
|
|
|
|
return static_cast<gfxWindowsFont*>(static_cast<gfxFont*>(mFonts[aFontIndex]));
|
|
}
|
|
|
|
protected:
|
|
void InitFontList();
|
|
void InitTextRunGDI(gfxContext *aContext, gfxTextRun *aRun, const char *aString, PRUint32 aLength);
|
|
void InitTextRunGDI(gfxContext *aContext, gfxTextRun *aRun, const PRUnichar *aString, PRUint32 aLength);
|
|
|
|
void InitTextRunUniscribe(gfxContext *aContext, gfxTextRun *aRun, const PRUnichar *aString, PRUint32 aLength);
|
|
|
|
already_AddRefed<gfxFont> WhichPrefFontSupportsChar(PRUint32 aCh);
|
|
already_AddRefed<gfxFont> WhichSystemFontSupportsChar(PRUint32 aCh);
|
|
|
|
already_AddRefed<gfxWindowsFont> WhichFontSupportsChar(const nsTArray<nsRefPtr<gfxFontEntry> >& fonts, PRUint32 ch);
|
|
void GetPrefFonts(nsIAtom *aLangGroup, nsTArray<nsRefPtr<gfxFontEntry> >& array);
|
|
void GetCJKPrefFonts(nsTArray<nsRefPtr<gfxFontEntry> >& array);
|
|
|
|
static PRBool FindWindowsFont(const nsAString& aName,
|
|
const nsACString& aGenericName,
|
|
void *closure);
|
|
|
|
PRBool HasFont(gfxFontEntry *aFontEntry);
|
|
|
|
private:
|
|
|
|
nsCString mGenericFamily;
|
|
nsTArray<PRPackedBool> mFontNeedsBold;
|
|
|
|
const char *mItemLangGroup; // used by pref-lang handling code
|
|
|
|
};
|
|
|
|
#endif /* GFX_WINDOWSFONTS_H */
|