AlpacaLibrary/Include/Core/Classes/FontFamily.hpp

35 lines
1.0 KiB
C++

#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(const void* Obj);
FontFamily() = default;
FontFamily(FontFamily&& Obj) = default;
FontFamily(const FontFamily& Obj) = default;
FontFamily& operator=(FontFamily&& Obj) = default;
FontFamily& operator=(const FontFamily& Obj) = default;
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;
std::int32_t GetHeightSpacing() const;
};
}
#endif // FONTFAMILY_HPP_INCLUDED