comparison src/shape_stext.c @ 417:abc420282c70

Add more doc on shape_stext.
author Thinker K.F. Li <thinker@branda.to>
date Sun, 26 Jul 2009 15:31:40 +0800
parents fef1b8076041
children af6adacbed07
comparison
equal deleted inserted replaced
416:5791263ebe7b 417:abc420282c70
263 */ 263 */
264 typedef struct _sh_stext { 264 typedef struct _sh_stext {
265 shape_t shape; 265 shape_t shape;
266 const char *txt; /*!< \brief Text to be showed */ 266 const char *txt; /*!< \brief Text to be showed */
267 const mb_style_blk_t *style_blks; /*!< \brief Style of text */ 267 const mb_style_blk_t *style_blks; /*!< \brief Style of text */
268 int nblks; /*!< \brief Number of style blocks */ 268 int nblks; /*!< \brief Number of valid style
269 int max_nblks; 269 * blocks */
270 int max_nblks; /*!< \brief Available space of
271 * style_blks */
270 co_aix x, y; 272 co_aix x, y;
271 mb_scaled_font_t **scaled_fonts; 273 mb_scaled_font_t **scaled_fonts;
272 mb_text_extents_t extents; 274 mb_text_extents_t extents;
273 } sh_stext_t; 275 } sh_stext_t;
274 276