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 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
|
/* -*- Mode: C; c-basic-offset: 2; indent-tabs-mode: nil -*-
*
* Pigment Python binding
*
* Copyright © 2006, 2007, 2008 Fluendo Embedded S.L.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
* Author(s): Loïc Molinari <loic@fluendo.com>
* Philippe Normand <philippe@fluendo.com>
*/
#include <gdk-pixbuf/gdk-pixbuf.h>
/* tp_getset override */
%%
override-attr PgmViewport.title
static PyObject *
_wrap_pgm_viewport__get_title (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_title (self);
}
static int
_wrap_pgm_viewport__set_title (PyGObject *self,
PyObject *value,
void *closure)
{
gchar *title = encode_string (value);
if (!title)
return -1;
pyg_begin_allow_threads;
pgm_viewport_set_title (PGM_VIEWPORT (self->obj), title);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.visible
static PyObject *
_wrap_pgm_viewport__get_visible (PyGObject *self,
void *closure)
{
gboolean visible;
pyg_begin_allow_threads;
pgm_viewport_is_visible (PGM_VIEWPORT (self->obj), &visible);
pyg_end_allow_threads;
if (visible)
Py_RETURN_TRUE;
else
Py_RETURN_FALSE;
}
static int
_wrap_pgm_viewport__set_visible (PyGObject *self,
PyObject *value,
void *closure)
{
gint show;
if (!PyBool_Check (value))
{
PyErr_SetString (PyExc_TypeError, "a boolean is required");
return -1;
}
show = PyInt_AsLong (value);
pyg_begin_allow_threads;
if (show)
pgm_viewport_show (PGM_VIEWPORT (self->obj));
else
pgm_viewport_hide (PGM_VIEWPORT (self->obj));
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.decorated
static PyObject *
_wrap_pgm_viewport__get_decorated (PyGObject *self,
void *closure)
{
gboolean decorated;
pyg_begin_allow_threads;
pgm_viewport_get_decorated (PGM_VIEWPORT (self->obj), &decorated);
pyg_end_allow_threads;
if (decorated)
Py_RETURN_TRUE;
else
Py_RETURN_FALSE;
}
static int
_wrap_pgm_viewport__set_decorated (PyGObject *self,
PyObject *value,
void *closure)
{
gboolean decorated;
if (!PyBool_Check (value))
{
PyErr_SetString (PyExc_TypeError, "a boolean is required");
return -1;
}
decorated = PyInt_AsLong (value);
pyg_begin_allow_threads;
pgm_viewport_set_decorated (PGM_VIEWPORT (self->obj), decorated);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.cursor
static PyObject *
_wrap_pgm_viewport__get_cursor (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_cursor (self);
}
static int
_wrap_pgm_viewport__set_cursor (PyGObject *self,
PyObject *value,
void *closure)
{
PgmViewportCursor cursor;
if (pyg_enum_get_value (PGM_TYPE_VIEWPORT_CURSOR, value, (gint *) &cursor))
{
PyErr_SetString (PyExc_TypeError, "an integer is required");
return -1;
}
pyg_begin_allow_threads;
pgm_viewport_set_cursor (PGM_VIEWPORT (self->obj), cursor);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.icon
static PyObject *
_wrap_pgm_viewport__get_icon (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_icon (self);
}
static int
_wrap_pgm_viewport__set_icon (PyGObject *self,
PyObject *value,
void *closure)
{
GdkPixbuf *icon = NULL;
if (Py_None != value)
{
if (!pygobject_check(value, &PyGdkPixbuf_Type))
{
PyErr_SetString(PyExc_TypeError, "a gtk.gdk.Pixbuf is required");
return -1;
}
icon = GDK_PIXBUF (pygobject_get (value));
}
pyg_begin_allow_threads;
pgm_viewport_set_icon (PGM_VIEWPORT (self->obj), icon);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.size
static PyObject *
_wrap_pgm_viewport__get_size (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_size (self);
}
static int
_wrap_pgm_viewport__set_size (PyGObject *self,
PyObject *value,
void *closure)
{
PyObject *object;
gint width, height;
object = PyTuple_GetItem (value, 0);
width = PyInt_AsLong (object);
object = PyTuple_GetItem (value, 1);
height = PyInt_AsLong (object);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_set_size (PGM_VIEWPORT (self->obj), width, height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.width
static PyObject *
_wrap_pgm_viewport__get_width (PyGObject *self,
void *closure)
{
gint width, height;
pyg_begin_allow_threads;
pgm_viewport_get_size (PGM_VIEWPORT (self->obj), &width, &height);
pyg_end_allow_threads;
return PyInt_FromLong (width);
}
static int
_wrap_pgm_viewport__set_width (PyGObject *self,
PyObject *value,
void *closure)
{
gint width, _width, height;
_width = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_get_size (PGM_VIEWPORT (self->obj), &width, &height);
pgm_viewport_set_size (PGM_VIEWPORT (self->obj), _width, height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.height
static PyObject *
_wrap_pgm_viewport__get_height (PyGObject *self,
void *closure)
{
gint width, height;
pyg_begin_allow_threads;
pgm_viewport_get_size (PGM_VIEWPORT (self->obj), &width, &height);
pyg_end_allow_threads;
return PyInt_FromLong (height);
}
static int
_wrap_pgm_viewport__set_height (PyGObject *self,
PyObject *value,
void *closure)
{
gint width, height, _height;
_height = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_get_size (PGM_VIEWPORT (self->obj), &width, &height);
pgm_viewport_set_size (PGM_VIEWPORT (self->obj), width, _height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.alpha_blending
static PyObject *
_wrap_pgm_viewport__get_alpha_blending (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_alpha_blending (self);
}
static int
_wrap_pgm_viewport__set_alpha_blending (PyGObject *self,
PyObject *value,
void *closure)
{
gint alpha_blending;
if (!PyBool_Check (value))
{
PyErr_SetString (PyExc_TypeError, "a boolean is required");
return -1;
}
alpha_blending = PyInt_AsLong (value);
pyg_begin_allow_threads;
pgm_viewport_set_alpha_blending (PGM_VIEWPORT (self->obj), alpha_blending);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.opacity
static PyObject *
_wrap_pgm_viewport__get_opacity (PyGObject *self,
void *closure)
{
guchar opacity;
pyg_begin_allow_threads;
pgm_viewport_get_opacity (PGM_VIEWPORT (self->obj), &opacity);
pyg_end_allow_threads;
return PyInt_FromLong ((long) opacity);
}
static int
_wrap_pgm_viewport__set_opacity (PyGObject *self,
PyObject *value,
void *closure)
{
gint opacity;
opacity = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
opacity = CLAMP (opacity, 0, 255);
pyg_begin_allow_threads;
pgm_viewport_set_opacity (PGM_VIEWPORT (self->obj), (guchar) opacity);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.fullscreen
static PyObject *
_wrap_pgm_viewport__get_fullscreen (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_fullscreen (self);
}
static int
_wrap_pgm_viewport__set_fullscreen (PyGObject *self,
PyObject *value,
void *closure)
{
gint fullscreen;
if (!PyBool_Check (value))
{
PyErr_SetString (PyExc_TypeError, "a boolean is required");
return -1;
}
fullscreen = PyInt_AsLong (value);
pyg_begin_allow_threads;
pgm_viewport_set_fullscreen (PGM_VIEWPORT (self->obj), fullscreen);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.iconified
static PyObject *
_wrap_pgm_viewport__get_iconified (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_iconified (self);
}
static int
_wrap_pgm_viewport__set_iconified (PyGObject *self,
PyObject *value,
void *closure)
{
gint iconified;
if (!PyBool_Check (value))
{
PyErr_SetString (PyExc_TypeError, "a boolean is required");
return -1;
}
iconified = PyInt_AsLong (value);
pyg_begin_allow_threads;
pgm_viewport_set_iconified (PGM_VIEWPORT (self->obj), iconified);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.frame_rate
static PyObject *
_wrap_pgm_viewport__get_frame_rate (PyGObject *self,
void *closure)
{
guint frame_rate;
pyg_begin_allow_threads;
pgm_viewport_get_frame_rate (PGM_VIEWPORT (self->obj), &frame_rate);
pyg_end_allow_threads;
return PyInt_FromLong ((long) frame_rate);
}
%%
override-attr PgmViewport.canvas_rotation
static PyObject *
_wrap_pgm_viewport__get_canvas_rotation (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_canvas_rotation (self);
}
static int
_wrap_pgm_viewport__set_canvas_rotation (PyGObject *self,
PyObject *value,
void *closure)
{
PgmViewportRotation rotation;
if (pyg_enum_get_value (PGM_TYPE_VIEWPORT_ROTATION, value, (gint *) &rotation))
{
PyErr_SetString (PyExc_TypeError, "an integer is required");
return -1;
}
pyg_begin_allow_threads;
pgm_viewport_set_canvas_rotation (PGM_VIEWPORT (self->obj), rotation);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.canvas_reflection
static PyObject *
_wrap_pgm_viewport__get_canvas_reflection (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_canvas_reflection (self);
}
static int
_wrap_pgm_viewport__set_canvas_reflection (PyGObject *self,
PyObject *value,
void *closure)
{
PgmViewportReflection reflection;
if (pyg_enum_get_value (PGM_TYPE_VIEWPORT_REFLECTION, value,
(gint *) &reflection))
{
PyErr_SetString (PyExc_TypeError, "an integer is required");
return -1;
}
pyg_begin_allow_threads;
pgm_viewport_set_canvas_reflection (PGM_VIEWPORT (self->obj), reflection);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.screen_resolution
static PyObject *
_wrap_pgm_viewport__get_screen_resolution (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_screen_resolution (self);
}
static int
_wrap_pgm_viewport__set_screen_resolution (PyGObject *self,
PyObject *value,
void *closure)
{
PyObject *object;
gint width, height;
object = PyTuple_GetItem (value, 0);
width = PyInt_AsLong (object);
object = PyTuple_GetItem (value, 1);
height = PyInt_AsLong (object);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_set_screen_resolution (PGM_VIEWPORT (self->obj), width, height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.screen_resolution_width
static PyObject *
_wrap_pgm_viewport__get_screen_resolution_width (PyGObject *self,
void *closure)
{
gint width, height;
pyg_begin_allow_threads;
pgm_viewport_get_screen_resolution (PGM_VIEWPORT (self->obj), &width,
&height);
pyg_end_allow_threads;
return PyInt_FromLong (width);
}
static int
_wrap_pgm_viewport__set_screen_resolution_width (PyGObject *self,
PyObject *value,
void *closure)
{
gint width, _width, height;
_width = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_get_screen_resolution (PGM_VIEWPORT (self->obj), &width,
&height);
pgm_viewport_set_screen_resolution (PGM_VIEWPORT (self->obj), _width,
height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.screen_resolution_height
static PyObject *
_wrap_pgm_viewport__get_screen_resolution_height (PyGObject *self,
void *closure)
{
gint width, height;
pyg_begin_allow_threads;
pgm_viewport_get_screen_resolution (PGM_VIEWPORT (self->obj), &width,
&height);
pyg_end_allow_threads;
return PyInt_FromLong (height);
}
static int
_wrap_pgm_viewport__set_screen_resolution_height (PyGObject *self,
PyObject *value,
void *closure)
{
gint width, height, _height;
_height = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_get_screen_resolution (PGM_VIEWPORT (self->obj), &width,
&height);
pgm_viewport_set_screen_resolution (PGM_VIEWPORT (self->obj), width,
_height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.screen_size_mm
static PyObject *
_wrap_pgm_viewport__get_screen_size_mm (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_screen_size_mm (self);
}
static int
_wrap_pgm_viewport__set_screen_size_mm (PyGObject *self,
PyObject *value,
void *closure)
{
PyObject *object;
gint width, height;
object = PyTuple_GetItem (value, 0);
width = PyInt_AsLong (object);
object = PyTuple_GetItem (value, 1);
height = PyInt_AsLong (object);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_set_screen_size_mm (PGM_VIEWPORT (self->obj), width, height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.screen_size_mm_width
static PyObject *
_wrap_pgm_viewport__get_screen_size_mm_width (PyGObject *self,
void *closure)
{
gint width, height;
pyg_begin_allow_threads;
pgm_viewport_get_screen_size_mm (PGM_VIEWPORT (self->obj), &width, &height);
pyg_end_allow_threads;
return PyInt_FromLong (width);
}
static int
_wrap_pgm_viewport__set_screen_size_mm_width (PyGObject *self,
PyObject *value,
void *closure)
{
gint width, _width, height;
_width = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_get_screen_size_mm (PGM_VIEWPORT (self->obj), &width, &height);
pgm_viewport_set_screen_size_mm (PGM_VIEWPORT (self->obj), _width, height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.screen_size_mm_height
static PyObject *
_wrap_pgm_viewport__get_screen_size_mm_height (PyGObject *self,
void *closure)
{
gint width, height;
pyg_begin_allow_threads;
pgm_viewport_get_screen_size_mm (PGM_VIEWPORT (self->obj), &width, &height);
pyg_end_allow_threads;
return PyInt_FromLong (height);
}
static int
_wrap_pgm_viewport__set_screen_size_mm_height (PyGObject *self,
PyObject *value,
void *closure)
{
gint width, height, _height;
_height = PyInt_AsLong (value);
if (PyErr_Occurred ())
return -1;
pyg_begin_allow_threads;
pgm_viewport_get_screen_size_mm (PGM_VIEWPORT (self->obj), &width, &height);
pgm_viewport_set_screen_size_mm (PGM_VIEWPORT (self->obj), width, _height);
pyg_end_allow_threads;
return 0;
}
%%
override-attr PgmViewport.pixel_formats
static PyObject *
_wrap_pgm_viewport__get_pixel_formats (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_pixel_formats (self);
}
%%
override-attr PgmViewport.embedding_id
static PyObject *
_wrap_pgm_viewport__get_embedding_id (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_embedding_id (self);
}
%%
override-attr PgmViewport.caps_mask
static PyObject *
_wrap_pgm_viewport__get_caps_mask (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_caps_mask (self);
}
%%
override-attr PgmViewport.max_texture_size
static PyObject *
_wrap_pgm_viewport__get_max_texture_size (PyGObject *self,
void *closure)
{
return _wrap_pgm_viewport_get_max_texture_size (self);
}
/* Methods override */
%%
override pgm_viewport_is_visible noargs
static PyObject *
_wrap_pgm_viewport_is_visible (PyGObject *self)
{
gboolean visible;
pyg_begin_allow_threads;
pgm_viewport_is_visible (PGM_VIEWPORT (self->obj), &visible);
pyg_end_allow_threads;
return PyBool_FromLong (visible);
}
%%
override pgm_viewport_get_decorated noargs
static PyObject *
_wrap_pgm_viewport_get_decorated (PyGObject *self)
{
gboolean decorated;
pyg_begin_allow_threads;
pgm_viewport_get_decorated (PGM_VIEWPORT (self->obj), &decorated);
pyg_end_allow_threads;
return PyBool_FromLong (decorated);
}
%%
override pgm_viewport_get_title noargs
static PyObject *
_wrap_pgm_viewport_get_title (PyGObject *self)
{
gchar *title = NULL;
PyObject *py_string = NULL;
pyg_begin_allow_threads;
pgm_viewport_get_title (PGM_VIEWPORT (self->obj), &title);
pyg_end_allow_threads;
py_string = PyString_FromStringAndSize (title, strlen (title));
g_free (title);
if (!py_string)
{
Py_INCREF (Py_None);
return (Py_None);
}
return py_string;
}
%%
override pgm_viewport_get_cursor noargs
static PyObject *
_wrap_pgm_viewport_get_cursor (PyGObject *self)
{
PgmViewportCursor cursor;
pyg_begin_allow_threads;
pgm_viewport_get_cursor (PGM_VIEWPORT (self->obj), &cursor);
pyg_end_allow_threads;
return pyg_enum_from_gtype (PGM_TYPE_VIEWPORT_CURSOR, cursor);
}
%%
override pgm_viewport_get_icon noargs
static PyObject *
_wrap_pgm_viewport_get_icon (PyGObject *self)
{
PyObject *object;
GdkPixbuf *icon;
gint ret;
pyg_begin_allow_threads;
ret = pgm_viewport_get_icon (PGM_VIEWPORT (self->obj), &icon);
pyg_end_allow_threads;
if (PGM_ERROR_OK != ret)
PyErr_SetString (PyExc_RuntimeError, "problem while getting icon pixbuf");
if (NULL == icon)
Py_RETURN_NONE;
object = pygobject_new (G_OBJECT (icon));
g_object_unref (icon);
return object;
}
%%
override pgm_viewport_set_icon kwargs
static PyObject *
_wrap_pgm_viewport_set_icon (PyGObject *self,
PyObject *args,
PyObject *kwargs)
{
static char *kwlist[] = { "icon", NULL };
PyObject *icon;
GdkPixbuf *cicon = NULL;
gint ret;
if (!PyArg_ParseTupleAndKeywords (args, kwargs, "O:PgmViewport.set_icon",
kwlist, &icon))
return NULL;
if (Py_None != icon)
{
if (!pygobject_check (icon, &PyGdkPixbuf_Type))
{
PyErr_SetString (PyExc_TypeError, "a gtk.gdk.Pixbuf is required");
return NULL;
}
cicon = GDK_PIXBUF (pygobject_get (icon));
}
pyg_begin_allow_threads;
ret = pgm_viewport_set_icon (PGM_VIEWPORT (self->obj), cicon);
pyg_end_allow_threads;
return pyg_enum_from_gtype (PGM_TYPE_ERROR, ret);
}
%%
override pgm_viewport_get_size noargs
static PyObject *
_wrap_pgm_viewport_get_size (PyGObject *self)
{
gint width, height;
PyObject *py_tuple = NULL;
pyg_begin_allow_threads;
pgm_viewport_get_size (PGM_VIEWPORT (self->obj), &width, &height);
pyg_end_allow_threads;
py_tuple = PyTuple_New (2);
PyTuple_SetItem (py_tuple, 0, PyInt_FromLong (width));
PyTuple_SetItem (py_tuple, 1, PyInt_FromLong (height));
return py_tuple;
}
%%
override pgm_viewport_get_alpha_blending noargs
static PyObject *
_wrap_pgm_viewport_get_alpha_blending (PyGObject *self)
{
gboolean alpha_blending;
pyg_begin_allow_threads;
pgm_viewport_get_alpha_blending (PGM_VIEWPORT (self->obj), &alpha_blending);
pyg_end_allow_threads;
return PyBool_FromLong (alpha_blending);
}
%%
override pgm_viewport_get_opacity noargs
static PyObject *
_wrap_pgm_viewport_get_opacity (PyGObject *self)
{
guchar opacity;
PyObject *py_tuple = NULL;
pyg_begin_allow_threads;
pgm_viewport_get_opacity (PGM_VIEWPORT (self->obj), &opacity);
pyg_end_allow_threads;
return PyInt_FromLong ((long) opacity);
}
%%
override pgm_viewport_get_frame_rate noargs
static PyObject *
_wrap_pgm_viewport_get_frame_rate (PyGObject *self)
{
guint frame_rate;
pyg_begin_allow_threads;
pgm_viewport_get_frame_rate (PGM_VIEWPORT (self->obj), &frame_rate);
pyg_end_allow_threads;
return PyInt_FromLong ((long) frame_rate);
}
%%
override pgm_viewport_get_fullscreen noargs
static PyObject *
_wrap_pgm_viewport_get_fullscreen (PyGObject *self)
{
gboolean fullscreen;
pyg_begin_allow_threads;
pgm_viewport_get_fullscreen (PGM_VIEWPORT (self->obj), &fullscreen);
pyg_end_allow_threads;
return PyBool_FromLong (fullscreen);
}
%%
override pgm_viewport_get_iconified noargs
static PyObject *
_wrap_pgm_viewport_get_iconified (PyGObject *self)
{
gboolean iconified;
pyg_begin_allow_threads;
pgm_viewport_get_iconified (PGM_VIEWPORT (self->obj), &iconified);
pyg_end_allow_threads;
return PyBool_FromLong (iconified);
}
%%
override pgm_viewport_get_embedding_id noargs
static PyObject *
_wrap_pgm_viewport_get_embedding_id (PyGObject *self)
{
gulong embedding_id;
pyg_begin_allow_threads;
pgm_viewport_get_embedding_id (PGM_VIEWPORT (self->obj), &embedding_id);
pyg_end_allow_threads;
return PyInt_FromLong (embedding_id);
}
%%
override pgm_viewport_get_caps_mask noargs
static PyObject *
_wrap_pgm_viewport_get_caps_mask (PyGObject *self)
{
PyObject *py_tuple = NULL;
gulong mask = 0;
guint size = 0;
guint i;
pyg_begin_allow_threads;
pgm_viewport_get_caps_mask (PGM_VIEWPORT (self->obj), &mask);
pyg_end_allow_threads;
/* Get the size */
for (i = 0; i < 3; i++)
{
if (mask & (1 << i))
size++;
}
/* Build the tuple */
py_tuple = PyTuple_New (size);
/* And fill it */
size = 0;
for (i = 0; i < 3; i++)
{
if (mask & (1 << i))
{
PyTuple_SetItem (py_tuple, size,
pyg_flags_from_gtype (PGM_TYPE_VIEWPORT_CAPACITY,
mask & (1 << i)));
size++;
}
}
return py_tuple;
}
%%
override pgm_viewport_get_max_texture_size noargs
static PyObject *
_wrap_pgm_viewport_get_max_texture_size (PyGObject *self)
{
guint32 max_texture_size;
pyg_begin_allow_threads;
pgm_viewport_get_max_texture_size (PGM_VIEWPORT (self->obj),
&max_texture_size);
pyg_end_allow_threads;
return PyInt_FromLong (max_texture_size);
}
%%
override pgm_viewport_get_pixel_formats noargs
static PyObject *
_wrap_pgm_viewport_get_pixel_formats (PyGObject *self)
{
PyObject *py_tuple = NULL;
gulong mask = 0;
guint size = 0;
guint i;
pyg_begin_allow_threads;
pgm_viewport_get_pixel_formats (PGM_VIEWPORT (self->obj), &mask);
pyg_end_allow_threads;
/* Get the size */
for (i = 0; i < PGM_IMAGE_NB_PIXEL_FORMATS; i++)
{
if (mask & (1 << i))
size++;
}
/* Build the tuple */
py_tuple = PyTuple_New (size);
/* And fill it */
size = 0;
for (i = 0; i < PGM_IMAGE_NB_PIXEL_FORMATS; i++)
{
if (mask & (1 << i))
{
PyTuple_SetItem (py_tuple, size,
pyg_flags_from_gtype (PGM_TYPE_IMAGE_PIXEL_FORMAT,
mask & (1 << i)));
size++;
}
}
return py_tuple;
}
%%
override pgm_viewport_get_screen_resolution noargs
static PyObject *
_wrap_pgm_viewport_get_screen_resolution (PyGObject *self)
{
gint width, height;
PyObject *py_tuple = NULL;
pyg_begin_allow_threads;
pgm_viewport_get_screen_resolution (PGM_VIEWPORT (self->obj), &width,
&height);
pyg_end_allow_threads;
py_tuple = PyTuple_New (2);
PyTuple_SetItem (py_tuple, 0, PyInt_FromLong (width));
PyTuple_SetItem (py_tuple, 1, PyInt_FromLong (height));
return py_tuple;
}
%%
override pgm_viewport_get_screen_size_mm noargs
static PyObject *
_wrap_pgm_viewport_get_screen_size_mm (PyGObject *self)
{
gint width, height;
PyObject *py_tuple = NULL;
pyg_begin_allow_threads;
pgm_viewport_get_screen_size_mm (PGM_VIEWPORT (self->obj), &width, &height);
pyg_end_allow_threads;
py_tuple = PyTuple_New (2);
PyTuple_SetItem (py_tuple, 0, PyInt_FromLong (width));
PyTuple_SetItem (py_tuple, 1, PyInt_FromLong (height));
return py_tuple;
}
%%
override pgm_viewport_get_canvas noargs
static PyObject *
_wrap_pgm_viewport_get_canvas (PyGObject *self)
{
PgmCanvas* canvas;
PyObject* py_canvas;
PgmError ret;
pyg_begin_allow_threads;
ret = pgm_viewport_get_canvas (PGM_VIEWPORT (self->obj), &canvas);
pyg_end_allow_threads;
/* TODO: error management */
py_canvas = pygobject_new ((GObject *) canvas);
if (canvas)
gst_object_unref (canvas);
return py_canvas;
}
%%
override pgm_viewport_set_canvas kwargs
static PyObject *
_wrap_pgm_viewport_set_canvas (PyGObject *self,
PyObject *args,
PyObject *kwargs)
{
static char *kwlist[] = { "canvas", NULL };
PyObject *py_canvas;
gint ret;
if (!PyArg_ParseTupleAndKeywords (args, kwargs,"O:PgmViewport.set_canvas",
kwlist, &py_canvas))
return NULL;
if (!pygobject_check (py_canvas, &PyPgmCanvas_Type))
{
if (py_canvas == Py_None)
{
pyg_begin_allow_threads;
ret = pgm_viewport_set_canvas (PGM_VIEWPORT (self->obj), NULL);
pyg_end_allow_threads;
}
else
{
PyErr_SetString (PyExc_TypeError,
"a pgm.Canvas or None object is required");
return NULL;
}
}
else
{
PyGObject *canvas = (PyGObject*) py_canvas;
pyg_begin_allow_threads;
ret = pgm_viewport_set_canvas (PGM_VIEWPORT (self->obj),
PGM_CANVAS (canvas->obj));
pyg_end_allow_threads;
}
return pyg_enum_from_gtype (PGM_TYPE_ERROR, ret);
}
%%
override pgm_viewport_get_canvas_rotation noargs
static PyObject *
_wrap_pgm_viewport_get_canvas_rotation (PyGObject *self)
{
PgmViewportRotation rotation;
pyg_begin_allow_threads;
pgm_viewport_get_canvas_rotation (PGM_VIEWPORT (self->obj), &rotation);
pyg_end_allow_threads;
return pyg_enum_from_gtype (PGM_TYPE_VIEWPORT_ROTATION, rotation);
}
%%
override pgm_viewport_get_canvas_reflection noargs
static PyObject *
_wrap_pgm_viewport_get_canvas_reflection (PyGObject *self)
{
PgmViewportReflection reflection;
pyg_begin_allow_threads;
pgm_viewport_get_canvas_reflection (PGM_VIEWPORT (self->obj), &reflection);
pyg_end_allow_threads;
return pyg_enum_from_gtype (PGM_TYPE_VIEWPORT_REFLECTION, reflection);
}
%%
override pgm_viewport_get_message_filter noargs
static PyObject *
_wrap_pgm_viewport_get_message_filter (PyGObject *self)
{
PyObject *py_filter = NULL;
GList *filter = NULL;
GList *walk = NULL;
guint i = 0;
glong message;
guint size;
pyg_begin_allow_threads;
pgm_viewport_get_message_filter (PGM_VIEWPORT (self->obj), &filter);
pyg_end_allow_threads;
filter = g_list_reverse (filter);
py_filter = PyList_New (g_list_length (filter));
walk = filter;
while (walk)
{
message = (long) walk->data;
PyList_SetItem (py_filter, i, PyInt_FromLong (message));
walk = walk->next;
i++;
}
if (filter)
g_list_free (filter);
return py_filter;
}
%%
override pgm_viewport_set_message_filter args
static PyObject *
_wrap_pgm_viewport_set_message_filter (PyGObject *self,
PyObject *args)
{
PyObject *py_filter;
gint ret;
py_filter = PyTuple_GetItem (args, 0);
if (!pygobject_check (py_filter, &PyList_Type))
{
PyErr_SetString (PyExc_TypeError, "a List containing integers is "
"required");
return NULL;
}
else
{
GList *filter = NULL;
guint i;
for (i = 0; i < PyList_Size (py_filter); i++)
{
PyObject *py_message;
guint message;
py_message = PyList_GetItem (py_filter, i);
if (!PyInt_Check (py_message))
{
if (filter)
g_list_free (filter);
PyErr_SetString (PyExc_TypeError, "a List containing integers "
"is required");
return NULL;
}
message = (guint) PyInt_AsLong (py_message);
filter = g_list_prepend (filter, GUINT_TO_POINTER (message));
}
pyg_begin_allow_threads;
ret = pgm_viewport_set_message_filter (PGM_VIEWPORT (self->obj), filter);
pyg_end_allow_threads;
if (filter)
g_list_free (filter);
}
return pyg_enum_from_gtype (PGM_TYPE_ERROR, ret);
}
%%
override pgm_viewport_from_canvas kwargs
static PyObject *
_wrap_pgm_viewport_from_canvas (PyGObject *self,
PyObject *args,
PyObject *kwargs)
{
static char *kwlist[] = { "x", "y", "z", NULL };
PyObject *py_tuple = NULL;
gfloat viewport_x, viewport_y, viewport_z;
gfloat x, y, z;
PgmError ret;
if (!PyArg_ParseTupleAndKeywords (args, kwargs, "fff", kwlist, &x, &y, &z))
return NULL;
pyg_begin_allow_threads;
ret = pgm_viewport_from_canvas (PGM_VIEWPORT (self->obj), &viewport_x,
&viewport_y, &viewport_z, x, y, z);
pyg_end_allow_threads;
py_tuple = PyTuple_New (3);
PyTuple_SetItem (py_tuple, 0, PyFloat_FromDouble (viewport_x));
PyTuple_SetItem (py_tuple, 1, PyFloat_FromDouble (viewport_y));
PyTuple_SetItem (py_tuple, 2, PyFloat_FromDouble (viewport_z));
return py_tuple;
}
%%
override pgm_viewport_to_canvas kwargs
static PyObject *
_wrap_pgm_viewport_to_canvas (PyGObject *self,
PyObject *args,
PyObject *kwargs)
{
static char *kwlist[] = { "x", "y", "z", NULL };
PyObject *py_tuple = NULL;
gfloat canvas_x, canvas_y, canvas_z;
gfloat x, y, z;
PgmError ret;
if (!PyArg_ParseTupleAndKeywords (args, kwargs, "fff", kwlist, &x, &y, &z))
return NULL;
pyg_begin_allow_threads;
ret = pgm_viewport_to_canvas (PGM_VIEWPORT (self->obj), &canvas_x,
&canvas_y, &canvas_z, x, y, z);
pyg_end_allow_threads;
py_tuple = PyTuple_New (3);
PyTuple_SetItem (py_tuple, 0, PyFloat_FromDouble (canvas_x));
PyTuple_SetItem (py_tuple, 1, PyFloat_FromDouble (canvas_y));
PyTuple_SetItem (py_tuple, 2, PyFloat_FromDouble (canvas_z));
return py_tuple;
}
|