paintset.h 511 B

123456789101112131415161718
  1. #ifndef _PAINTSET_H
  2. #define _PAINTSET_H
  3. #include <wasabicfg.h>
  4. #include <api/wnd/paintsets.h>
  5. #include <tataki/canvas/ifc_canvas.h>
  6. int paintset_present(int set);
  7. #ifdef WASABI_COMPILE_IMGLDR
  8. int paintset_renderPaintSet(int type, ifc_canvas *c, const RECT *r, int alpha=255, int checkonly=FALSE);
  9. #ifdef WASABI_COMPILE_FONTS
  10. void paintset_renderTitle(const wchar_t *title, ifc_canvas *canvas, const RECT *r, int alpha=255, int dostreaks=TRUE, int doborder=TRUE);
  11. #endif
  12. #endif
  13. void paintset_reset();
  14. #endif