fontapi.h 404 B

1234567891011121314151617181920
  1. #ifndef __FONTAPI_H
  2. #define __FONTAPI_H
  3. #include <api/font/api_font.h>
  4. class FontApi : public api_font
  5. {
  6. public:
  7. FontApi();
  8. ~FontApi();
  9. void font_textOut(ifc_canvas *c, int style, int x, int y, int w, int h, const wchar_t *txt);
  10. int font_getInfo(ifc_canvas *c, const wchar_t *font, int infoid, const wchar_t *txt, int *w, int *h);
  11. protected:
  12. RECVS_DISPATCH;
  13. };
  14. extern api_font *fontApi;
  15. #endif