font.hpp 342 B

12345678910111213141516
  1. #if defined(Hiro_Font)
  2. namespace hiro {
  3. struct pFont {
  4. static auto size(const Font& font, const string& text) -> Size;
  5. static auto size(HFONT hfont, const string& text) -> Size;
  6. static auto family(const string& family) -> string;
  7. static auto create(const Font& font) -> HFONT;
  8. static auto free(HFONT hfont) -> void;
  9. };
  10. }
  11. #endif