AlpacaLibrary/Include/Core/Classes/FontFamily.hpp

35 lines
1.0 KiB
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(const void* Obj);
2018-12-27 18:17:09 +00:00
FontFamily() = default;
FontFamily(FontFamily&& Obj) = default;
FontFamily(const FontFamily& Obj) = default;
FontFamily& operator=(FontFamily&& Obj) = default;
FontFamily& operator=(const FontFamily& Obj) = default;
2018-06-28 02:22:43 +00:00
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;
2018-07-09 15:21:35 +00:00
std::int32_t GetHeightSpacing() const;
2018-06-28 02:22:43 +00:00
};
}
#endif // FONTFAMILY_HPP_INCLUDED