Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. * libcucul Canvas for ultrafast compositing of Unicode letters
  3. * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the Do What The Fuck You Want To
  10. * Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. */
  13. /** \file cucul.h
  14. * \version \$Id$
  15. * \author Sam Hocevar <sam@zoy.org>
  16. * \brief The \e libcucul public header.
  17. *
  18. * This header contains the public types and functions that applications
  19. * using \e libcucul may use.
  20. */
  21. #ifndef __CUCUL_H__
  22. #define __CUCUL_H__
  23. /** libcucul API version */
  24. #define CUCUL_API_VERSION_1
  25. #ifdef __cplusplus
  26. extern "C"
  27. {
  28. #endif
  29. /** \e libcucul canvas */
  30. typedef struct cucul_canvas cucul_canvas_t;
  31. /** dither structure */
  32. typedef struct cucul_dither cucul_dither_t;
  33. /** data buffer structure */
  34. typedef struct cucul_buffer cucul_buffer_t;
  35. /** font structure */
  36. typedef struct cucul_font cucul_font_t;
  37. /** \defgroup attributes libcucul attribute definitions
  38. *
  39. * Colours and styles that can be used with cucul_set_attr().
  40. *
  41. * @{ */
  42. #define CUCUL_BLACK 0x00 /**< The colour index for black. */
  43. #define CUCUL_BLUE 0x01 /**< The colour index for blue. */
  44. #define CUCUL_GREEN 0x02 /**< The colour index for green. */
  45. #define CUCUL_CYAN 0x03 /**< The colour index for cyan. */
  46. #define CUCUL_RED 0x04 /**< The colour index for red. */
  47. #define CUCUL_MAGENTA 0x05 /**< The colour index for magenta. */
  48. #define CUCUL_BROWN 0x06 /**< The colour index for brown. */
  49. #define CUCUL_LIGHTGRAY 0x07 /**< The colour index for light gray. */
  50. #define CUCUL_DARKGRAY 0x08 /**< The colour index for dark gray. */
  51. #define CUCUL_LIGHTBLUE 0x09 /**< The colour index for blue. */
  52. #define CUCUL_LIGHTGREEN 0x0a /**< The colour index for light green. */
  53. #define CUCUL_LIGHTCYAN 0x0b /**< The colour index for light cyan. */
  54. #define CUCUL_LIGHTRED 0x0c /**< The colour index for light red. */
  55. #define CUCUL_LIGHTMAGENTA 0x0d /**< The colour index for light magenta. */
  56. #define CUCUL_YELLOW 0x0e /**< The colour index for yellow. */
  57. #define CUCUL_WHITE 0x0f /**< The colour index for white. */
  58. #define CUCUL_DEFAULT 0x10 /**< The output driver's default colour. */
  59. #define CUCUL_TRANSPARENT 0x20 /**< The transparent colour. */
  60. #define CUCUL_BOLD 0x01 /**< The style mask for bold. */
  61. #define CUCUL_ITALICS 0x02 /**< The style mask for italics. */
  62. #define CUCUL_UNDERLINE 0x04 /**< The style mask for underline. */
  63. #define CUCUL_BLINK 0x08 /**< The style mask for blink. */
  64. /* @} */
  65. /** \defgroup cucul libcucul basic functions
  66. *
  67. * These functions provide the basic \e libcaca routines for library
  68. * initialisation, system information retrieval and configuration.
  69. *
  70. * @{ */
  71. cucul_canvas_t * cucul_create_canvas(unsigned int, unsigned int);
  72. int cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int);
  73. unsigned int cucul_get_canvas_width(cucul_canvas_t *);
  74. unsigned int cucul_get_canvas_height(cucul_canvas_t *);
  75. int cucul_free_canvas(cucul_canvas_t *);
  76. int cucul_rand(int, int);
  77. /* @} */
  78. /** \defgroup buffer libcucul buffer handling
  79. *
  80. * These functions provide methods to handle libcucul buffers.
  81. *
  82. * @{ */
  83. cucul_buffer_t *cucul_load_memory(void *, unsigned long int);
  84. cucul_buffer_t *cucul_load_file(char const *);
  85. unsigned long int cucul_get_buffer_size(cucul_buffer_t *);
  86. void * cucul_get_buffer_data(cucul_buffer_t *);
  87. int cucul_free_buffer(cucul_buffer_t *);
  88. /* @} */
  89. /** \defgroup canvas libcucul canvas drawing
  90. *
  91. * These functions provide low-level character printing routines and
  92. * higher level graphics functions.
  93. *
  94. * @{ */
  95. #define CUCUL_MAGIC_FULLWIDTH 0x000ffffe /**< Used to indicate that the previous character was a fullwidth glyph. */
  96. unsigned long int cucul_get_attr(cucul_canvas_t *, int, int);
  97. int cucul_set_attr(cucul_canvas_t *, unsigned long int);
  98. int cucul_set_color_ansi(cucul_canvas_t *, unsigned char, unsigned char);
  99. int cucul_set_color_argb(cucul_canvas_t *, unsigned int, unsigned int);
  100. int cucul_putchar(cucul_canvas_t *, int, int, unsigned long int);
  101. unsigned long int cucul_getchar(cucul_canvas_t *, int, int);
  102. int cucul_putstr(cucul_canvas_t *, int, int, char const *);
  103. int cucul_printf(cucul_canvas_t *, int, int, char const *, ...);
  104. int cucul_clear_canvas(cucul_canvas_t *);
  105. int cucul_blit(cucul_canvas_t *, int, int, cucul_canvas_t const *,
  106. cucul_canvas_t const *);
  107. int cucul_set_canvas_boundaries(cucul_canvas_t *, int, int,
  108. unsigned int, unsigned int);
  109. /* @} */
  110. /** \defgroup transform libcucul canvas transformation
  111. *
  112. * These functions perform horizontal and vertical canvas flipping.
  113. *
  114. * @{ */
  115. int cucul_invert(cucul_canvas_t *);
  116. int cucul_flip(cucul_canvas_t *);
  117. int cucul_flop(cucul_canvas_t *);
  118. int cucul_rotate(cucul_canvas_t *);
  119. /* @} */
  120. /** \defgroup charset libcucul character set conversions
  121. *
  122. * These functions perform conversions between usual character sets.
  123. *
  124. * @{ */
  125. extern unsigned long int cucul_utf8_to_utf32(char const *, unsigned int *);
  126. extern unsigned int cucul_utf32_to_utf8(char *, unsigned long int);
  127. extern unsigned char cucul_utf32_to_cp437(unsigned long int);
  128. extern unsigned long int cucul_cp437_to_utf32(unsigned char);
  129. extern int cucul_utf32_is_fullwidth(unsigned long int);
  130. /* @} */
  131. /** \defgroup prim libcucul primitives drawing
  132. *
  133. * These functions provide routines for primitive drawing, such as lines,
  134. * boxes, triangles and ellipses.
  135. *
  136. * @{ */
  137. int cucul_draw_line(cucul_canvas_t *, int, int, int, int, char const *);
  138. int cucul_draw_polyline(cucul_canvas_t *, int const x[], int const y[], int, char const *);
  139. int cucul_draw_thin_line(cucul_canvas_t *, int, int, int, int);
  140. int cucul_draw_thin_polyline(cucul_canvas_t *, int const x[], int const y[], int);
  141. int cucul_draw_circle(cucul_canvas_t *, int, int, int, char const *);
  142. int cucul_draw_ellipse(cucul_canvas_t *, int, int, int, int, char const *);
  143. int cucul_draw_thin_ellipse(cucul_canvas_t *, int, int, int, int);
  144. int cucul_fill_ellipse(cucul_canvas_t *, int, int, int, int, char const *);
  145. int cucul_draw_box(cucul_canvas_t *, int, int, int, int, char const *);
  146. int cucul_draw_thin_box(cucul_canvas_t *, int, int, int, int);
  147. int cucul_fill_box(cucul_canvas_t *, int, int, int, int, char const *);
  148. int cucul_draw_triangle(cucul_canvas_t *, int, int, int, int, int, int, char const *);
  149. int cucul_draw_thin_triangle(cucul_canvas_t *, int, int, int, int, int, int);
  150. int cucul_fill_triangle(cucul_canvas_t *, int, int, int, int, int, int, char const *);
  151. /* @} */
  152. /** \defgroup frame libcucul canvas frame handling
  153. *
  154. * These functions provide high level routines for canvas frame insertion,
  155. * removal, copying etc.
  156. *
  157. * @{ */
  158. unsigned int cucul_get_canvas_frame_count(cucul_canvas_t *);
  159. int cucul_set_canvas_frame(cucul_canvas_t *, unsigned int);
  160. int cucul_create_canvas_frame(cucul_canvas_t *, unsigned int);
  161. int cucul_free_canvas_frame(cucul_canvas_t *, unsigned int);
  162. /* @} */
  163. /** \defgroup dither libcucul bitmap dithering
  164. *
  165. * These functions provide high level routines for dither allocation and
  166. * rendering.
  167. *
  168. * @{ */
  169. cucul_dither_t *cucul_create_dither(unsigned int, unsigned int,
  170. unsigned int, unsigned int,
  171. unsigned long int, unsigned long int,
  172. unsigned long int, unsigned long int);
  173. int cucul_set_dither_palette(cucul_dither_t *,
  174. unsigned int r[], unsigned int g[],
  175. unsigned int b[], unsigned int a[]);
  176. int cucul_set_dither_brightness(cucul_dither_t *, float);
  177. int cucul_set_dither_gamma(cucul_dither_t *, float);
  178. int cucul_set_dither_contrast(cucul_dither_t *, float);
  179. int cucul_set_dither_invert(cucul_dither_t *, int);
  180. int cucul_set_dither_antialias(cucul_dither_t *, char const *);
  181. char const * const * cucul_get_dither_antialias_list(cucul_dither_t const *);
  182. int cucul_set_dither_color(cucul_dither_t *, char const *);
  183. char const * const * cucul_get_dither_color_list(cucul_dither_t const *);
  184. int cucul_set_dither_charset(cucul_dither_t *, char const *);
  185. char const * const * cucul_get_dither_charset_list(cucul_dither_t const *);
  186. int cucul_set_dither_mode(cucul_dither_t *, char const *);
  187. char const * const * cucul_get_dither_mode_list(cucul_dither_t const *);
  188. int cucul_dither_bitmap(cucul_canvas_t *, int, int, int, int,
  189. cucul_dither_t const *, void *);
  190. int cucul_free_dither(cucul_dither_t *);
  191. /* @} */
  192. /** \defgroup font libcucul font handling
  193. *
  194. * These functions provide font handling routines and high quality
  195. * canvas to bitmap rendering.
  196. *
  197. * @{ */
  198. cucul_font_t *cucul_load_font(void const *, unsigned int);
  199. char const * const * cucul_get_font_list(void);
  200. unsigned int cucul_get_font_width(cucul_font_t *);
  201. unsigned int cucul_get_font_height(cucul_font_t *);
  202. unsigned long int const *cucul_get_font_blocks(cucul_font_t *);
  203. int cucul_render_canvas(cucul_canvas_t *, cucul_font_t *, void *,
  204. unsigned int, unsigned int, unsigned int);
  205. int cucul_free_font(cucul_font_t *);
  206. /* @} */
  207. /** \defgroup importexport libcucul importers/exporters from/to various formats
  208. *
  209. * These functions import various file formats into a new canvas, or export
  210. * the current canvas to various text formats.
  211. *
  212. * @{ */
  213. cucul_buffer_t * cucul_export_canvas(cucul_canvas_t *, char const *);
  214. char const * const * cucul_get_export_list(void);
  215. cucul_canvas_t * cucul_import_canvas(cucul_buffer_t *, char const *);
  216. char const * const * cucul_get_import_list(void);
  217. /* @} */
  218. #if !defined(_DOXYGEN_SKIP_ME)
  219. /* Legacy stuff from beta versions, will probably disappear in 1.0 */
  220. # ifdef __GNUC__
  221. # define CUCUL_DEPRECATED __attribute__ ((deprecated))
  222. # else
  223. # define CUCUL_DEPRECATED
  224. # endif
  225. int cucul_set_color(cucul_canvas_t *, unsigned char,
  226. unsigned char) CUCUL_DEPRECATED;
  227. int cucul_set_truecolor(cucul_canvas_t *, unsigned int,
  228. unsigned int) CUCUL_DEPRECATED;
  229. # define CUCUL_COLOR_BLACK CUCUL_BLACK
  230. # define CUCUL_COLOR_BLUE CUCUL_BLUE
  231. # define CUCUL_COLOR_GREEN CUCUL_GREEN
  232. # define CUCUL_COLOR_CYAN CUCUL_CYAN
  233. # define CUCUL_COLOR_RED CUCUL_RED
  234. # define CUCUL_COLOR_MAGENTA CUCUL_MAGENTA
  235. # define CUCUL_COLOR_BROWN CUCUL_BROWN
  236. # define CUCUL_COLOR_LIGHTGRAY CUCUL_LIGHTGRAY
  237. # define CUCUL_COLOR_DARKGRAY CUCUL_DARKGRAY
  238. # define CUCUL_COLOR_LIGHTBLUE CUCUL_LIGHTBLUE
  239. # define CUCUL_COLOR_LIGHTGREEN CUCUL_LIGHTGREEN
  240. # define CUCUL_COLOR_LIGHTCYAN CUCUL_LIGHTCYAN
  241. # define CUCUL_COLOR_LIGHTRED CUCUL_LIGHTRED
  242. # define CUCUL_COLOR_LIGHTMAGENTA CUCUL_LIGHTMAGENTA
  243. # define CUCUL_COLOR_YELLOW CUCUL_YELLOW
  244. # define CUCUL_COLOR_WHITE CUCUL_YELLOW
  245. # define CUCUL_COLOR_DEFAULT CUCUL_DEFAULT
  246. # define CUCUL_COLOR_TRANSPARENT CUCUL_TRANSPARENT
  247. #endif
  248. #ifdef __cplusplus
  249. }
  250. #endif
  251. #endif /* __CUCUL_H__ */