1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
|
/* $Id$
*
* Copyright © 2004 Keith Packard
*
* This library is free software; you can redistribute it and/or
* modify it either under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation
* (the "LGPL") or, at your option, under the terms of the Mozilla
* Public License Version 1.1 (the "MPL"). If you do not alter this
* notice, a recipient may use your version of this file under either
* the MPL or the LGPL.
*
* You should have received a copy of the LGPL along with this library
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* You should have received a copy of the MPL along with this library
* in the file COPYING-MPL-1.1
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
* the specific language governing rights and limitations.
*
* The Original Code is the cairo graphics library.
*
* The Initial Developer of the Original Code is Keith Packard
*
* Contributor(s):
* Keith Packard <keithp@keithp.com>
*/
#include "cairo-5c.h"
NamespacePtr CairoNamespace;
NamespacePtr CairoSurfaceNamespace;
NamespacePtr CairoPatternNamespace;
NamespacePtr CairoImageNamespace;
NamespacePtr CairoPdfNamespace;
NamespacePtr CairoSvgNamespace;
NamespacePtr CairoPsNamespace;
NamespacePtr CairoRsvgNamespace;
Type *typeCairo;
Type *typeCairoSurface;
Type *typeCairoStatus;
Type *typeCairoOperator;
Type *typeCairoFillRule;
Type *typeCairoLineCap;
Type *typeCairoLineJoin;
Type *typeCairoFontSlant;
Type *typeCairoFontWeight;
Type *typeCairoTextExtents;
Type *typeCairoFontExtents;
Type *typeCairoMatrix;
Type *typeCairoPoint;
Type *typeCairoRect;
Type *typeCairoRgbColor;
Type *typeCairoRgbaColor;
Type *typeCairoPattern;
Type *typeCairoPath;
Type *typeCairoCurveTo;
Type *typeCairoScaledFont;
Type *typeCairoFontFace;
Type *typeCairoContent;
Type *typeCairoPatternExtend;
Type *typeCairoPatternFilter;
Type *typeCairoImageFormat;
Type *typeRsvg;
Type *typeRsvgDimensions;
Type *typeRsvgPosition;
#define CAIRO_I 0
#define CAIRO_S "00"
#define SURFACE_I 1
#define SURFACE_S "01"
#define STATUS_I 2
#define STATUS_S "02"
#define OPERATOR_I 3
#define OPERATOR_S "03"
#define FILL_RULE_I 4
#define FILL_RULE_S "04"
#define LINE_CAP_I 5
#define LINE_CAP_S "05"
#define LINE_JOIN_I 6
#define LINE_JOIN_S "06"
#define FONT_SLANT_I 7
#define FONT_SLANT_S "07"
#define FONT_WEIGHT_I 8
#define FONT_WEIGHT_S "08"
#define TEXT_EXTENTS_I 9
#define TEXT_EXTENTS_S "09"
#define FONT_EXTENTS_I 10
#define FONT_EXTENTS_S "10"
#define MATRIX_I 11
#define MATRIX_S "11"
#define POINT_I 12
#define POINT_S "12"
#define RECT_I 13
#define RECT_S "13"
#define RGB_COLOR_I 14
#define RGB_COLOR_S "14"
#define RGBA_COLOR_I 15
#define RGBA_COLOR_S "15"
#define PATTERN_I 16
#define PATTERN_S "16"
#define PATH_I 17
#define PATH_S "17"
#define CURVE_TO_I 20
#define CURVE_TO_S "20"
#define SCALED_FONT_I 22
#define SCALED_FONT_S "22"
#define FONT_FACE_I 23
#define FONT_FACE_S "23"
#define CONTENT_I 24
#define CONTENT_S "24"
#define EXTEND_I 30
#define EXTEND_S "30"
#define FILTER_I 31
#define FILTER_S "31"
#define FORMAT_I 32
#define FORMAT_S "32"
#define RSVG_I 33
#define RSVG_S "33"
#define RSVG_DIMENSIONS_I 34
#define RSVG_DIMENSIONS_S "34"
#define RSVG_POSITION_I 35
#define RSVG_POSITION_S "35"
static Type *
make_typedef (char *name_str,
Namespace *namespace,
Publish publish,
int usertype_id,
Symbol **sret,
Type *type)
{
ENTER ();
Atom name = AtomId (name_str);
Symbol *sym = NewSymbolType (name, type);
Type *typed = NewTypeName (NewExprAtom (name, 0, False),
sym);
NamespaceAddName (namespace, sym, publish);
BuiltinSetUserdefType (typed, usertype_id);
MemAddRoot (typed);
if (sret)
*sret = sym;
RETURN (typed);
}
static void
init_types (void)
{
Symbol *ct, *path;
ENTER ();
CairoNamespace = BuiltinNamespace (/* parent */ 0, "Cairo")->namespace.namespace;
typeCairo = make_typedef ("cairo_t",
CairoNamespace,
publish_public,
CAIRO_I,
NULL,
typePrim[rep_foreign]);
typeCairoSurface = make_typedef ("surface_t",
CairoNamespace,
publish_public,
SURFACE_I,
NULL,
typePrim[rep_foreign]);
typeCairoStatus = make_typedef ("status_t",
CairoNamespace,
publish_public,
STATUS_I,
NULL,
BuildEnumType (14,
"SUCCESS",
"NO_MEMORY",
"INVALID_RESTORE",
"INVALID_POP_GROUP",
"NO_CURRENT_POINT",
"INVALID_MATRIX",
"NO_TARGET_SURFACE",
"NULL_POINTER",
"INVALID_STRING",
"INVALID_PATH_DATA",
"READ_ERROR",
"WRITE_ERROR",
"SURFACE_FINISHED",
"SURFACE_TYPE_MISMATCH",
"PATTERN_TYPE_MISMATCH",
"INVALID_CONTENT",
"INVALID_FORMAT",
"INVALID_VISUAL",
"FILE_NOT_FOUND",
"INVALID_DASH",
"INVALID_DSC_COMMENT",
"INVALID_INDEX",
"CLIP_NOT_REPRESENTABLE",
"TEMP_FILE_ERROR",
"INVALID_STRIDE",
"FONT_TYPE_MISMATCH",
"USER_FONT_IMMUTABLE",
"USER_FONT_ERROR",
"NEGATIVE_COUNT",
"INVALID_CLUSTERS",
"INVALID_SLANT",
"INVALID_WEIGHT",
"INVALID_SIZE",
"USER_FONT_NOT_IMPLEMENTED",
"DEVICE_TYPE_MISMATCH",
"DEVICE_ERROR",
"INVALID_MESH_CONSTRUCTION",
"DEVICE_FINISHED"));
typeCairoOperator = make_typedef ("operator_t",
CairoNamespace,
publish_public,
OPERATOR_I,
NULL,
BuildEnumType (14,
"CLEAR",
"SOURCE",
"OVER",
"IN",
"OUT",
"ATOP",
"DEST",
"DEST_OVER",
"DEST_IN",
"DEST_OUT",
"DEST_ATOP",
"XOR",
"ADD",
"SATURATE"));
typeCairoFillRule = make_typedef ("fill_rule_t",
CairoNamespace,
publish_public,
FILL_RULE_I,
NULL,
BuildEnumType (2,
"WINDING",
"EVEN_ODD"));
typeCairoLineCap = make_typedef ("line_cap_t",
CairoNamespace,
publish_public,
LINE_CAP_I,
NULL,
BuildEnumType (3,
"BUTT",
"ROUND",
"SQUARE"));
typeCairoLineJoin = make_typedef ("line_join_t",
CairoNamespace,
publish_public,
LINE_JOIN_I,
NULL,
BuildEnumType (3,
"MITER",
"ROUND",
"BEVEL"));
typeCairoFontSlant = make_typedef ("font_slant_t",
CairoNamespace,
publish_public,
FONT_SLANT_I,
NULL,
BuildEnumType (3,
"NORMAL",
"ITALIC",
"OBLIQUE"));
typeCairoFontWeight = make_typedef ("font_weight_t",
CairoNamespace,
publish_public,
FONT_WEIGHT_I,
NULL,
BuildEnumType (2,
"NORMAL",
"BOLD"));
typeCairoTextExtents = make_typedef ("text_extents_t",
CairoNamespace,
publish_public,
TEXT_EXTENTS_I,
NULL,
BuildStructType (6,
typePrim[rep_float], "x_bearing",
typePrim[rep_float], "y_bearing",
typePrim[rep_float], "width",
typePrim[rep_float], "height",
typePrim[rep_float], "x_advance",
typePrim[rep_float], "y_advance"));
typeCairoFontExtents = make_typedef ("font_extents_t",
CairoNamespace,
publish_public,
FONT_EXTENTS_I,
NULL,
BuildStructType (5,
typePrim[rep_float], "ascent",
typePrim[rep_float], "descent",
typePrim[rep_float], "height",
typePrim[rep_float], "max_x_advance",
typePrim[rep_float], "max_y_advance"));
typeCairoMatrix = make_typedef ("matrix_t",
CairoNamespace,
publish_public,
MATRIX_I,
NULL,
BuildStructType (6,
typePrim[rep_float], "xx",
typePrim[rep_float], "yx",
typePrim[rep_float], "xy",
typePrim[rep_float], "yy",
typePrim[rep_float], "x0",
typePrim[rep_float], "y0"));
typeCairoPoint = make_typedef ("point_t",
CairoNamespace,
publish_public,
POINT_I,
NULL,
BuildStructType (2,
typePrim[rep_float], "x",
typePrim[rep_float], "y"));
typeCairoRect = make_typedef ("rect_t",
CairoNamespace,
publish_public,
RECT_I,
NULL,
BuildStructType (4,
typePrim[rep_float], "x",
typePrim[rep_float], "y",
typePrim[rep_float], "width",
typePrim[rep_float], "height"));
typeCairoRgbColor = make_typedef ("rgb_color_t",
CairoNamespace,
publish_public,
RGB_COLOR_I,
NULL,
BuildStructType (3,
typePrim[rep_float], "red",
typePrim[rep_float], "green",
typePrim[rep_float], "blue"));
typeCairoRgbaColor = make_typedef ("rgba_color_t",
CairoNamespace,
publish_public,
RGBA_COLOR_I,
NULL,
BuildStructType (4,
typePrim[rep_float], "red",
typePrim[rep_float], "green",
typePrim[rep_float], "blue",
typePrim[rep_float], "alpha"));
typeCairoPattern = make_typedef ("pattern_t",
CairoNamespace,
publish_public,
PATTERN_I,
NULL,
typePrim[rep_foreign]);
typeCairoContent = make_typedef ("content_t",
CairoNamespace,
publish_public,
CONTENT_I,
NULL,
BuildEnumType (3,
"COLOR",
"ALPHA",
"COLOR_ALPHA"));
/*
* Path data structures
*/
typeCairoCurveTo = make_typedef ("curve_to_t",
CairoNamespace,
publish_public,
CURVE_TO_I,
&ct,
0);
ct->symbol.type = BuildStructType (6,
typePrim[rep_float], "x1",
typePrim[rep_float], "y1",
typePrim[rep_float], "x2",
typePrim[rep_float], "y2",
typePrim[rep_float], "x3",
typePrim[rep_float], "y3");
typeCairoPath = make_typedef ("path_t",
CairoNamespace,
publish_public,
PATH_I,
&path,
BuildUnionType(4,
typeCairoPoint, "move_to",
typeCairoPoint, "line_to",
typeCairoCurveTo, "curve_to",
typePrim[rep_void], "close_path"));
CairoSurfaceNamespace = BuiltinNamespace (&CairoNamespace, "Surface")->namespace.namespace;
CairoImageNamespace = BuiltinNamespace (&CairoNamespace, "Image")->namespace.namespace;
typeCairoImageFormat = make_typedef ("format_t",
CairoImageNamespace,
publish_public,
FORMAT_I,
NULL,
BuildEnumType (3,
"ARGB",
"RGB",
"A"));
CairoPdfNamespace = BuiltinNamespace (&CairoNamespace, "Pdf")->namespace.namespace;
CairoSvgNamespace = BuiltinNamespace (&CairoNamespace, "Svg")->namespace.namespace;
CairoPsNamespace = BuiltinNamespace (&CairoNamespace, "Ps")->namespace.namespace;
CairoPatternNamespace = BuiltinNamespace (&CairoNamespace, "Pattern")->namespace.namespace;
typeCairoPatternExtend = make_typedef ("extend_t",
CairoPatternNamespace,
publish_public,
EXTEND_I,
NULL,
BuildEnumType (3,
"NONE",
"REPEAT",
"REFLECT"));
typeCairoPatternFilter = make_typedef ("filter_t",
CairoPatternNamespace,
publish_public,
FILTER_I,
NULL,
BuildEnumType (6,
"FAST",
"GOOD",
"BEST",
"NEAREST",
"BILINEAR",
"GAUSSIAN"));
typeCairoScaledFont = make_typedef ("scaled_font_t",
CairoNamespace,
publish_public,
SCALED_FONT_I,
NULL,
typePrim[rep_foreign]);
typeCairoFontFace = make_typedef ("font_face_t",
CairoNamespace,
publish_public,
FONT_FACE_I,
NULL,
typePrim[rep_foreign]);
CairoRsvgNamespace = BuiltinNamespace(&CairoNamespace, "Rsvg")->namespace.namespace;
typeRsvgDimensions = make_typedef("dimensions_t",
CairoRsvgNamespace,
publish_public,
RSVG_DIMENSIONS_I,
NULL,
BuildStructType(4,
typePrim[rep_int], "width",
typePrim[rep_int], "height",
typePrim[rep_float], "em",
typePrim[rep_float], "ex"));
typeRsvgPosition = make_typedef("position_t",
CairoRsvgNamespace,
publish_public,
RSVG_POSITION_I,
NULL,
BuildStructType(2,
typePrim[rep_int], "x",
typePrim[rep_int], "y"));
typeRsvg = make_typedef("rsvg_t",
CairoRsvgNamespace,
publish_public,
RSVG_I,
NULL,
typePrim[rep_foreign]);
EXIT();
}
int
EnumIntPart (Value ev, char *err)
{
Union *u = &ev->unions;
StructType *st = u->type;
int i;
for (i = 0; i < st->nelements; i++)
if (StructTypeAtoms(st)[i] == u->tag)
return i;
RaiseStandardException (exception_invalid_argument, 3,
NewStrString (err),
NewInt (0), ev);
return -1;
}
Value
IntToEnum (Type *type, int i)
{
ENTER ();
Type *ctype = TypeCanon (type);
StructType *st = ctype->structs.structs;
Value v = NewUnion (st, False);
if (i < 0 || st->nelements <= i)
{
RaiseStandardException (exception_invalid_argument, 3,
NewStrString ("invalid enum index"),
NewInt (i), v);
RETURN (Void);
}
v->unions.tag = StructTypeAtoms(st)[i];
BoxValueSet (v->unions.value, 0, Void);
RETURN (v);
}
Value
nickle_init (void)
{
ENTER ();
static const struct fbuiltin_1 funcs_1[] = {
{ do_Cairo_create, "create", CAIRO_S, SURFACE_S, "\n"
" cairo_t create (surface_t sv)\n"
"\n"
" Create a cairo context for the specified surface.\n"
},
{ do_Cairo_destroy, "destroy", "v", CAIRO_S, "\n"
" void destroy (cairo_t cr)\n"
"\n"
" destroy a rendering context.\n"},
{ do_Cairo_get_target, "get_target", SURFACE_S, CAIRO_S, "\n"
" surface_t get_target (cairo_t cr)\n"
"\n"
" Return current target surface\n" },
{ do_Cairo_status, "status", STATUS_S, CAIRO_S, "\n"
" status_t status (cairo_t cr)\n"
"\n"
" Return the status of a cairo surface\n" },
{ do_Cairo_status_to_string, "status_string", "s", STATUS_S, "\n"
" string status_to_string (status_t status)\n"
"\n"
" Return a string describing the status\n" },
{ do_Cairo_enable, "enable", "v", CAIRO_S, "\n"
" void enable (cairo_t cr)\n"
"\n"
" Enable screen updates from a cairo surface\n" },
{ do_Cairo_disable, "disable", "v", CAIRO_S, "\n"
" void disable (cairo_t cr)\n"
"\n"
" Disable screen updates from a cairo surface\n" },
{ do_Cairo_save, "save", "v", CAIRO_S, "\n"
" void save (cairo_t cr)\n"
"\n"
" Save graphics state\n" },
{ do_Cairo_restore, "restore", "v", CAIRO_S, "\n"
" void restore (cairo_t cr)\n"
"\n"
" Restore graphics state\n" },
{ do_Cairo_identity_matrix, "identity_matrix", "v", CAIRO_S, "\n"
" void identity_matrix (cairo_t cr)\n"
"\n"
" Set transformation matrix to identity\n" },
{ do_Cairo_new_path, "new_path", "v", CAIRO_S, "\n"
" void new_path (cairo_t cr)\n"
"\n"
" Starts a new path\n" },
{ do_Cairo_close_path, "close_path", "v", CAIRO_S, "\n"
" void close_path (cairo_t cr)\n"
"\n"
" Closes the current path\n" },
{ do_Cairo_fill, "fill", "v", CAIRO_S, "\n"
" void fill (cairo_t cr)\n"
"\n"
" Fill the current path\n" },
{ do_Cairo_fill_preserve, "fill_preserve", "v", CAIRO_S, "\n"
" void fill_preserve (cairo_t cr)\n"
"\n"
" Fill the current path without making an implicit call to new_path\n" },
{ do_Cairo_stroke, "stroke", "v", CAIRO_S, "\n"
" void stroke (cairo_t cr)\n"
"\n"
" Stroke the current path\n" },
{ do_Cairo_stroke_preserve, "stroke_preserve", "v", CAIRO_S, "\n"
" void stroke_preserve (cairo_t cr)\n"
"\n"
" Stroke the current path without making an implicit call to new_path\n" },
{ do_Cairo_copy_page, "copy_page", "v", CAIRO_S, "\n"
" void copy_page (cairo_t cr)\n"
"\n"
" Write out the current page, leaving it intact.\n" },
{ do_Cairo_show_page, "show_page", "v", CAIRO_S, "\n"
" void show_page (cairo_t cr)\n"
"\n"
" Write out the current page, and erase it.\n" },
{ do_Cairo_copy_path, "copy_path", "A*" PATH_S, CAIRO_S, "\n"
" path_t[*] copy_path (cairo_t cr)\n"
"\n"
" Returns the current path\n" },
{ do_Cairo_copy_path_flat, "copy_path_flat", "A*" PATH_S, CAIRO_S, "\n"
" path_t[*] copy_path_flat (cairo_t cr)\n"
"\n"
" Returns the current path with curves tesselated to lines\n" },
{ do_Cairo_reset_clip, "reset_clip", "v", CAIRO_S, "\n"
" void reset_clip (cairo_t cr)\n"
"\n"
" Reset clip to the entire surface.\n" },
{ do_Cairo_clip, "clip", "v", CAIRO_S, "\n"
" void clip (cairo_t cr)\n"
"\n"
" Clip to current path. Consumes path.\n" },
{ do_Cairo_clip_preserve, "clip_preserve", "v", CAIRO_S, "\n"
" void clip_preserve (cairo_t cr)\n"
"\n"
" Clip to current path without consuming path.\n" },
{ do_Cairo_stroke_extents, "stroke_extents", RECT_S, CAIRO_S, "\n"
" rect_t stroke_extents (cairo_t cr)\n"
"\n"
" Returns bounding box of stroking current path\n" },
{ do_Cairo_fill_extents, "fill_extents", RECT_S, CAIRO_S, "\n"
" rect_t fill_extents (cairo_t cr)\n"
"\n"
" Returns bounding box of filling current path\n" },
{ do_Cairo_get_operator, "get_operator", OPERATOR_S, CAIRO_S, "\n"
" operator_t get_operator (cairo_t cr)\n"
"\n"
" Returns the current operator\n" },
{ do_Cairo_get_source, "get_source", PATTERN_S, CAIRO_S, "\n"
" pattern_t get_source (cairo_t cr)\n"
"\n"
" Returns the current source pattern\n" },
{ do_Cairo_get_tolerance, "get_tolerance", "n", CAIRO_S, "\n"
" real get_tolerance (cairo_t cr)\n"
"\n"
" Returns the current tolerance\n" },
{ do_Cairo_get_current_point, "get_current_point", POINT_S, CAIRO_S, "\n"
" point_t current_point (cairo_t cr)\n"
"\n"
" Returns the current point\n" },
{ do_Cairo_get_fill_rule, "get_fill_rule", FILL_RULE_S, CAIRO_S, "\n"
" fill_rule_t get_fill_rule (cairo_t cr)\n"
"\n"
" Returns the current fill rule\n" },
{ do_Cairo_get_line_width, "get_line_width", "n", CAIRO_S, "\n"
" real get_line_width (cairo_t cr)\n"
"\n"
" Returns the current line width\n" },
{ do_Cairo_get_line_cap, "get_line_cap", LINE_CAP_S, CAIRO_S, "\n"
" line_cap_t get_line_cap (cairo_t cr)\n"
"\n"
" Returns the current line_cap\n" },
{ do_Cairo_get_line_join, "get_line_join", LINE_JOIN_S, CAIRO_S, "\n"
" line_join_t get_line_join (cairo_t cr)\n"
"\n"
" Returns the current line join\n" },
{ do_Cairo_get_miter_limit, "get_miter_limit", "n", CAIRO_S, "\n"
" real get_miter_limit (cairo_t cr)\n"
"\n"
" Returns the current miter limit\n" },
{ do_Cairo_get_matrix, "get_matrix", MATRIX_S, CAIRO_S, "\n"
" matrix_t get_matrix (cairo_t cr)\n"
"\n"
" Returns the current transformation matrix\n" },
{ do_Cairo_paint, "paint", "v", CAIRO_S, "\n"
" void paint (cairo_t cr)\n"
"\n"
" Fill cr with the pattern\n" },
{ do_Cairo_get_font_matrix, "get_font_matrix", MATRIX_S, CAIRO_S, "\n"
" matrix_t get_font_matrix (cairo_t cr)\n"
"\n"
" Returns the current font matrix\n" },
{ do_Cairo_font_extents, "font_extents", FONT_EXTENTS_S, CAIRO_S, "\n"
" font_extents_t font_extents (cairo_t cr)\n"
"\n"
" Returns metrics for current font\n" },
{ 0 }
};
static const struct fbuiltin_2 funcs_2[] = {
{ do_Cairo_set_operator, "set_operator", "v", CAIRO_S OPERATOR_S, "\n"
" void set_operator (cairo_t cr, operator_t operator)\n"
"\n"
" Set current operator\n" },
{ do_Cairo_set_source, "set_source", "v", CAIRO_S PATTERN_S, "\n"
" void set_source (cairo_t cr, pattern_t pattern)\n"
"\n"
" Set current source pattern\n" },
{ do_Cairo_set_tolerance, "set_tolerance", "v", CAIRO_S "n", "\n"
" void set_tolerance (cairo_t cr, real alpha)\n"
"\n"
" Set current tolerance\n" },
{ do_Cairo_set_fill_rule, "set_fill_rule", "v", CAIRO_S FILL_RULE_S, "\n"
" void set_fill_rule (cairo_t cr, fill_rule_t rule)\n"
"\n"
" Set current fill rule\n" },
{ do_Cairo_set_line_width, "set_line_width", "v", CAIRO_S "n", "\n"
" void set_line_width (cairo_t cr, real alpha)\n"
"\n"
" Set current line width\n" },
{ do_Cairo_set_line_cap, "set_line_cap", "v", CAIRO_S LINE_CAP_S, "\n"
" void set_line_cap (cairo_t cr, line_cap_t cap)\n"
"\n"
" Set current line cap style\n" },
{ do_Cairo_set_line_join, "set_line_join", "v", CAIRO_S LINE_JOIN_S, "\n"
" void set_line_join (cairo_t cr, line_join_t join)\n"
"\n"
" Set current line join style\n" },
{ do_Cairo_set_miter_limit, "set_miter_limit", "v", CAIRO_S "n", "\n"
" void set_miter_limit (cairo_t cr, real limit)\n"
"\n"
" Set current miter join limit\n" },
{ do_Cairo_rotate, "rotate", "v", CAIRO_S "n", "\n"
" void rotate (cairo_t cr, real radians)\n"
"\n"
" Rotate current transformation matrix by specified amount\n" },
{ do_Cairo_paint_with_alpha, "paint_with_alpha", "v", CAIRO_S "n", "\n"
" void paint_with_alpha (cairo_t cr, real alpha)\n"
"\n"
" Fill cr with the source with the constant mask alpha\n" },
{ do_Cairo_mask, "mask", "v", CAIRO_S PATTERN_S, "\n"
" void mask (cairo_t cr, pattern_t pattern)\n"
"\n"
" Fill cr with the source with the specified mask\n" },
{ do_Cairo_append_path, "append_path", "v", CAIRO_S "A*" PATH_S, "\n"
" void append_path (cairo_t cr, path_t[*] path)\n"
"\n"
" Append path to cr\n" },
{ do_Cairo_set_font, "set_font", "v", CAIRO_S "s", "\n"
" void set_font (cairo_t cr, string fontname)\n"
"\n"
" Sets the current font using fontname\n" },
{ do_Cairo_set_font_size, "set_font_size", "v", CAIRO_S "n", "\n"
" void set_font_size (cairo_t cr, real size)\n"
"\n"
" Sets font size\n" },
{ do_Cairo_set_font_matrix, "set_font_matrix", "v", CAIRO_S MATRIX_S, "\n"
" void set_font_matrix (cairo_t cr, matrix_t matrix)\n"
"\n"
" Sets current font matrix\n" },
{ do_Cairo_show_text, "show_text", "v", CAIRO_S "s", "\n"
" void show_text (cairo_t cr, string text)\n"
"\n"
" Shows text at current position\n" },
{ do_Cairo_text_path, "text_path", "v", CAIRO_S "s", "\n"
" void text_path (cairo_t cr, string text)\n"
"\n"
" Appends text to current path\n" },
{ do_Cairo_text_extents, "text_extents", TEXT_EXTENTS_S, CAIRO_S "s", "\n"
" text_extents_t text_extents (cairo_t cr, string text)\n"
"\n"
" Appends text to current path\n" },
{ do_Cairo_transform, "transform", "v", CAIRO_S MATRIX_S, "\n"
" void transform (cairo_t cr, matrix_t matrix)\n"
"\n"
" Mixes in another matrix to the current transformation\n" },
{ do_Cairo_set_matrix, "set_matrix", "v", CAIRO_S MATRIX_S, "\n"
" void set_matrix (cairo_t cr, matrix_t matrix)\n"
"\n"
" Sets the transformation matrix\n" },
{ do_Cairo_user_to_device, "user_to_device", POINT_S, CAIRO_S POINT_S, "\n"
" point_t user_to_device (cairo_t cr, point_t)\n"
"\n"
" Transform a point from user to device space\n" },
{ do_Cairo_user_to_device_distance, "user_to_device_distance", POINT_S, CAIRO_S POINT_S, "\n"
" point_t user_to_device_distance (cairo_t cr, point_t point)\n"
"\n"
" Transform a distance from user to device space\n" },
{ do_Cairo_device_to_user, "device_to_user", POINT_S, CAIRO_S POINT_S, "\n"
" point_t device_to_user (cairo_t cr, point_t point)\n"
"\n"
" Transform a point from device to user space\n" },
{ do_Cairo_device_to_user_distance, "device_to_user_distance", POINT_S, CAIRO_S POINT_S, "\n"
" point_t device_to_user_distance (cairo_t cr, point_t point)\n"
"\n"
" Transform a distance from device to user space\n" },
{ 0 }
};
static const struct fbuiltin_3 funcs_3[] = {
{ do_Cairo_move_to, "move_to", "v", CAIRO_S "nn", "\n"
" void move_to (cairo_t cr, real x, real y)\n"
"\n"
" Move to specified position\n" },
{ do_Cairo_line_to, "line_to", "v", CAIRO_S "nn", "\n"
" void line_to (cairo_t cr, real x, real y)\n"
"\n"
" Draw line to specified position\n" },
{ do_Cairo_rel_move_to, "rel_move_to", "v", CAIRO_S "nn", "\n"
" void rel_move_to (cairo_t cr, real x, real y)\n"
"\n"
" Move to specified offset from the current position\n" },
{ do_Cairo_rel_line_to, "rel_line_to", "v", CAIRO_S "nn", "\n"
" void rel_line_to (cairo_t cr, real x, real y)\n"
"\n"
" Draw line to specified offset from the current position\n" },
{ do_Cairo_translate, "translate", "v", CAIRO_S "nn", "\n"
" void translate (cairo_t cr, real x, real y)\n"
"\n"
" Offset current transformation matrix by specified amount\n" },
{ do_Cairo_scale, "scale", "v", CAIRO_S "nn", "\n"
" void scale (cairo_t cr, real x, real y)\n"
"\n"
" Scale current transformation matrix by specified amount\n" },
{ do_Cairo_set_dash, "set_dash", "v", CAIRO_S "A*nn", "\n"
" void set_dash (cairo_t cr, real[*] dashes, real dash_offset)\n"
"\n"
" Sets current dash pattern and offset\n" },
{ do_Cairo_in_fill, "in_fill", "b", CAIRO_S "nn", "\n"
" bool in_fill (cairo_t cr, real x, real y)\n"
"\n"
" Test whether (x,y) would be covered by filling the current path\n" },
{ do_Cairo_in_stroke, "in_stroke", "b", CAIRO_S "nn", "\n"
" bool in_stroke (cairo_t cr, real x, real y)\n"
"\n"
" Test whether (x,y) would be covered by stroking the current path\n" },
{ 0 }
};
static const struct fbuiltin_4 funcs_4[] = {
{ do_Cairo_set_source_rgb, "set_source_rgb", "v", CAIRO_S "nnn", "\n"
" void set_source_rgb (cairo_t cr, real red, real green, real blue)\n"
"\n"
" Set solid color source\n" },
{ do_Cairo_set_source_surface, "set_source_surface", "v", CAIRO_S SURFACE_S "nn", "\n"
" void set_source_surface (cairo_t cr, surface_t surface, real x, real y)\n"
"\n"
" Set the source to surface and offset by x,y\n" },
{ do_Cairo_mask_surface, "mask_surface", "v", CAIRO_S SURFACE_S "nn", "\n"
" void mask_surface (cairo_t cr, surface_t surface, real x, real y)\n"
"\n"
" Fill cr with the source using surface, offset by x,y, as the mask\n" },
{ do_Cairo_select_font_face, "select_font_face", "v", CAIRO_S "s" FONT_SLANT_S FONT_WEIGHT_S, "\n"
" void select_font_face (cairo_t cr, string family, font_slant_t slant, font_weight_t weight)\n"
"\n"
" Select a font face using the specified family, slant and weight\n" },
{ 0 }
};
static const struct fbuiltin_5 funcs_5[] = {
{ do_Cairo_rectangle, "rectangle", "v", CAIRO_S "nnnn", "\n"
" void rectangle (cairo_t cr, real x, real y, real width, real height)\n"
"\n"
" Adds the specified rectangle to the current path\n" },
{ do_Cairo_set_source_rgba, "set_source_rgba", "v", CAIRO_S "nnnn", "\n"
" void set_source_rgba (cairo_t cr, real red, real green, real blue, real alpha)\n"
"\n"
" Set solid color source with alpha (premultiplied)\n" },
{ 0 }
};
static const struct fbuiltin_6 funcs_6[] = {
{ do_Cairo_arc, "arc", "v", CAIRO_S "nnnnn", "\n"
" void arc (cairo_t cr, real xc, real yc, real r, real angle1, real angle2)\n"
"\n"
" Draw a clockwise arc centered at xc,yc from angle1 to angle2 with the given radius\n" },
{ do_Cairo_arc_negative, "arc_negative", "v", CAIRO_S "nnnnn", "\n"
" void arc (cairo_t cr, real xc, real yc, real r, real angle1, real angle2)\n"
"\n"
" Draw a counter-clockwise arc centered at xc,yc from angle1 to angle2 with the given radius\n" },
{ 0 }
};
static const struct fbuiltin_7 funcs_7[] = {
{ do_Cairo_curve_to, "curve_to", "v", CAIRO_S "nnnnnn", "\n"
" void curve_to (cairo_t cr, real x1, real y1, real x2, real y2, real x3, real y3)\n"
"\n"
" Draw Bézier spline to specified position\n" },
{ do_Cairo_rel_curve_to, "rel_curve_to", "v", CAIRO_S "nnnnnn", "\n"
" void curve_to (cairo_t cr, real x1, real y1, real x2, real y2, real x3, real y3)\n"
"\n"
" Draw Bézier spline to specified offset from the current position\n" },
{ 0 }
};
static const struct fbuiltin_1 surfuncs_1[] = {
{ do_Cairo_Surface_finish, "finish", "v", SURFACE_S, "\n"
" void finish (surface_t surface)\n"
"\n"
" Finish a surface. All output to the surface is finalized\n" },
{ do_Cairo_Surface_destroy, "destroy", "v", SURFACE_S, "\n"
" void destroy (surface_t surface)\n"
"\n"
" Destroy a surface. Further usage will raise an exception.\n" },
{ do_Cairo_Surface_width, "width", "n", SURFACE_S, "\n"
" int width (surface_t surface)\n"
"\n"
" Returns the width of the given surface\n" },
{ do_Cairo_Surface_height, "height", "n", SURFACE_S, "\n"
" int height (surface_t surface)\n"
"\n"
" Returns the height of the given surface\n" },
{ do_Cairo_Surface_open_event, "open_event", "f", SURFACE_S, "\n"
" file open_event (surface_t surface)\n"
"\n"
" Returns a file which will receive events\n" },
{ do_Cairo_Surface_status, "status", STATUS_S, SURFACE_S, "\n"
" status_t status (surface_t surface)\n"
"\n"
" Return status associated with surface.\n" },
{ 0 }
};
static const struct fbuiltin_2 surfuncs_2[] = {
{ do_Cairo_Surface_write_to_png, "write_to_png", "v", SURFACE_S "s", "\n"
" void write_to_png (surface_t surface, string filename)\n"
"\n"
" Write a surface to filename in png format\n" },
{ do_Cairo_Surface_write_to_png_file, "write_to_png_file", "v", SURFACE_S "f", "\n"
" void write_to_png (surface_t surface, file f)\n"
"\n"
" Write a surface to f in png format\n" },
#if HAVE_CAIRO_XLIB_H
{ do_Cairo_Surface_set_window_shown, "set_window_shown", "v", SURFACE_S "b", "\n"
" void set_window_shown (surface_t surface, bool shown)\n"
"\n"
" Show or hide the specified window\n" },
#endif
{ 0 }
};
static const struct fbuiltin_3 surfuncs_3[] = {
#if HAVE_CAIRO_XLIB_H
{ do_Cairo_Surface_create_window, "create_window", SURFACE_S, "snn", "\n"
" surface_t create_window (real width, real height)\n"
"\n"
" Create a window, show it, and return a surface pointer for it\n" },
{ do_Cairo_Surface_create_window_hidden, "create_window_hidden", SURFACE_S, "snn", "\n"
" surface_t create_window_hidden (real width, real height)\n"
"\n"
" Create a window, but do not show it, and return a surface pointer for it\n" },
{ do_Cairo_Surface_resize_window, "resize_window", "v", SURFACE_S "nn", "\n"
" void resize_window (surface_t surface, real width, real height)\n"
"\n"
" Request that a window be resized. A configure event will signal the new size.\n" },
#endif
{ do_Cairo_Surface_set_device_offset, "set_device_offset", "v", SURFACE_S "nn", "\n"
" void set_device_offset (surface_t surface, real x, real y)\n"
"\n"
" Sets the device offset for surface to x,y\n" },
{ 0 }
};
static const struct fbuiltin_4 surfuncs_4[] = {
{ do_Cairo_Surface_create_similar, "create_similar", SURFACE_S, SURFACE_S CONTENT_S "ii", "\n"
" surface_t create_similar (surface_t related, content_t content, int width, int height)\n"
"\n"
" Create a similar surface related to another surface\n" },
{ 0 }
};
static const struct fbuiltin_1 patfuncs_1[] = {
{ do_Cairo_Pattern_create_for_surface, "create_for_surface", PATTERN_S, SURFACE_S, "\n"
" pattern_t create_for_surface (surface_t surface)\n"
"\n"
" Returns a pattern referencing the specified surface\n" },
{ do_Cairo_Pattern_get_matrix, "get_matrix", MATRIX_S, PATTERN_S, "\n"
" matrix_t get_matrix (pattern_t pattern)\n"
"\n"
" Returns current pattern transformation matrix\n" },
{ do_Cairo_Pattern_get_extend, "get_extend", EXTEND_S, PATTERN_S, "\n"
" status_t get_extend (pattern_t pattern, extend_t extend)\n"
"\n"
" Returns current pattern extend method\n" },
{ do_Cairo_Pattern_get_filter, "get_filter", FILTER_S, PATTERN_S, "\n"
" status_t get_filter (pattern_t pattern, filter_t filter)\n"
"\n"
" Returns current pattern filter method\n" },
{ 0 }
};
static const struct fbuiltin_2 patfuncs_2[] = {
{ do_Cairo_Pattern_set_matrix, "set_matrix", "v", PATTERN_S MATRIX_S, "\n"
" void set_matrix (pattern_t pattern, matrix_t matrix)\n"
"\n"
" Set a transformation matrix for a pattern\n" },
{ do_Cairo_Pattern_set_extend, "set_extend", "v", PATTERN_S EXTEND_S, "\n"
" void set_extend (pattern_t pattern, extend_t extend)\n"
"\n"
" Set a extend method for a pattern\n" },
{ do_Cairo_Pattern_set_filter, "set_filter", "v", PATTERN_S FILTER_S, "\n"
" void set_filter (pattern_t pattern, filter_t filter)\n"
"\n"
" Set a filter method for a pattern\n" },
{ 0 }
};
static const struct fbuiltin_3 patfuncs_3[] = {
{ do_Cairo_Pattern_create_rgb, "create_rgb", PATTERN_S, "nnn", "\n"
" pattern_t create_rgb (real red, real green, real blue)\n"
"\n"
" Create a solid color pattern\n" },
{ 0 }
};
static const struct fbuiltin_4 patfuncs_4[] = {
{ do_Cairo_Pattern_create_rgba, "create_rgba", PATTERN_S, "nnnn", "\n"
" pattern_t create_rgb (real red, real green, real blue, real alpha)\n"
"\n"
" Create a solid color pattern with alpha\n" },
{ do_Cairo_Pattern_create_linear, "create_linear", PATTERN_S, "nnnn", "\n"
" pattern_t create_linear (real x0, real y0, real x1, real y1)\n"
"\n"
" Create a linear gradient pattern\n" },
{ 0 }
};
static const struct fbuiltin_5 patfuncs_5[] = {
{ do_Cairo_Pattern_add_color_stop_rgb, "add_color_stop_rgb", "v", PATTERN_S "nnnn", "\n"
" void add_color_stop_rgba (pattern_t cr, real offset, real red, real green, real blue)\n"
"\n"
" Add a color stop in a gradient pattern.\n" },
{ 0 }
};
static const struct fbuiltin_6 patfuncs_6[] = {
{ do_Cairo_Pattern_create_radial, "create_radial", PATTERN_S, "nnnnnn", "\n"
" pattern_t create_radial (real cx0, real cy0, real radius0, real cx1, real cy1, real radius1)\n"
"\n"
" Create a radial gradient pattern\n" },
{ do_Cairo_Pattern_add_color_stop_rgba, "add_color_stop_rgba", "v", PATTERN_S "nnnnn", "\n"
" void add_color_stop_rgba (pattern_t cr, real offset, real red, real green, real blue, real alpha)\n"
"\n"
" Add a color and opacity stop in a gradient pattern.\n" },
{ 0 }
};
static const struct fbuiltin_1 imgfuncs_1[] = {
{ do_Cairo_Image_surface_create_from_png, "surface_create_from_png", SURFACE_S, "s", "\n"
" surface_t surface_create_from_png (string filename)\n"
"\n"
" Create an image surface from the png image in filename\n" },
{ do_Cairo_Image_surface_create_from_png_file, "surface_create_from_png_file", SURFACE_S, "f", "\n"
" surface_t surface_create_from_png_file (file f)\n"
"\n"
" Create an image surface from the png image in f\n" },
{ 0 }
};
static const struct fbuiltin_3 imgfuncs_3[] = {
{ do_Cairo_Image_surface_create, "surface_create", SURFACE_S, FORMAT_S "ii", "\n"
" surface_t surface_create (int format, int width, int height)\n"
"\n"
" Create an image surface of the specified size in pixels\n" },
{ do_Cairo_Image_get_pixel, "get_pixel", "i", SURFACE_S "ii", "\n"
" int get_pixel (surface_t surface, int x, int y)\n"
"\n"
" Fetch a single pixel from an image surface\n" },
{ 0 }
};
static const struct fbuiltin_4 imgfuncs_4[] = {
{ do_Cairo_Image_put_pixel, "put_pixel", "v", SURFACE_S "iii", "\n"
" void put_pixel (surface_t surface, int x, int y, int pixel)\n"
"\n"
" Store a single pixel in an image surface\n" },
{ 0 }
};
#if HAVE_CAIRO_PDF_H
static const struct fbuiltin_3 pdffuncs_3[] = {
{ do_Cairo_Pdf_surface_create, "surface_create", SURFACE_S, "snn", "\n"
" surface_t surface_create (string filename, real width, real height)\n"
"\n"
" Create a PDF surface of the specified size in points, written to filename\n" },
{ do_Cairo_Pdf_surface_create, "surface_create_for_file", SURFACE_S, "snn", "\n"
" surface_t surface_create (file f, real width, real height)\n"
"\n"
" Create a PDF surface of the specified size in points, written to f\n" },
{ 0 }
};
#endif
#if HAVE_CAIRO_SVG_H
static const struct fbuiltin_3 svgfuncs_3[] = {
{ do_Cairo_Svg_surface_create, "surface_create", SURFACE_S, "snn", "\n"
" surface_t surface_create (string filename, real width, real height)\n"
"\n"
" Create an SVG surface of the specified size in points, written to filename\n" },
{ do_Cairo_Svg_surface_create, "surface_create_for_file", SURFACE_S, "snn", "\n"
" surface_t surface_create (file f, real width, real height)\n"
"\n"
" Create an SVG surface of the specified size in points, written to f\n" },
{ 0 }
};
#endif
#if HAVE_CAIRO_PS_H
static const struct fbuiltin_3 psfuncs_3[] = {
{ do_Cairo_Ps_surface_create, "surface_create", SURFACE_S, "snn", "\n"
" surface_t surface_create (string filename, real width, real height)\n"
"\n"
" Create a PS surface of the specified size in points, written to filename\n" },
{ do_Cairo_Ps_surface_create, "surface_create_for_file", SURFACE_S, "snn", "\n"
" surface_t surface_create (file f, real width, real height)\n"
"\n"
" Create a PS surface of the specified size in points, written to f\n" },
{ 0 }
};
#endif
static const struct fbuiltin_1 rsvgfuncs_1[] = {
{ do_Rsvg_new_from_string, "new_from_string", RSVG_S, "s", "\n"
" rsvg_t new_from_string (string svg)\n"
"\n"
" Create an RSVG object from the specified SVG string\n" },
{ do_Rsvg_new_from_file, "new_from_file", RSVG_S, "s", "\n"
" rsvg_t new_from_file (string file)\n"
"\n"
" Create an RSVG object from the specified SVG file\n" },
{ do_Rsvg_get_dimensions, "get_dimensions", RSVG_DIMENSIONS_S, RSVG_S, "\n"
" dimensions_t get_dimensions(rsvg_t rsvg)\n"
"\n"
" Get the dimensions and ex/em values for the specified SVG\n" },
{ do_Rsvg_get_title, "get_title", "s", RSVG_S, "\n"
" string get_title(rsvg_t rsvg)\n"
"\n"
" Get the title of specified SVG\n" },
{ do_Rsvg_get_desc, "get_desc", "s", RSVG_S, "\n"
" string get_desc(rsvg_t rsvg)\n"
"\n"
" Get the description of specified SVG\n" },
{ do_Rsvg_get_metadata, "get_metadata", "s", RSVG_S, "\n"
" string get_metadata(rsvg_t rsvg)\n"
"\n"
" Get the metadata of specified SVG\n" },
{ 0 }
};
static const struct fbuiltin_2 rsvgfuncs_2[] = {
{ do_Rsvg_render, "render", "v", RSVG_S CAIRO_S, "\n"
" void render (rsvg_t rsvg, cairo_t cairo)\n"
"\n"
" Draw an RSVG object using the specified cairo context\n" },
{ do_Rsvg_get_dimensions_sub, "get_dimensions_sub", RSVG_DIMENSIONS_S, RSVG_S "s", "\n"
" dimensions_t get_dimensions_sub(rsvg_t rsvg, string id)\n"
"\n"
" Get the dimensions and ex/em values for the specified 'id' subset of an SVG\n" },
{ do_Rsvg_get_position_sub, "get_position_sub", RSVG_POSITION_S, RSVG_S "s", "\n"
" position_t get_position_sub(rsvg_t rsvg, string id)\n"
"\n"
" Get the position of the specified 'id' subset of an SVG\n" },
{ 0 }
};
static const struct fbuiltin_3 rsvgfuncs_3[] = {
{ do_Rsvg_render_sub, "render_sub", "v", RSVG_S CAIRO_S "s", "\n"
" void render_sub (rsvg_t rsvg, cairo_t cairo, string id)\n"
"\n"
" Draw the 'id' subset of an RSVG object using the specified cairo context\n" },
{ 0 }
};
init_types ();
BuiltinFuncs1 (&CairoNamespace, funcs_1);
BuiltinFuncs2 (&CairoNamespace, funcs_2);
BuiltinFuncs3 (&CairoNamespace, funcs_3);
BuiltinFuncs4 (&CairoNamespace, funcs_4);
BuiltinFuncs5 (&CairoNamespace, funcs_5);
BuiltinFuncs6 (&CairoNamespace, funcs_6);
BuiltinFuncs7 (&CairoNamespace, funcs_7);
BuiltinFuncs1 (&CairoSurfaceNamespace, surfuncs_1);
BuiltinFuncs2 (&CairoSurfaceNamespace, surfuncs_2);
BuiltinFuncs3 (&CairoSurfaceNamespace, surfuncs_3);
BuiltinFuncs4 (&CairoSurfaceNamespace, surfuncs_4);
BuiltinFuncs1 (&CairoPatternNamespace, patfuncs_1);
BuiltinFuncs2 (&CairoPatternNamespace, patfuncs_2);
BuiltinFuncs3 (&CairoPatternNamespace, patfuncs_3);
BuiltinFuncs4 (&CairoPatternNamespace, patfuncs_4);
BuiltinFuncs5 (&CairoPatternNamespace, patfuncs_5);
BuiltinFuncs6 (&CairoPatternNamespace, patfuncs_6);
BuiltinFuncs1 (&CairoImageNamespace, imgfuncs_1);
BuiltinFuncs3 (&CairoImageNamespace, imgfuncs_3);
BuiltinFuncs4 (&CairoImageNamespace, imgfuncs_4);
#if HAVE_CAIRO_PDF_H
BuiltinFuncs3 (&CairoPdfNamespace, pdffuncs_3);
#endif
#if HAVE_CAIRO_SVG_H
BuiltinFuncs3 (&CairoSvgNamespace, svgfuncs_3);
#endif
#if HAVE_CAIRO_PS_H
BuiltinFuncs3 (&CairoPsNamespace, psfuncs_3);
#endif
rsvg_init();
BuiltinFuncs1 (&CairoRsvgNamespace, rsvgfuncs_1);
BuiltinFuncs2 (&CairoRsvgNamespace, rsvgfuncs_2);
BuiltinFuncs3 (&CairoRsvgNamespace, rsvgfuncs_3);
RETURN(TrueVal);
}
|