mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
Add Roboto font, misc icons and text things
This commit is contained in:
@@ -1,13 +1,24 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#include "FontHacks.h"
|
||||
|
||||
namespace PortabilityLayer
|
||||
{
|
||||
{
|
||||
class FontFamily;
|
||||
class HostFont;
|
||||
class RenderedFont;
|
||||
|
||||
class FontManager
|
||||
{
|
||||
public:
|
||||
virtual void Init() = 0;
|
||||
virtual void Shutdown() = 0;
|
||||
|
||||
virtual FontFamily *GetSystemFont(int fontSize, int variationFlags) const = 0;
|
||||
virtual FontFamily *GetApplicationFont(int fontSize, int variationFlags) const = 0;
|
||||
|
||||
virtual RenderedFont *GetRenderedFont(HostFont *font, int size, FontHacks fontHacks) = 0;
|
||||
|
||||
static FontManager *GetInstance();
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user