2005-06-24 07:31:41 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2001-2005, Haiku.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* DarkWyrm <bpmagic@columbus.rr.com>
|
2005-11-03 20:03:36 +03:00
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
2005-06-24 07:31:41 +04:00
|
|
|
*/
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
/** Manages font families and styles */
|
2005-06-24 07:31:41 +04:00
|
|
|
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
#include <FontFamily.h>
|
|
|
|
#include <FontManager.h>
|
|
|
|
#include <ServerConfig.h>
|
|
|
|
#include <ServerFont.h>
|
|
|
|
|
|
|
|
#include <Autolock.h>
|
2003-01-19 00:43:30 +03:00
|
|
|
#include <Directory.h>
|
|
|
|
#include <Entry.h>
|
|
|
|
#include <File.h>
|
2005-11-03 20:03:36 +03:00
|
|
|
#include <FindDirectory.h>
|
2003-01-19 00:43:30 +03:00
|
|
|
#include <Message.h>
|
2005-11-06 21:58:09 +03:00
|
|
|
#include <NodeMonitor.h>
|
2005-11-01 19:28:01 +03:00
|
|
|
#include <Path.h>
|
2003-01-19 00:43:30 +03:00
|
|
|
#include <String.h>
|
|
|
|
|
2005-11-01 20:49:01 +03:00
|
|
|
#include <new>
|
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
//#define PRINT_FONT_LIST
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-02 11:55:51 +03:00
|
|
|
static FTC_Manager ftmanager;
|
|
|
|
FT_Library gFreeTypeLibrary;
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager *gFontManager = NULL;
|
2003-01-19 00:43:30 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
struct FontManager::font_directory {
|
|
|
|
node_ref directory;
|
|
|
|
uid_t user;
|
|
|
|
gid_t group;
|
|
|
|
uint32 revision;
|
|
|
|
BObjectList<FontStyle> styles;
|
2003-08-02 04:13:30 +04:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
bool AlreadyScanned() const { return revision != 0; }
|
|
|
|
};
|
2005-11-01 19:28:01 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
struct FontManager::font_mapping {
|
|
|
|
BString family;
|
|
|
|
BString style;
|
|
|
|
BPath path;
|
|
|
|
};
|
2005-11-01 19:28:01 +03:00
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
|
|
|
// #pragma mark -
|
|
|
|
|
|
|
|
|
2003-01-20 02:04:58 +03:00
|
|
|
//! Does basic set up so that directories can be scanned
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager::FontManager()
|
2005-11-03 20:03:36 +03:00
|
|
|
: BLooper("Font Manager"),
|
2005-06-24 07:31:41 +04:00
|
|
|
fFamilies(20),
|
2005-11-06 21:58:09 +03:00
|
|
|
fScanned(false),
|
2005-11-01 20:49:01 +03:00
|
|
|
fNextID(0)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-02 11:55:51 +03:00
|
|
|
fInitStatus = FT_Init_FreeType(&gFreeTypeLibrary) == 0 ? B_OK : B_ERROR;
|
2003-01-19 00:43:30 +03:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
if (fInitStatus == B_OK) {
|
2005-11-06 21:58:09 +03:00
|
|
|
_AddSystemPaths();
|
|
|
|
_LoadRecentFontMappings();
|
|
|
|
|
2005-11-09 22:16:25 +03:00
|
|
|
fInitStatus = _SetDefaultFonts();
|
2005-11-03 20:03:36 +03:00
|
|
|
}
|
|
|
|
|
2003-01-19 00:43:30 +03:00
|
|
|
/*
|
|
|
|
Fire up the font caching subsystem.
|
|
|
|
The three zeros tell FreeType to use the defaults, which are 2 faces,
|
|
|
|
4 face sizes, and a maximum of 200000 bytes. I will probably change
|
|
|
|
these numbers in the future to maximize performance for your "average"
|
|
|
|
application.
|
|
|
|
*/
|
2005-11-02 11:55:51 +03:00
|
|
|
// if (FTC_Manager_New(gFreeTypeLibrary, 0, 0, 0, &face_requester, NULL, &ftmanager) != 0)
|
2005-10-20 14:01:49 +04:00
|
|
|
// fInit = false;
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-20 02:04:58 +03:00
|
|
|
//! Frees items allocated in the constructor and shuts down FreeType
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager::~FontManager()
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
|
|
|
FTC_Manager_Done(ftmanager);
|
2005-11-02 11:55:51 +03:00
|
|
|
FT_Done_FreeType(gFreeTypeLibrary);
|
2005-11-08 22:04:01 +03:00
|
|
|
|
|
|
|
// we need to make sure the hash table doesn't delete the font styles;
|
|
|
|
// that's already done by the lists
|
|
|
|
fStyleHashTable.MakeEmpty(false);
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
void
|
|
|
|
FontManager::MessageReceived(BMessage* message)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-06 21:58:09 +03:00
|
|
|
switch (message->what) {
|
|
|
|
case B_NODE_MONITOR:
|
|
|
|
// TODO: monitor fonts and update font_directories
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
FontManager::SaveRecentFontMappings()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
FontManager::_LoadRecentFontMappings()
|
|
|
|
{
|
|
|
|
return false;
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-20 02:04:58 +03:00
|
|
|
/*!
|
2005-11-03 20:03:36 +03:00
|
|
|
\brief Removes a font family from the font list
|
|
|
|
\param family The family to remove
|
2003-01-20 02:04:58 +03:00
|
|
|
*/
|
2005-11-03 20:03:36 +03:00
|
|
|
void
|
|
|
|
FontManager::_RemoveFamily(const char *familyName)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-06-24 07:31:41 +04:00
|
|
|
FontFamily *family = GetFamily(familyName);
|
2005-11-03 20:03:36 +03:00
|
|
|
if (family) {
|
2005-11-08 19:49:33 +03:00
|
|
|
// remove styles from hash
|
|
|
|
for (int32 i = 0; i < family->CountStyles(); i++) {
|
|
|
|
FontStyle* style = family->StyleAt(i);
|
|
|
|
|
|
|
|
fStyleHashTable.RemoveItem(*style);
|
|
|
|
}
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
fFamilies.RemoveItem(family);
|
|
|
|
delete family;
|
|
|
|
}
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-09 22:16:25 +03:00
|
|
|
FontStyle*
|
|
|
|
FontManager::_GetDefaultStyle(const char *familyName, const char *styleName,
|
|
|
|
const char *fallbackFamily, const char *fallbackStyle,
|
|
|
|
uint16 fallbackFace)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-09 22:16:25 +03:00
|
|
|
// try to find a matching font
|
|
|
|
|
|
|
|
FontStyle* style = GetStyle(familyName, styleName);
|
2005-11-03 20:03:36 +03:00
|
|
|
if (style == NULL) {
|
2005-11-09 22:16:25 +03:00
|
|
|
style = GetStyle(fallbackFamily, fallbackStyle);
|
2005-11-04 12:49:25 +03:00
|
|
|
if (style == NULL) {
|
2005-11-09 22:16:25 +03:00
|
|
|
style = FindStyleMatchingFace(fallbackFace);
|
|
|
|
if (style == NULL && FamilyAt(0) != NULL)
|
2005-11-04 12:49:25 +03:00
|
|
|
style = FamilyAt(0)->StyleAt(0);
|
|
|
|
}
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
2005-11-03 20:03:36 +03:00
|
|
|
|
2005-11-09 22:16:25 +03:00
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Sets the fonts that will be used when you create an empty
|
|
|
|
ServerFont without specifying a style, as well as the default
|
|
|
|
Desktop fonts if there are no settings available.
|
|
|
|
*/
|
|
|
|
status_t
|
|
|
|
FontManager::_SetDefaultFonts()
|
|
|
|
{
|
|
|
|
FontStyle* style = _GetDefaultStyle(DEFAULT_PLAIN_FONT_FAMILY,
|
|
|
|
DEFAULT_PLAIN_FONT_STYLE, FALLBACK_PLAIN_FONT_FAMILY,
|
|
|
|
DEFAULT_PLAIN_FONT_STYLE,
|
|
|
|
B_REGULAR_FACE);
|
2005-11-06 21:58:09 +03:00
|
|
|
if (style == NULL)
|
|
|
|
return B_ERROR;
|
|
|
|
|
2005-11-09 22:16:25 +03:00
|
|
|
fDefaultPlainFont = new (nothrow) ServerFont(*style, DEFAULT_PLAIN_FONT_SIZE);
|
|
|
|
if (fDefaultPlainFont == NULL)
|
|
|
|
return B_NO_MEMORY;
|
|
|
|
|
|
|
|
style = _GetDefaultStyle(DEFAULT_BOLD_FONT_FAMILY, DEFAULT_BOLD_FONT_STYLE,
|
|
|
|
FALLBACK_BOLD_FONT_FAMILY, DEFAULT_BOLD_FONT_STYLE, B_BOLD_FACE);
|
|
|
|
|
|
|
|
fDefaultBoldFont = new (nothrow) ServerFont(*style, DEFAULT_BOLD_FONT_SIZE);
|
|
|
|
if (fDefaultBoldFont == NULL)
|
|
|
|
return B_NO_MEMORY;
|
|
|
|
|
|
|
|
style = _GetDefaultStyle(DEFAULT_FIXED_FONT_FAMILY, DEFAULT_FIXED_FONT_STYLE,
|
|
|
|
FALLBACK_FIXED_FONT_FAMILY, DEFAULT_FIXED_FONT_STYLE, B_REGULAR_FACE);
|
|
|
|
|
|
|
|
fDefaultFixedFont = new (nothrow) ServerFont(*style, DEFAULT_FIXED_FONT_SIZE);
|
|
|
|
if (fDefaultFixedFont == NULL)
|
2005-11-06 21:58:09 +03:00
|
|
|
return B_NO_MEMORY;
|
|
|
|
|
2005-11-09 22:16:25 +03:00
|
|
|
fDefaultFixedFont->SetSpacing(B_FIXED_SPACING);
|
2005-11-06 21:58:09 +03:00
|
|
|
return B_OK;
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-08-12 18:55:46 +04:00
|
|
|
void
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::_AddSystemPaths()
|
2005-08-12 18:55:46 +04:00
|
|
|
{
|
2005-11-03 20:03:36 +03:00
|
|
|
BPath path;
|
|
|
|
if (find_directory(B_BEOS_FONTS_DIRECTORY, &path) == B_OK)
|
|
|
|
_AddPath(path.Path());
|
|
|
|
|
2005-08-12 18:55:46 +04:00
|
|
|
// We don't scan these in test mode to help shave off some startup time
|
|
|
|
#if !TEST_MODE
|
2005-11-03 20:03:36 +03:00
|
|
|
if (find_directory(B_COMMON_FONTS_DIRECTORY, &path) == B_OK)
|
|
|
|
_AddPath(path.Path());
|
2005-08-12 18:55:46 +04:00
|
|
|
#endif
|
|
|
|
}
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-01 20:49:01 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
void
|
|
|
|
FontManager::_ScanFontsIfNecessary()
|
|
|
|
{
|
|
|
|
if (!fScanned)
|
|
|
|
_ScanFonts();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//! Scans all currently known font directories
|
|
|
|
void
|
|
|
|
FontManager::_ScanFonts()
|
|
|
|
{
|
|
|
|
if (fScanned)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (int32 i = fDirectories.CountItems(); i-- > 0;) {
|
|
|
|
font_directory* directory = fDirectories.ItemAt(i);
|
|
|
|
|
|
|
|
if (directory->AlreadyScanned())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
_ScanFontDirectory(*directory);
|
|
|
|
}
|
|
|
|
|
|
|
|
fScanned = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-01 20:49:01 +03:00
|
|
|
/*!
|
|
|
|
\brief Adds the FontFamily/FontStyle that is represented by this path.
|
|
|
|
*/
|
2005-11-06 21:58:09 +03:00
|
|
|
status_t
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager::_AddFont(BPath &path)
|
2005-11-01 20:49:01 +03:00
|
|
|
{
|
|
|
|
FT_Face face;
|
2005-11-02 11:55:51 +03:00
|
|
|
FT_Error error = FT_New_Face(gFreeTypeLibrary, path.Path(), 0, &face);
|
2005-11-01 20:49:01 +03:00
|
|
|
if (error != 0)
|
2005-11-06 21:58:09 +03:00
|
|
|
return B_ERROR;
|
2005-11-01 20:49:01 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
FontFamily *family = _FindFamily(face->family_name);
|
2005-11-01 20:49:01 +03:00
|
|
|
if (family != NULL && family->HasStyle(face->style_name)) {
|
|
|
|
// prevent adding the same style twice
|
|
|
|
// (this indicates a problem with the installed fonts maybe?)
|
|
|
|
FT_Done_Face(face);
|
2005-11-06 21:58:09 +03:00
|
|
|
return B_OK;
|
2005-11-01 20:49:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (family == NULL) {
|
|
|
|
family = new (nothrow) FontFamily(face->family_name, fNextID++);
|
|
|
|
if (family == NULL
|
|
|
|
|| !fFamilies.AddItem(family)) {
|
|
|
|
delete family;
|
|
|
|
FT_Done_Face(face);
|
2005-11-06 21:58:09 +03:00
|
|
|
return B_NO_MEMORY;
|
2005-11-01 20:49:01 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef PRINT_FONT_LIST
|
|
|
|
printf("\tFont Style: %s, %s\n", face->family_name, face->style_name);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// the FontStyle takes over ownership of the FT_Face object
|
|
|
|
FontStyle *style = new FontStyle(path.Path(), face);
|
|
|
|
if (!family->AddStyle(style))
|
|
|
|
delete style;
|
2005-11-06 21:58:09 +03:00
|
|
|
|
2005-11-08 19:49:33 +03:00
|
|
|
fStyleHashTable.AddItem(style);
|
2005-11-06 21:58:09 +03:00
|
|
|
return B_OK;
|
2005-11-01 20:49:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
status_t
|
|
|
|
FontManager::_AddPath(const char* path)
|
|
|
|
{
|
|
|
|
BEntry entry;
|
|
|
|
status_t status = entry.SetTo(path);
|
|
|
|
if (status != B_OK)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
return _AddPath(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::_AddPath(BEntry& entry, font_directory** _newDirectory)
|
2005-11-03 20:03:36 +03:00
|
|
|
{
|
2005-11-06 21:58:09 +03:00
|
|
|
node_ref nodeRef;
|
|
|
|
status_t status = entry.GetNodeRef(&nodeRef);
|
2005-11-03 20:03:36 +03:00
|
|
|
if (status != B_OK)
|
|
|
|
return status;
|
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
// check if we are already know this directory
|
|
|
|
|
|
|
|
for (int32 i = fDirectories.CountItems(); i-- > 0;) {
|
|
|
|
font_directory* directory = fDirectories.ItemAt(i);
|
|
|
|
|
|
|
|
if (directory->directory == nodeRef) {
|
|
|
|
if (_newDirectory)
|
|
|
|
*_newDirectory = NULL;
|
|
|
|
return B_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// it's a new one, so let's add it
|
|
|
|
|
|
|
|
font_directory* directory = new (nothrow) font_directory;
|
|
|
|
if (directory == NULL)
|
|
|
|
return B_NO_MEMORY;
|
|
|
|
|
|
|
|
struct stat stat;
|
|
|
|
status = entry.GetStat(&stat);
|
|
|
|
if (status != B_OK) {
|
|
|
|
delete directory;
|
2005-11-03 20:03:36 +03:00
|
|
|
return status;
|
2005-11-06 21:58:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
directory->directory = nodeRef;
|
|
|
|
directory->user = stat.st_uid;
|
|
|
|
directory->group = stat.st_gid;
|
|
|
|
directory->revision = 0;
|
|
|
|
|
|
|
|
status = watch_node(&nodeRef, B_WATCH_DIRECTORY, this);
|
|
|
|
if (status != B_OK) {
|
|
|
|
// we cannot watch this directory - while this is unfortunate,
|
|
|
|
// it's not a critical error
|
|
|
|
printf("could not watch directory %ld:%Ld\n", nodeRef.device, nodeRef.node);
|
|
|
|
// TODO: should go into syslog()
|
|
|
|
}
|
2005-11-03 20:03:36 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
fDirectories.AddItem(directory);
|
|
|
|
|
|
|
|
if (_newDirectory)
|
|
|
|
*_newDirectory = directory;
|
|
|
|
|
|
|
|
fScanned = false;
|
2005-11-03 20:03:36 +03:00
|
|
|
return B_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-20 02:04:58 +03:00
|
|
|
/*!
|
|
|
|
\brief Scan a folder for all valid fonts
|
2005-11-01 20:49:01 +03:00
|
|
|
\param directoryPath Path of the folder to scan.
|
2003-01-20 02:04:58 +03:00
|
|
|
*/
|
2005-06-24 07:31:41 +04:00
|
|
|
status_t
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::_ScanFontDirectory(font_directory& fontDirectory)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
|
|
|
// This bad boy does all the real work. It loads each entry in the
|
|
|
|
// directory. If a valid font file, it adds both the family and the style.
|
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
BDirectory directory;
|
|
|
|
status_t status = directory.SetTo(&fontDirectory.directory);
|
2005-06-24 07:31:41 +04:00
|
|
|
if (status != B_OK)
|
|
|
|
return status;
|
2003-01-19 00:43:30 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
BEntry entry;
|
|
|
|
while (directory.GetNextEntry(&entry) == B_OK) {
|
2005-11-03 20:03:36 +03:00
|
|
|
if (entry.IsDirectory()) {
|
|
|
|
// scan this directory recursively
|
2005-11-06 21:58:09 +03:00
|
|
|
font_directory* newDirectory;
|
|
|
|
if (_AddPath(entry, &newDirectory) == B_OK && newDirectory != NULL)
|
|
|
|
_ScanFontDirectory(*newDirectory);
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
continue;
|
|
|
|
}
|
2005-06-03 23:50:30 +04:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
BPath path;
|
|
|
|
status = entry.GetPath(&path);
|
|
|
|
if (status < B_OK)
|
|
|
|
continue;
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// TODO: Commenting this out makes my "Unicode glyph lookup"
|
|
|
|
// work with our default fonts. The real fix is to select the
|
|
|
|
// Unicode char map (if supported), and/or adjust the
|
|
|
|
// utf8 -> glyph-index mapping everywhere to handle other
|
|
|
|
// char maps. We could also ignore fonts that don't support
|
|
|
|
// the Unicode lookup as a temporary "solution".
|
2005-06-24 07:31:41 +04:00
|
|
|
#if 0
|
|
|
|
FT_CharMap charmap = _GetSupportedCharmap(face);
|
|
|
|
if (!charmap) {
|
2003-01-19 00:43:30 +03:00
|
|
|
FT_Done_Face(face);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
face->charmap = charmap;
|
|
|
|
#endif
|
|
|
|
|
2005-11-01 20:49:01 +03:00
|
|
|
_AddFont(path);
|
|
|
|
// takes over ownership of the FT_Face object
|
2005-06-24 07:31:41 +04:00
|
|
|
}
|
2003-01-19 00:43:30 +03:00
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
fontDirectory.revision = 1;
|
2003-01-19 00:43:30 +03:00
|
|
|
return B_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-20 02:04:58 +03:00
|
|
|
/*!
|
|
|
|
\brief Finds and returns the first valid charmap in a font
|
|
|
|
|
|
|
|
\param face Font handle obtained from FT_Load_Face()
|
|
|
|
\return An FT_CharMap or NULL if unsuccessful
|
|
|
|
*/
|
2005-06-24 07:31:41 +04:00
|
|
|
FT_CharMap
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager::_GetSupportedCharmap(const FT_Face& face)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-06-24 07:31:41 +04:00
|
|
|
for (int32 i = 0; i < face->num_charmaps; i++) {
|
|
|
|
FT_CharMap charmap = face->charmaps[i];
|
|
|
|
|
|
|
|
switch (charmap->platform_id) {
|
2003-01-19 00:43:30 +03:00
|
|
|
case 3:
|
|
|
|
// if Windows Symbol or Windows Unicode
|
2005-06-24 07:31:41 +04:00
|
|
|
if (charmap->encoding_id == 0 || charmap->encoding_id == 1)
|
2003-01-19 00:43:30 +03:00
|
|
|
return charmap;
|
|
|
|
break;
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-19 00:43:30 +03:00
|
|
|
case 1:
|
|
|
|
// if Apple Unicode
|
2005-06-24 07:31:41 +04:00
|
|
|
if (charmap->encoding_id == 0)
|
2003-01-19 00:43:30 +03:00
|
|
|
return charmap;
|
|
|
|
break;
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-19 00:43:30 +03:00
|
|
|
case 0:
|
|
|
|
// if Apple Roman
|
2005-06-24 07:31:41 +04:00
|
|
|
if (charmap->encoding_id == 0)
|
2003-01-19 00:43:30 +03:00
|
|
|
return charmap;
|
|
|
|
break;
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-19 00:43:30 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
return NULL;
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-07 19:19:40 +03:00
|
|
|
int32
|
|
|
|
FontManager::CheckRevision(uid_t user)
|
|
|
|
{
|
|
|
|
BAutolock locker(this);
|
|
|
|
int32 revision = 0;
|
|
|
|
|
|
|
|
_ScanFontsIfNecessary();
|
|
|
|
|
|
|
|
for (int32 i = 0; i < fDirectories.CountItems(); i++) {
|
|
|
|
font_directory* directory = fDirectories.ItemAt(i);
|
|
|
|
|
|
|
|
// TODO: for now, add all directories
|
|
|
|
revision += directory->revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
return revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
/*!
|
|
|
|
\brief Counts the number of font families available
|
|
|
|
\return The number of unique font families currently available
|
|
|
|
*/
|
|
|
|
int32
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::CountFamilies()
|
2005-11-03 20:03:36 +03:00
|
|
|
{
|
2005-11-06 21:58:09 +03:00
|
|
|
_ScanFontsIfNecessary();
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
return fFamilies.CountItems();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Counts the number of styles available in a font family
|
|
|
|
\param family Name of the font family to scan
|
|
|
|
\return The number of font styles currently available for the font family
|
|
|
|
*/
|
|
|
|
int32
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::CountStyles(const char *familyName)
|
2005-11-03 20:03:36 +03:00
|
|
|
{
|
2005-11-06 21:58:09 +03:00
|
|
|
_ScanFontsIfNecessary();
|
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
FontFamily *family = GetFamily(familyName);
|
|
|
|
if (family)
|
|
|
|
return family->CountStyles();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-01 19:28:01 +03:00
|
|
|
FontFamily*
|
2005-11-03 20:03:36 +03:00
|
|
|
FontManager::FamilyAt(int32 index) const
|
2005-11-01 19:28:01 +03:00
|
|
|
{
|
|
|
|
return fFamilies.ItemAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FontFamily*
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::_FindFamily(const char* name) const
|
2005-11-01 19:28:01 +03:00
|
|
|
{
|
|
|
|
if (name == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
int32 count = fFamilies.CountItems();
|
|
|
|
|
|
|
|
for (int32 i = 0; i < count; i++) {
|
|
|
|
FontFamily* family = fFamilies.ItemAt(i);
|
|
|
|
if (!strcmp(family->Name(), name))
|
|
|
|
return family;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-06 21:58:09 +03:00
|
|
|
/*!
|
|
|
|
\brief Locates a FontFamily object by name
|
|
|
|
\param name The family to find
|
|
|
|
\return Pointer to the specified family or NULL if not found.
|
|
|
|
*/
|
|
|
|
FontFamily*
|
|
|
|
FontManager::GetFamily(const char* name)
|
|
|
|
{
|
|
|
|
if (name == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
FontFamily* family = _FindFamily(name);
|
|
|
|
if (family != NULL)
|
|
|
|
return family;
|
|
|
|
|
|
|
|
if (fScanned)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// try again
|
|
|
|
family = _FindFamily(name);
|
|
|
|
if (family != NULL)
|
|
|
|
return family;
|
|
|
|
|
|
|
|
// try font mappings before failing
|
|
|
|
for (int32 i = 0; i < fMappings.CountItems(); i++) {
|
|
|
|
font_mapping* mapping = fMappings.ItemAt(i);
|
|
|
|
|
|
|
|
if (mapping->family == name) {
|
|
|
|
if (_AddFont(mapping->path) == B_OK)
|
|
|
|
return _FindFamily(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ScanFonts();
|
|
|
|
return _FindFamily(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-01 19:28:01 +03:00
|
|
|
FontFamily*
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager::GetFamily(uint16 familyID) const
|
2005-11-01 19:28:01 +03:00
|
|
|
{
|
2005-11-08 19:49:33 +03:00
|
|
|
FontKey key(familyID, 0);
|
|
|
|
FontStyle* style = (FontStyle*)fStyleHashTable.GetValue(key);
|
|
|
|
if (style != NULL)
|
|
|
|
return style->Family();
|
2005-11-01 19:28:01 +03:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
FontStyle*
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::GetStyleByIndex(const char* familyName, int32 index)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-06-24 07:31:41 +04:00
|
|
|
FontFamily* family = GetFamily(familyName);
|
2005-11-01 19:28:01 +03:00
|
|
|
if (family != NULL)
|
|
|
|
return family->StyleAt(index);
|
2003-01-19 00:43:30 +03:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-01 19:28:01 +03:00
|
|
|
/*!
|
|
|
|
\brief Retrieves the FontStyle object that comes closest to the one specified
|
|
|
|
|
|
|
|
\param family The font's family or NULL in which case \a familyID is used
|
|
|
|
\param style The font's style or NULL in which case \a styleID is used
|
|
|
|
\param familyID will only be used if \a family is NULL (or empty)
|
|
|
|
\param styleID will only be used if \a style is NULL (or empty)
|
|
|
|
\param face is used to specify the style if both \a style is NULL or empty
|
|
|
|
and styleID is 0xffff.
|
|
|
|
|
|
|
|
\return The FontStyle having those attributes or NULL if not available
|
|
|
|
*/
|
|
|
|
FontStyle*
|
2005-11-02 16:25:39 +03:00
|
|
|
FontManager::GetStyle(const char* familyName, const char* styleName, uint16 familyID,
|
2005-11-01 19:28:01 +03:00
|
|
|
uint16 styleID, uint16 face)
|
|
|
|
{
|
|
|
|
FontFamily* family;
|
|
|
|
|
|
|
|
// find family
|
|
|
|
|
|
|
|
if (familyName != NULL && familyName[0])
|
|
|
|
family = GetFamily(familyName);
|
|
|
|
else
|
|
|
|
family = GetFamily(familyID);
|
|
|
|
|
|
|
|
if (family == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// find style
|
|
|
|
|
|
|
|
if (styleName != NULL && styleName[0])
|
|
|
|
return family->GetStyle(styleName);
|
|
|
|
|
|
|
|
if (styleID != 0xffff)
|
|
|
|
return family->GetStyleByID(styleID);
|
|
|
|
|
|
|
|
// try to get from face
|
|
|
|
return family->GetStyleMatchingFace(face);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
/*!
|
|
|
|
\brief Retrieves the FontStyle object
|
|
|
|
\param family ID for the font's family
|
|
|
|
\param style ID of the font's style
|
|
|
|
\return The FontStyle having those attributes or NULL if not available
|
|
|
|
*/
|
2005-06-24 07:31:41 +04:00
|
|
|
FontStyle*
|
2005-11-06 21:58:09 +03:00
|
|
|
FontManager::GetStyle(uint16 familyID, uint16 styleID) const
|
2005-01-17 05:05:50 +03:00
|
|
|
{
|
2005-11-08 19:49:33 +03:00
|
|
|
FontKey key(familyID, styleID);
|
|
|
|
return (FontStyle*)fStyleHashTable.GetValue(key);
|
2005-01-17 05:05:50 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2003-01-20 02:04:58 +03:00
|
|
|
/*!
|
2005-11-03 20:03:36 +03:00
|
|
|
\brief If you don't find your preferred font style, but are anxious
|
|
|
|
to have one fitting your needs, you may want to use this method.
|
2003-01-20 02:04:58 +03:00
|
|
|
*/
|
2005-11-03 20:03:36 +03:00
|
|
|
FontStyle*
|
|
|
|
FontManager::FindStyleMatchingFace(uint16 face) const
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-03 20:03:36 +03:00
|
|
|
int32 count = fFamilies.CountItems();
|
2003-01-19 00:43:30 +03:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
for (int32 i = 0; i < count; i++) {
|
|
|
|
FontFamily* family = fFamilies.ItemAt(i);
|
|
|
|
FontStyle* style = family->GetStyleMatchingFace(face);
|
|
|
|
if (style != NULL)
|
|
|
|
return style;
|
|
|
|
}
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
return NULL;
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
const ServerFont*
|
2005-11-09 22:16:25 +03:00
|
|
|
FontManager::DefaultPlainFont() const
|
|
|
|
{
|
|
|
|
return fDefaultPlainFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const ServerFont*
|
|
|
|
FontManager::DefaultBoldFont() const
|
|
|
|
{
|
|
|
|
return fDefaultBoldFont;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const ServerFont*
|
|
|
|
FontManager::DefaultFixedFont() const
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-09 22:16:25 +03:00
|
|
|
return fDefaultFixedFont;
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
void
|
|
|
|
FontManager::AttachUser(uid_t userID)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-03 20:03:36 +03:00
|
|
|
BAutolock locker(this);
|
2003-01-19 00:43:30 +03:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
/*
|
|
|
|
BPath path;
|
|
|
|
status_t status = find_directory(B_USER_FONTS_DIRECTORY, &path);
|
|
|
|
if (status != B_OK)
|
|
|
|
return status;
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
_AddPath(path.Path());
|
2003-01-20 20:31:44 +03:00
|
|
|
*/
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|
2005-06-24 07:31:41 +04:00
|
|
|
|
2005-11-03 20:03:36 +03:00
|
|
|
void
|
|
|
|
FontManager::DetachUser(uid_t userID)
|
2003-01-19 00:43:30 +03:00
|
|
|
{
|
2005-11-03 20:03:36 +03:00
|
|
|
BAutolock locker(this);
|
2003-01-19 00:43:30 +03:00
|
|
|
}
|
|
|
|
|