AlpacaLibrary/Include/Core/Classes/FontFamily.hpp

29 lines
777 B
C++
Raw Normal View History

2018-06-28 02:22:43 +00:00
#ifndef FONTFAMILY_HPP_INCLUDED
#define FONTFAMILY_HPP_INCLUDED
#include "Rasterizer2D.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
namespace Internal
{
class FontFamily : public Rasterizer2D
{
public:
FontFamily();
FontFamily(const void* Obj);
FontFamily(const FontFamily& F);
static Class GetClass();
std::vector<std::int32_t> GetGlyphHeightOffsets() const;
std::vector<std::int32_t> GetGlyphHeights() const;
std::vector<std::int32_t> GetGlyphWidthOffsets() const;
std::vector<std::int32_t> GetGlyphWidths() const;
std::vector<std::vector<std::int8_t>> GetGlyphs() const;
};
}
#endif // FONTFAMILY_HPP_INCLUDED