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
|
/* $XConsortium: multiVis.c /main/4 1996/10/14 15:04:08 swick $ */
/** ------------------------------------------------------------------------
This file contains functions to create a list of regions which
tile a specified window. Each region contains all visible
portions of the window which are drawn with the same visual.
If the window consists of subwindows of two different visual types,
there will be two regions in the list. The list can be traversed
to correctly pull an image of the window using XGetImage or the
Image Library.
Copyright (c) 1994 Hewlett-Packard Co.
Copyright (c) 1996 X Consortium
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from the X Consortium.
------------------------------------------------------------------------ **/
#include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/X.h>
#include <stdio.h>
#include "list.h"
#include "wsutils.h"
#include "multiVis.h"
static char *vis_class_str[] = { "StaticGray" , "GrayScale" , "StaticColor",
"PseudoColor","TrueColor","DirectColor" } ;
/* These structures are copied from X11/region.h. For some reason
* they're invisible from the outside.
*/
typedef struct {
short x1, x2, y1, y2;
} myBox, myBOX, myBoxRec, *myBoxPtr;
typedef struct my_XRegion {
long size;
long numRects;
myBOX *rects;
myBOX extents;
} myREGION;
/* Items in long list of windows that have some part in the grabbed area */
typedef struct {
Window win;
Visual *vis;
Colormap cmap;
int x_rootrel, y_rootrel; /* root relative location of window */
int x_vis, y_vis; /* rt rel x,y of vis part, not parent clipped */
int width, height; /* width and height of visible part */
int border_width; /* border width of the window */
Window parent; /* id of parent (for debugging) */
} image_win_type;
/* Items in short list of regions that tile the grabbed area. May have
multiple windows in the region.
*/
typedef struct {
Window win; /* lowest window of this visual */
Visual *vis;
Colormap cmap;
int x_rootrel, y_rootrel; /* root relative location of bottom window */
int x_vis, y_vis; /* rt rel x,y of vis part, not parent clipped */
int width, height; /* w & h of visible rect of bottom window */
int border; /* border width of the window */
Region visible_region;
} image_region_type;
/** ------------------------------------------------------------------------
Returns TRUE if the two structs pointed to have the same "vis" &
"cmap" fields and s2 lies completely within s1. s1 and s2 can
point to structs of image_win_type or image_region_type.
------------------------------------------------------------------------ **/
#define SAME_REGIONS( s1, s2) \
((s1)->vis == (s2)->vis && (s1)->cmap == (s2)->cmap && \
(s1)->x_vis <= (s2)->x_vis && \
(s1)->y_vis <= (s2)->y_vis && \
(s1)->x_vis + (s1)->width >= (s2)->x_vis + (s2)->width && \
(s1)->y_vis + (s1)->height >= (s2)->y_vis + (s2)->height)
#ifndef MIN
#define MIN( a, b) ((a) < (b) ? a : b)
#define MAX( a, b) ((a) > (b) ? a : b)
#endif
#define RED_SHIFT 16
#define GREEN_SHIFT 8
#define BLUE_SHIFT 0
/*
extern list_ptr new_list();
extern list_ptr dup_list_head();
extern void * first_in_list();
extern void * next_in_list();
extern int add_to_list();
extern void zero_list();
extern void delete_list();
extern void delete_list_destroying();
extern unsigned int list_length();
*/
/* Prototype Declarations for Static Functions */
static int QueryColorMap(
#if NeedFunctionPrototypes
Display *, Colormap , Visual *,
XColor **, int *, int *, int *
#endif
);
static void TransferImage(
#if NeedFunctionPrototypes
Display *, XImage *,int, int , image_region_type*,
XImage *,int ,int
#endif
);
static XImage * ReadRegionsInList(
#if NeedFunctionPrototypes
Display *, Visual *, int ,int ,int ,
int , XRectangle, list_ptr
#endif
);
static list_ptr make_region_list(
#if NeedFunctionPrototypes
Display*, Window, XRectangle*,
int*, int, XVisualInfo**, int *
#endif
);
static void destroy_region_list(
#if NeedFunctionPrototypes
list_ptr
#endif
) ;
static void subtr_rect_from_image_region(
#if NeedFunctionPrototypes
image_region_type *, int , int , int , int
#endif
);
static void add_rect_to_image_region(
#if NeedFunctionPrototypes
image_region_type *,
int , int , int , int
#endif
);
static int src_in_region_list(
#if NeedFunctionPrototypes
image_win_type *, list_ptr
#endif
);
static void add_window_to_list(
#if NeedFunctionPrototypes
list_ptr, Window, int, int ,
int , int , int , int, int,
Visual*, Colormap, Window
#endif
);
static int src_in_image(
#if NeedFunctionPrototypes
image_win_type *, int , XVisualInfo**
#endif
);
static int src_in_overlay(
#if NeedFunctionPrototypes
image_region_type *, int, OverlayInfo *, int*, int*
#endif
);
/* End of Prototype Declarations */
void initFakeVisual(Vis)
Visual *Vis ;
{
Vis->ext_data=NULL;
Vis->class = DirectColor ;
Vis->red_mask = 0x00FF0000;
Vis->green_mask = 0x0000FF00 ;
Vis->blue_mask = 0x000000FF ;
Vis->map_entries = 256 ;
Vis->bits_per_rgb = 8 ;
}
static int
QueryColorMap(disp,src_cmap,src_vis,src_colors,rShift,gShift,bShift)
Display *disp ;
Visual *src_vis ;
Colormap src_cmap ;
XColor **src_colors ;
int *rShift, *gShift, *bShift;
{
int ncolors,i ;
unsigned long redMask, greenMask, blueMask, pixel;
int redShift, greenShift, blueShift;
XColor *colors ;
ncolors = src_vis->map_entries ;
*src_colors = colors = (XColor *)malloc(ncolors * sizeof(XColor) ) ;
if(src_vis->class != TrueColor && src_vis->class != DirectColor)
{
for(i=0 ; i < ncolors ; i++)
{
colors[i].pixel = i ;
colors[i].pad = 0;
colors[i].flags = DoRed|DoGreen|DoBlue;
}
}
else /** src is decomposed rgb ***/
{
/* Get the X colormap */
redMask = src_vis->red_mask;
greenMask = src_vis->green_mask;
blueMask = src_vis->blue_mask;
redShift = 0; while (!(redMask&0x1)) {
redShift++;
redMask = redMask>>1;
}
greenShift = 0; while (!(greenMask&0x1)) {
greenShift++;
greenMask = greenMask>>1;
}
blueShift = 0; while (!(blueMask&0x1)) {
blueShift++;
blueMask = blueMask>>1;
}
*rShift = redShift ;
*gShift = greenShift ;
*bShift = blueShift ;
for (i=0; i<ncolors; i++) {
if( i <= redMask)colors[i].pixel = (i<<redShift) ;
if( i <= greenMask)colors[i].pixel |= (i<<greenShift) ;
if( i <= blueMask)colors[i].pixel |= (i<<blueShift) ;
/***** example :for gecko's 3-3-2 map, blue index should be <= 3.
colors[i].pixel = (i<<redShift)|(i<<greenShift)|(i<<blueShift);
*****/
colors[i].pad = 0;
colors[i].flags = DoRed|DoGreen|DoBlue;
}
}
XQueryColors(disp, src_cmap, colors, ncolors);
return ncolors ;
}
int
GetMultiVisualRegions(disp,srcRootWinid, x, y, width, height,
transparentOverlays,numVisuals, pVisuals,numOverlayVisuals, pOverlayVisuals,
numImageVisuals, pImageVisuals,vis_regions,vis_image_regions,allImage)
Display *disp;
Window srcRootWinid; /* root win on which grab was done */
int x; /* root rel UL corner of bounding box of grab */
int y;
unsigned int width; /* size of bounding box of grab */
unsigned int height;
int *transparentOverlays ;
int *numVisuals;
XVisualInfo **pVisuals;
int *numOverlayVisuals;
OverlayInfo **pOverlayVisuals;
int *numImageVisuals;
XVisualInfo ***pImageVisuals;
list_ptr *vis_regions; /* list of regions to read from */
list_ptr *vis_image_regions ;
int *allImage ;
{
int hasNonDefault;
XRectangle bbox; /* bounding box of grabbed area */
bbox.x = x; /* init X rect for bounding box */
bbox.y = y;
bbox.width = width;
bbox.height = height;
GetXVisualInfo(disp,DefaultScreen(disp),
transparentOverlays,
numVisuals, pVisuals,
numOverlayVisuals, pOverlayVisuals,
numImageVisuals, pImageVisuals);
*vis_regions = *vis_image_regions = NULL ;
if ((*vis_regions = make_region_list( disp, srcRootWinid, &bbox,
&hasNonDefault, *numImageVisuals,
*pImageVisuals, allImage)) == NULL)
return 0 ;
if (*transparentOverlays)
{
*allImage = 1; /* until proven otherwise,
this flags that it to be an image only list */
*vis_image_regions =
make_region_list( disp, srcRootWinid, &bbox, &hasNonDefault,
*numImageVisuals, *pImageVisuals, allImage);
}
/* if there is a second region in any of the two lists return 1 **/
if ( ( *vis_regions && (*vis_regions)->next && (*vis_regions)->next->next ) ||
( *vis_image_regions && (*vis_image_regions)->next &&
(*vis_image_regions)->next->next ) ) return 1 ;
else return 0 ;
}
static void TransferImage(disp,reg_image,srcw,srch,reg,
target_image,dst_x,dst_y)
Display *disp;
XImage *reg_image,*target_image ;
image_region_type *reg;
int srcw,srch,dst_x , dst_y ;
{
int *indexMap,ncolors ;
int i,j,old_pixel,new_pixel,red_ind,green_ind,blue_ind ;
XColor *colors;
int rShift,gShift,bShift;
int targetBytesPerLine ;
ncolors = QueryColorMap(disp,reg->cmap,reg->vis,&colors,
&rShift,&gShift,&bShift) ;
targetBytesPerLine = target_image->bytes_per_line;
switch (reg->vis->class) {
case TrueColor :
for(i=0 ; i < srch ; i++)
{
for(j=0 ; j < srcw ; j++)
{
old_pixel = XGetPixel(reg_image,j,i) ;
if( reg->vis->map_entries == 16) {
red_ind = (old_pixel & reg->vis->red_mask) >> rShift ;
green_ind = (old_pixel & reg->vis->green_mask) >> gShift ;
blue_ind = (old_pixel & reg->vis->blue_mask) >> bShift ;
new_pixel = (
((colors[red_ind].red >> 8) << RED_SHIFT)
|((colors[green_ind].green >> 8) << GREEN_SHIFT)
|((colors[blue_ind].blue >> 8) << BLUE_SHIFT)
);
}
else
new_pixel = old_pixel;
XPutPixel(target_image,dst_x+j, dst_y+i,new_pixel);
}
}
break;
case DirectColor :
for(i=0 ; i < srch ; i++)
{
for(j=0 ; j < srcw ; j++)
{
old_pixel = XGetPixel(reg_image,j,i) ;
red_ind = (old_pixel & reg->vis->red_mask) >> rShift ;
green_ind = (old_pixel & reg->vis->green_mask) >> gShift ;
blue_ind = (old_pixel & reg->vis->blue_mask) >> bShift ;
new_pixel = (
((colors[red_ind].red >> 8) << RED_SHIFT)
|((colors[green_ind].green >> 8) << GREEN_SHIFT)
|((colors[blue_ind].blue >> 8) << BLUE_SHIFT)
);
XPutPixel(target_image,dst_x+j, dst_y+i,new_pixel);
}
}
break;
default :
for(i=0 ; i < srch ; i++)
{
for(j=0 ; j < srcw ; j++)
{
old_pixel = XGetPixel(reg_image,j,i) ;
new_pixel = (
((colors[old_pixel].red >> 8) << RED_SHIFT)
|((colors[old_pixel].green >> 8) << GREEN_SHIFT)
|((colors[old_pixel].blue >> 8) << BLUE_SHIFT)
);
XPutPixel(target_image,dst_x+j, dst_y+i,new_pixel);
}
}
break;
}
}
static XImage *
ReadRegionsInList(disp,fakeVis,depth,format,width,height,bbox,regions)
Display *disp ;
Visual *fakeVis ;
int depth , width , height ;
int format ;
XRectangle bbox; /* bounding box of grabbed area */
list_ptr regions;/* list of regions to read from */
{
image_region_type *reg;
int dst_x, dst_y; /* where in pixmap to write (UL) */
int diff;
int hasNonDefault;
int allImage = 0;
int transparentColor, transparentType;
XImage *reg_image,*ximage ;
int srcRect_x,srcRect_y,srcRect_width,srcRect_height ;
int rem ;
int bytes_per_line;
int bitmap_unit;
bitmap_unit = sizeof (long);
if (format == ZPixmap)
bytes_per_line = width*depth/8;
else
bytes_per_line = width/8;
/* Find out how many more bytes are required for padding so that
** bytes per scan line will be multiples of bitmap_unit bits */
if (format == ZPixmap) {
rem = (bytes_per_line*8)%bitmap_unit;
if (rem)
bytes_per_line += (rem/8 + 1);
}
ximage = XCreateImage(disp,fakeVis,depth,format,0,NULL,width,height,
8,0) ;
bytes_per_line = ximage->bytes_per_line;
if (format == ZPixmap)
ximage->data = malloc(height*bytes_per_line);
else
ximage->data = malloc(height*bytes_per_line*depth);
ximage->bits_per_pixel = depth; /** Valid only if format is ZPixmap ***/
for (reg = (image_region_type *) first_in_list( regions); reg;
reg = (image_region_type *) next_in_list( regions))
{
int rect;
struct my_XRegion *vis_reg;
vis_reg = (struct my_XRegion *)(reg->visible_region);
for (rect = 0;
rect < vis_reg->numRects;
rect++)
{
/** ------------------------------------------------------------------------
Intersect bbox with visible part of region giving src rect & output
location. Width is the min right side minus the max left side.
Similar for height. Offset src rect so x,y are relative to
origin of win, not the root-relative visible rect of win.
------------------------------------------------------------------------ **/
srcRect_width = MIN( vis_reg->rects[rect].x2, bbox.width + bbox.x) -
MAX( vis_reg->rects[rect].x1, bbox.x);
srcRect_height = MIN( vis_reg->rects[rect].y2, bbox.height + bbox.y) -
MAX( vis_reg->rects[rect].y1, bbox.y);
diff = bbox.x - vis_reg->rects[rect].x1;
srcRect_x = MAX( 0, diff) + (vis_reg->rects[rect].x1 - reg->x_rootrel - reg->border);
dst_x = MAX( 0, -diff) ;
diff = bbox.y - vis_reg->rects[rect].y1;
srcRect_y = MAX( 0, diff) + (vis_reg->rects[rect].y1 - reg->y_rootrel - reg->border);
dst_y = MAX( 0, -diff) ;
reg_image = XGetImage(disp,reg->win,srcRect_x,srcRect_y,
srcRect_width,srcRect_height,AllPlanes,format) ;
TransferImage(disp,reg_image,srcRect_width,
srcRect_height,reg,ximage,dst_x,dst_y) ;
}
}
return ximage ;
}
/** ------------------------------------------------------------------------
------------------------------------------------------------------------ **/
XImage *ReadAreaToImage(disp, srcRootWinid, x, y, width, height,
numVisuals,pVisuals,numOverlayVisuals,pOverlayVisuals,numImageVisuals,
pImageVisuals,vis_regions,vis_image_regions,format,allImage)
Display *disp;
Window srcRootWinid; /* root win on which grab was done */
int x; /* root rel UL corner of bounding box of grab */
int y;
unsigned int width; /* size of bounding box of grab */
unsigned int height;
/** int transparentOverlays; ***/
int numVisuals;
XVisualInfo *pVisuals;
int numOverlayVisuals;
OverlayInfo *pOverlayVisuals;
int numImageVisuals;
XVisualInfo **pImageVisuals;
list_ptr vis_regions; /* list of regions to read from */
list_ptr vis_image_regions ;/* list of regions to read from */
int format;
int allImage ;
{
image_region_type *reg;
XRectangle bbox; /* bounding box of grabbed area */
int depth ;
XImage *ximage, *ximage_ipm ;
Visual fakeVis ;
int x1, y1;
XImage *image;
unsigned char *pmData , *ipmData ;
int transparentColor, transparentType;
int srcRect_x,srcRect_y,srcRect_width,srcRect_height ;
int diff ;
int dst_x, dst_y; /* where in pixmap to write (UL) */
int pixel;
bbox.x = x; /* init X rect for bounding box */
bbox.y = y;
bbox.width = width;
bbox.height = height;
initFakeVisual(&fakeVis) ;
depth = 24 ;
ximage = ReadRegionsInList(disp,&fakeVis,depth,format,width,height,
bbox,vis_regions) ;
pmData = (unsigned char *)ximage -> data ;
/* if transparency possible do it again, but this time for image planes only */
if (vis_image_regions && (vis_image_regions->next) && !allImage)
{
ximage_ipm = ReadRegionsInList(disp,&fakeVis,depth,format,width,height,
bbox,vis_image_regions) ;
ipmData = (unsigned char *)ximage_ipm -> data ;
}
/* Now tranverse the overlay visual windows and test for transparency index. */
/* If you find one, subsitute the value from the matching image plane pixmap. */
for (reg = (image_region_type *) first_in_list( vis_regions); reg;
reg = (image_region_type *) next_in_list( vis_regions))
{
if (src_in_overlay( reg, numOverlayVisuals, pOverlayVisuals,
&transparentColor, &transparentType))
{
int test = 0 ;
srcRect_width = MIN( reg->width + reg->x_vis, bbox.width + bbox.x)
- MAX( reg->x_vis, bbox.x);
srcRect_height = MIN( reg->height + reg->y_vis, bbox.height
+ bbox.y) - MAX( reg->y_vis, bbox.y);
diff = bbox.x - reg->x_vis;
srcRect_x = MAX( 0, diff) + (reg->x_vis - reg->x_rootrel - reg->border);
dst_x = MAX( 0, -diff) ;
diff = bbox.y - reg->y_vis;
srcRect_y = MAX( 0, diff) + (reg->y_vis - reg->y_rootrel - reg->border);
dst_y = MAX( 0, -diff) ;
/* let's test some pixels for transparency */
image = XGetImage(disp, reg->win, srcRect_x, srcRect_y,
srcRect_width, srcRect_height, 0xffffffff, ZPixmap);
/* let's assume byte per pixel for overlay image for now */
if ((image->depth == 8) && (transparentType == TransparentPixel))
{
unsigned char *pixel_ptr;
unsigned char *start_of_line = (unsigned char *) image->data;
for (y1 = 0; y1 < srcRect_height; y1++) {
pixel_ptr = start_of_line;
for (x1 = 0; x1 < srcRect_width; x1++)
{
if (*pixel_ptr++ == transparentColor)
{
/*
*pmData++ = *ipmData++;
*pmData++ = *ipmData++;
*pmData++ = *ipmData++;
*/
pixel = XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
XPutPixel(ximage,dst_x+x1, dst_y+y1,pixel);
if(!test){
test = 1 ;
}
}
/*
else {
pmData +=3;
ipmData +=3;
}
*/
}
start_of_line += image->bytes_per_line;
}
} else {
if (transparentType == TransparentPixel) {
for (y1 = 0; y1 < srcRect_height; y1++) {
for (x1 = 0; x1 < srcRect_width; x1++)
{
int pixel_value = XGetPixel(image, x1, y1);
if (pixel_value == transparentColor)
{
/*
*pmData++ = *ipmData++;
*pmData++ = *ipmData++;
*pmData++ = *ipmData++;
*/
pixel = XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
XPutPixel(ximage,dst_x+x1, dst_y+y1,pixel);
if(!test){
test = 1 ;
}
}
/*
else {
pmData +=3;
ipmData +=3;
}
*/
}
}
} else {
for (y1 = 0; y1 < srcRect_height; y1++) {
for (x1 = 0; x1 < srcRect_width; x1++)
{
int pixel_value = XGetPixel(image, x1, y1);
if (pixel_value & transparentColor)
{
/*
*pmData++ = *ipmData++;
*pmData++ = *ipmData++;
*pmData++ = *ipmData++;
*/
pixel = XGetPixel(ximage_ipm,dst_x+x1,dst_y+y1) ;
XPutPixel(ximage,dst_x+x1, dst_y+y1,pixel);
if(!test){
test = 1 ;
}
}
/*
else {
pmData +=3;
ipmData +=3;
}
*/
}
}
}
}
XDestroyImage (image);
} /* end of src_in_overlay */
} /** end transparency **/
destroy_region_list( vis_regions);
if (vis_image_regions) destroy_region_list( vis_image_regions );
FreeXVisualInfo(pVisuals, pOverlayVisuals, pImageVisuals);
XSync(disp, 0);
return ximage;
}
/** ------------------------------------------------------------------------
Creates a list of the subwindows of a given window which have a
different visual than their parents. The function is recursive.
This list is used in make_region_list(), which coalesces the
windows with the same visual into a region.
image_wins must point to an existing list struct that's already
been zeroed (zero_list()).
------------------------------------------------------------------------ **/
static void make_src_list( disp, image_wins, bbox, curr, x_rootrel, y_rootrel,
curr_attrs, pclip)
Display *disp;
list_ptr image_wins;
XRectangle *bbox; /* bnding box of area we want */
Window curr;
int x_rootrel; /* pos of curr WRT root */
int y_rootrel;
XWindowAttributes *curr_attrs;
XRectangle *pclip; /* visible part of curr, not */
/* obscurred by ancestors */
{
XWindowAttributes child_attrs;
Window root, parent, *child; /* variables for XQueryTree() */
Window *save_child_list; /* variables for XQueryTree() */
unsigned int nchild; /* variables for XQueryTree() */
XRectangle child_clip; /* vis part of child */
int curr_clipX, curr_clipY, curr_clipRt, curr_clipBt;
/* check that win is mapped & not outside bounding box */
if (curr_attrs->map_state == IsViewable &&
curr_attrs->class == InputOutput &&
!( pclip->x >= (int) (bbox->x + bbox->width) ||
pclip->y >= (int) (bbox->y + bbox->height) ||
(int) (pclip->x + pclip->width) <= bbox->x ||
(int) (pclip->y + pclip->height) <= bbox->y)) {
XQueryTree( disp, curr, &root, &parent, &child, &nchild );
save_child_list = child; /* so we can free list when we're done */
add_window_to_list( image_wins, curr, x_rootrel, y_rootrel,
pclip->x, pclip->y,
pclip->width, pclip->height,
curr_attrs->border_width,curr_attrs->visual,
curr_attrs->colormap, parent);
/** ------------------------------------------------------------------------
set RR coords of right (Rt), left (X), bottom (Bt) and top (Y)
of rect we clip all children by. This is our own clip rect (pclip)
inflicted on us by our parent plus our own borders. Within the
child loop, we figure the clip rect for each child by adding in
it's rectangle (not taking into account the child's borders).
------------------------------------------------------------------------ **/
curr_clipX = MAX( pclip->x, x_rootrel + (int) curr_attrs->border_width);
curr_clipY = MAX( pclip->y, y_rootrel + (int) curr_attrs->border_width);
curr_clipRt = MIN( pclip->x + (int) pclip->width,
x_rootrel + (int) curr_attrs->width +
2 * (int) curr_attrs->border_width);
curr_clipBt = MIN( pclip->y + (int) pclip->height,
y_rootrel + (int) curr_attrs->height +
2 * (int) curr_attrs->border_width);
while (nchild--) {
int new_width, new_height;
int child_xrr, child_yrr; /* root relative x & y of child */
XGetWindowAttributes( disp, *child, &child_attrs);
/* intersect parent & child clip rects */
child_xrr = x_rootrel + child_attrs.x + curr_attrs->border_width;
child_clip.x = MAX( curr_clipX, child_xrr);
new_width = MIN( curr_clipRt, child_xrr + (int) child_attrs.width
+ 2 * child_attrs.border_width)
- child_clip.x;
if (new_width >= 0) {
child_clip.width = new_width;
child_yrr = y_rootrel + child_attrs.y +
curr_attrs->border_width;
child_clip.y = MAX( curr_clipY, child_yrr);
new_height = MIN( curr_clipBt,
child_yrr + (int) child_attrs.height +
2 * child_attrs.border_width)
- child_clip.y;
if (new_height >= 0) {
child_clip.height = new_height;
make_src_list( disp, image_wins, bbox, *child,
child_xrr, child_yrr,
&child_attrs, &child_clip);
}
}
child++;
}
XFree( save_child_list);
}
}
/** ------------------------------------------------------------------------
This function creates a list of regions which tile a specified
window. Each region contains all visible portions of the window
which are drawn with the same visual. For example, if the
window consists of subwindows of two different visual types,
there will be two regions in the list.
Returns a pointer to the list.
------------------------------------------------------------------------ **/
static list_ptr make_region_list( disp, win, bbox, hasNonDefault,
numImageVisuals, pImageVisuals, allImage)
Display *disp;
Window win;
XRectangle *bbox;
int *hasNonDefault;
int numImageVisuals;
XVisualInfo **pImageVisuals;
int *allImage;
{
XWindowAttributes win_attrs;
list image_wins;
list_ptr image_regions;
list_ptr srcs_left;
image_region_type *new_reg;
image_win_type *base_src, *src;
Region bbox_region = XCreateRegion();
XRectangle clip;
int image_only;
int count=0 ;
*hasNonDefault = False;
XUnionRectWithRegion( bbox, bbox_region, bbox_region);
XGetWindowAttributes( disp, win, &win_attrs);
zero_list( &image_wins);
clip.x = 0;
clip.y = 0;
clip.width = win_attrs.width;
clip.height = win_attrs.height;
make_src_list( disp, &image_wins, bbox, win,
0 /* x_rootrel */, 0 /* y_rootrel */, &win_attrs, &clip);
image_regions = new_list();
image_only = (*allImage) ? True:False;
for (base_src = (image_win_type *) first_in_list( &image_wins); base_src;
base_src = (image_win_type *) next_in_list( &image_wins))
{
/* test for image visual */
if (!image_only || src_in_image(base_src, numImageVisuals, pImageVisuals))
{
/* find a window whose visual hasn't been put in list yet */
if (!src_in_region_list( base_src, image_regions))
{
if (! (new_reg = (image_region_type *)
malloc( sizeof( image_region_type)))) {
return (list_ptr) NULL;
}
count++;
new_reg->visible_region = XCreateRegion();
new_reg->win = base_src->win;
new_reg->vis = base_src->vis;
new_reg->cmap = base_src->cmap;
new_reg->x_rootrel = base_src->x_rootrel;
new_reg->y_rootrel = base_src->y_rootrel;
new_reg->x_vis = base_src->x_vis;
new_reg->y_vis = base_src->y_vis;
new_reg->width = base_src->width;
new_reg->height = base_src->height;
new_reg->border = base_src->border_width;
srcs_left = (list_ptr) dup_list_head( &image_wins, START_AT_CURR);
for (src = (image_win_type *) first_in_list( srcs_left); src;
src = (image_win_type *) next_in_list( srcs_left)) {
if (SAME_REGIONS( base_src, src)) {
add_rect_to_image_region( new_reg, src->x_vis, src->y_vis,
src->width, src->height);
}
else {
if (!image_only || src_in_image(src, numImageVisuals, pImageVisuals))
{
subtr_rect_from_image_region( new_reg, src->x_vis,
src->y_vis, src->width, src->height);
}
}
}
XIntersectRegion( bbox_region, new_reg->visible_region,
new_reg->visible_region);
if (! XEmptyRegion( new_reg->visible_region)) {
add_to_list( image_regions, new_reg);
if (new_reg->vis != DefaultVisualOfScreen( win_attrs.screen) ||
new_reg->cmap != DefaultColormapOfScreen(
win_attrs.screen)) {
*hasNonDefault = True;
}
}
else {
XDestroyRegion( new_reg->visible_region);
free( (void *) new_reg);
}
}
} else *allImage = 0;
}
delete_list( &image_wins, True);
XDestroyRegion( bbox_region);
return image_regions;
}
/** ------------------------------------------------------------------------
Destructor called from destroy_region_list().
------------------------------------------------------------------------ **/
void destroy_image_region( image_region)
image_region_type *image_region;
{
XDestroyRegion( image_region->visible_region);
free( (void *) image_region);
}
/** ------------------------------------------------------------------------
Destroys the region list, destroying all the regions contained in it.
------------------------------------------------------------------------ **/
static void destroy_region_list( rlist)
list_ptr rlist;
{
delete_list_destroying( rlist, (DESTRUCT_FUNC_PTR)destroy_image_region);
}
/** ------------------------------------------------------------------------
Subtracts the specified rectangle from the region in image_region.
First converts the rectangle to a region of its own, since X
only provides a way to subtract one region from another, not a
rectangle from a region.
------------------------------------------------------------------------ **/
static void subtr_rect_from_image_region( image_region, x, y, width, height)
image_region_type *image_region;
int x;
int y;
int width;
int height;
{
XRectangle rect;
Region rect_region;
rect_region = XCreateRegion();
rect.x = x;
rect.y = y;
rect.width = width;
rect.height = height;
XUnionRectWithRegion( &rect, rect_region, rect_region);
XSubtractRegion( image_region->visible_region, rect_region,
image_region->visible_region);
XDestroyRegion( rect_region);
}
/** ------------------------------------------------------------------------
Adds the specified rectangle to the region in image_region.
------------------------------------------------------------------------ **/
static void add_rect_to_image_region( image_region, x, y, width, height)
image_region_type *image_region;
int x;
int y;
int width;
int height;
{
XRectangle rect;
rect.x = x;
rect.y = y;
rect.width = width;
rect.height = height;
XUnionRectWithRegion( &rect, image_region->visible_region,
image_region->visible_region);
}
/** ------------------------------------------------------------------------
Returns TRUE if the given src's visual is already represented in
the image_regions list, FALSE otherwise.
------------------------------------------------------------------------ **/
static int src_in_region_list( src, image_regions)
image_win_type *src;
list_ptr image_regions;
{
image_region_type *ir;
for (ir = (image_region_type *) first_in_list( image_regions); ir;
ir = (image_region_type *) next_in_list( image_regions)) {
if (SAME_REGIONS( ir, src)) {
return 1;
}
}
return 0;
}
/** ------------------------------------------------------------------------
Makes a new entry in image_wins with the given fields filled in.
------------------------------------------------------------------------ **/
static void add_window_to_list( image_wins, w, xrr, yrr, x_vis, y_vis,
width, height, border_width,vis, cmap, parent)
list_ptr image_wins;
Window w;
int xrr;
int yrr;
int x_vis;
int y_vis;
int width;
int height;
Visual *vis;
Colormap cmap;
Window parent;
{
image_win_type *new_src;
if ((new_src = (image_win_type *) malloc( sizeof( image_win_type))) == NULL)
return;
new_src->win = w;
new_src->x_rootrel = xrr;
new_src->y_rootrel = yrr;
new_src->x_vis = x_vis;
new_src->y_vis = y_vis;
new_src->width = width;
new_src->height = height;
new_src->border_width = border_width;
new_src->vis = vis;
new_src->cmap = cmap;
new_src->parent = parent;
add_to_list( image_wins, new_src);
}
/** ------------------------------------------------------------------------
Returns TRUE if the given src's visual is in the image planes,
FALSE otherwise.
------------------------------------------------------------------------ **/
static int src_in_image( src, numImageVisuals, pImageVisuals)
image_win_type *src;
int numImageVisuals;
XVisualInfo **pImageVisuals;
{
int i;
for (i = 0 ; i < numImageVisuals ; i++)
{
if (pImageVisuals[i]->visual == src->vis)
return 1;
}
return 0;
}
/** ------------------------------------------------------------------------
Returns TRUE if the given src's visual is in the overlay planes
and transparency is possible, FALSE otherwise.
------------------------------------------------------------------------ **/
static int src_in_overlay( src, numOverlayVisuals, pOverlayVisuals,
transparentColor, transparentType)
image_region_type *src;
int numOverlayVisuals;
OverlayInfo *pOverlayVisuals;
int *transparentColor;
int *transparentType;
{
int i;
for (i = 0 ; i < numOverlayVisuals ; i++)
{
if (((pOverlayVisuals[i].pOverlayVisualInfo)->visual == src->vis)
&& (pOverlayVisuals[i].transparentType != None))
{
*transparentColor = pOverlayVisuals[i].value;
*transparentType = pOverlayVisuals[i].transparentType;
return 1;
}
else {
}
}
return 0;
}
/********************** from wsutils.c ******************************/
/******************************************************************************
*
* This file contains a set of example utility procedures; procedures that can
* help a "window-smart" Starbase or PHIGS program determine information about
* a device, and create image and overlay plane windows. To use these
* utilities, #include "wsutils.h" and compile this file and link the results
* with your program.
*
******************************************************************************/
#define STATIC_GRAY 0x01
#define GRAY_SCALE 0x02
#define PSEUDO_COLOR 0x04
#define TRUE_COLOR 0x10
#define DIRECT_COLOR 0x11
static int weCreateServerOverlayVisualsProperty = False;
/******************************************************************************
*
* GetXVisualInfo()
*
* This routine takes an X11 Display, screen number, and returns whether the
* screen supports transparent overlays and three arrays:
*
* 1) All of the XVisualInfo struct's for the screen.
* 2) All of the OverlayInfo struct's for the screen.
* 3) An array of pointers to the screen's image plane XVisualInfo
* structs.
*
* The code below obtains the array of all the screen's visuals, and obtains
* the array of all the screen's overlay visual information. It then processes
* the array of the screen's visuals, determining whether the visual is an
* overlay or image visual.
*
* If the routine sucessfully obtained the visual information, it returns zero.
* If the routine didn't obtain the visual information, it returns non-zero.
*
******************************************************************************/
int GetXVisualInfo(display, screen, transparentOverlays,
numVisuals, pVisuals,
numOverlayVisuals, pOverlayVisuals,
numImageVisuals, pImageVisuals)
Display *display; /* Which X server (aka "display"). */
int screen; /* Which screen of the "display". */
int *transparentOverlays; /* Non-zero if there's at least one
* overlay visual and if at least one
* of those supports a transparent
* pixel. */
int *numVisuals; /* Number of XVisualInfo struct's
* pointed to to by pVisuals. */
XVisualInfo **pVisuals; /* All of the device's visuals. */
int *numOverlayVisuals; /* Number of OverlayInfo's pointed
* to by pOverlayVisuals. If this
* number is zero, the device does
* not have overlay planes. */
OverlayInfo **pOverlayVisuals; /* The device's overlay plane visual
* information. */
int *numImageVisuals; /* Number of XVisualInfo's pointed
* to by pImageVisuals. */
XVisualInfo ***pImageVisuals; /* The device's image visuals. */
{
XVisualInfo getVisInfo; /* Paramters of XGetVisualInfo */
int mask;
XVisualInfo *pVis, **pIVis; /* Faster, local copies */
OverlayInfo *pOVis;
OverlayVisualPropertyRec *pOOldVis;
int nVisuals, nOVisuals, nIVisuals;
Atom overlayVisualsAtom; /* Parameters for XGetWindowProperty */
Atom actualType;
unsigned long numLongs, bytesAfter;
int actualFormat;
int nImageVisualsAlloced; /* Values to process the XVisualInfo */
int imageVisual; /* array */
/* First, get the list of visuals for this screen. */
getVisInfo.screen = screen;
mask = VisualScreenMask;
*pVisuals = XGetVisualInfo(display, mask, &getVisInfo, numVisuals);
if ((nVisuals = *numVisuals) <= 0)
{
/* Return that the information wasn't sucessfully obtained: */
return(1);
}
pVis = *pVisuals;
/* Now, get the overlay visual information for this screen. To obtain
* this information, get the SERVER_OVERLAY_VISUALS property.
*/
overlayVisualsAtom = XInternAtom(display, "SERVER_OVERLAY_VISUALS", True);
if (overlayVisualsAtom != None)
{
/* Since the Atom exists, we can request the property's contents. The
* do-while loop makes sure we get the entire list from the X server.
*/
bytesAfter = 0;
numLongs = sizeof(OverlayVisualPropertyRec) / 4;
do
{
numLongs += bytesAfter * 4;
XGetWindowProperty(display, RootWindow(display, screen),
overlayVisualsAtom, 0, numLongs, False,
overlayVisualsAtom, &actualType, &actualFormat,
&numLongs, &bytesAfter, (unsigned char**) pOverlayVisuals);
} while (bytesAfter > 0);
/* Calculate the number of overlay visuals in the list. */
*numOverlayVisuals = numLongs / (sizeof(OverlayVisualPropertyRec) / 4);
}
else
{
/* This screen doesn't have overlay planes. */
*numOverlayVisuals = 0;
*pOverlayVisuals = NULL;
*transparentOverlays = 0;
}
/* Process the pVisuals array. */
*numImageVisuals = 0;
nImageVisualsAlloced = 1;
pIVis = *pImageVisuals = (XVisualInfo **) malloc(sizeof(XVisualInfo *));
while (--nVisuals >= 0)
{
nOVisuals = *numOverlayVisuals;
pOVis = *pOverlayVisuals;
imageVisual = True;
while (--nOVisuals >= 0)
{
pOOldVis = (OverlayVisualPropertyRec *) pOVis;
if (pVis->visualid == pOOldVis->visualID)
{
imageVisual = False;
pOVis->pOverlayVisualInfo = pVis;
if (pOVis->transparentType == TransparentPixel)
*transparentOverlays = 1;
}
pOVis++;
}
if (imageVisual)
{
if ((*numImageVisuals += 1) > nImageVisualsAlloced)
{
nImageVisualsAlloced++;
*pImageVisuals = (XVisualInfo **)
realloc(*pImageVisuals, (nImageVisualsAlloced * sizeof(XVisualInfo *)));
pIVis = *pImageVisuals + (*numImageVisuals - 1);
}
*pIVis++ = pVis;
}
pVis++;
}
/* Return that the information was sucessfully obtained: */
return(0);
} /* GetXVisualInfo() */
/******************************************************************************
*
* FreeXVisualInfo()
*
* This routine frees the data that was allocated by GetXVisualInfo().
*
******************************************************************************/
void FreeXVisualInfo(pVisuals, pOverlayVisuals, pImageVisuals)
XVisualInfo *pVisuals;
OverlayInfo *pOverlayVisuals;
XVisualInfo **pImageVisuals;
{
XFree(pVisuals);
if (weCreateServerOverlayVisualsProperty)
free(pOverlayVisuals);
else
XFree(pOverlayVisuals);
free(pImageVisuals);
} /* FreeXVisualInfo() */
|