Changeset 480 for trunk/src/cairo/Context.d
- Timestamp:
- 03/25/08 18:16:02 (8 months ago)
- Files:
-
- trunk/src/cairo/Context.d (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cairo/Context.d
r426 r480 65 65 * module aliases: 66 66 * local aliases: 67 * overrides: 67 68 */ 68 69 … … 1490 1491 * utf8 = a string of text encoded in UTF-8 1491 1492 */ 1492 public void textPath( char[]utf8)1493 public void textPath(string utf8) 1493 1494 { 1494 1495 // void cairo_text_path (cairo_t *cr, const char *utf8); … … 1728 1729 * weight = the weight for the font 1729 1730 */ 1730 public void selectFontFace( char[]family, cairo_font_slant_t slant, cairo_font_weight_t weight)1731 public void selectFontFace(string family, cairo_font_slant_t slant, cairo_font_weight_t weight) 1731 1732 { 1732 1733 // void cairo_select_font_face (cairo_t *cr, const char *family, cairo_font_slant_t slant, cairo_font_weight_t weight); … … 1892 1893 * utf8 = a string of text encoded in UTF-8 1893 1894 */ 1894 public void showText( char[]utf8)1895 public void showText(string utf8) 1895 1896 { 1896 1897 // void cairo_show_text (cairo_t *cr, const char *utf8); … … 1941 1942 * will be stored 1942 1943 */ 1943 public void textExtents( char[]utf8, cairo_text_extents_t* extents)1944 public void textExtents(string utf8, cairo_text_extents_t* extents) 1944 1945 { 1945 1946 // void cairo_text_extents (cairo_t *cr, const char *utf8, cairo_text_extents_t *extents);
