Finished FontServer documentation, added Angle class

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2523 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
DarkWyrm
2003-01-20 17:31:44 +00:00
parent 6fa8ddedd0
commit be21660d1c
3 changed files with 508 additions and 0 deletions
+16
View File
@@ -452,6 +452,14 @@ bool FontServer::SetSystemPlain(const char *family, const char *style, float siz
return true;
}
/*!
\brief Sets the system's bold font to the specified family and style
\param family Name of the font's family
\param style Name of the style desired
\param size Size desired
\return true if successful, false if not.
*/
bool FontServer::SetSystemBold(const char *family, const char *style, float size)
{
FontFamily *fam=_FindFamily(family);
@@ -467,6 +475,14 @@ bool FontServer::SetSystemBold(const char *family, const char *style, float size
return true;
}
/*!
\brief Sets the system's fixed font to the specified family and style
\param family Name of the font's family
\param style Name of the style desired
\param size Size desired
\return true if successful, false if not.
*/
bool FontServer::SetSystemFixed(const char *family, const char *style, float size)
{
FontFamily *fam=_FindFamily(family);