Lines Matching refs:window_info
774 window_info; in XAnimateBackgroundImage() local
803 window_info.id=(Window) NULL; in XAnimateBackgroundImage()
806 window_info.id=root_window; in XAnimateBackgroundImage()
810 window_info.id=XWindowByID(display,root_window, in XAnimateBackgroundImage()
812 if (window_info.id == (Window) NULL) in XAnimateBackgroundImage()
813 window_info.id= in XAnimateBackgroundImage()
816 if (window_info.id == (Window) NULL) in XAnimateBackgroundImage()
828 status=XGetWindowAttributes(display,window_info.id,&window_attributes) != 0 ? in XAnimateBackgroundImage()
856 window_info.ximage=(XImage *) NULL; in XAnimateBackgroundImage()
857 window_info.matte_image=(XImage *) NULL; in XAnimateBackgroundImage()
858 window_info.pixmap=(Pixmap) NULL; in XAnimateBackgroundImage()
859 window_info.matte_pixmap=(Pixmap) NULL; in XAnimateBackgroundImage()
864 if (window_info.id == root_window) in XAnimateBackgroundImage()
939 pixel.annotate_context=XCreateGC(display,window_info.id,(unsigned long) in XAnimateBackgroundImage()
948 &resources,&window_info); in XAnimateBackgroundImage()
952 window_info.width=(unsigned int) image_list[0]->columns; in XAnimateBackgroundImage()
953 window_info.height=(unsigned int) image_list[0]->rows; in XAnimateBackgroundImage()
954 if ((image_list[0]->columns != window_info.width) || in XAnimateBackgroundImage()
955 (image_list[0]->rows != window_info.height)) in XAnimateBackgroundImage()
960 geometry_info.width=window_info.width; in XAnimateBackgroundImage()
961 geometry_info.height=window_info.height; in XAnimateBackgroundImage()
962 geometry_info.x=(ssize_t) window_info.x; in XAnimateBackgroundImage()
963 geometry_info.y=(ssize_t) window_info.y; in XAnimateBackgroundImage()
966 window_info.width=(unsigned int) geometry_info.width; in XAnimateBackgroundImage()
967 window_info.height=(unsigned int) geometry_info.height; in XAnimateBackgroundImage()
968 window_info.x=(int) geometry_info.x; in XAnimateBackgroundImage()
969 window_info.y=(int) geometry_info.y; in XAnimateBackgroundImage()
970 status=XMakeImage(display,&resources,&window_info,image_list[0], in XAnimateBackgroundImage()
971 window_info.width,window_info.height,exception); in XAnimateBackgroundImage()
975 window_info.x=0; in XAnimateBackgroundImage()
976 window_info.y=0; in XAnimateBackgroundImage()
992 width=window_info.width; in XAnimateBackgroundImage()
993 height=window_info.height; in XAnimateBackgroundImage()
999 window_info.x=(int) (window_attributes.width/2)- in XAnimateBackgroundImage()
1000 (window_info.ximage->width/2); in XAnimateBackgroundImage()
1001 window_info.y=(int) (window_attributes.height/2)- in XAnimateBackgroundImage()
1002 (window_info.ximage->height/2); in XAnimateBackgroundImage()
1029 default_geometry,window_info.border_width,size_hints,&window_info.x, in XAnimateBackgroundImage()
1030 &window_info.y,(int *) &width,(int *) &height,&gravity); in XAnimateBackgroundImage()
1041 window_info.pixmap=XCreatePixmap(display,window_info.id,(unsigned int) width, in XAnimateBackgroundImage()
1042 (unsigned int) height,window_info.depth); in XAnimateBackgroundImage()
1043 if (window_info.pixmap == (Pixmap) NULL) in XAnimateBackgroundImage()
1049 if (((unsigned int) width > window_info.width) || in XAnimateBackgroundImage()
1050 ((unsigned int) height > window_info.height)) in XAnimateBackgroundImage()
1051 (void) XFillRectangle(display,window_info.pixmap, in XAnimateBackgroundImage()
1052 window_info.annotate_context,0,0,(unsigned int) width, in XAnimateBackgroundImage()
1054 (void) XPutImage(display,window_info.pixmap,window_info.annotate_context, in XAnimateBackgroundImage()
1055 window_info.ximage,0,0,window_info.x,window_info.y,window_info.width, in XAnimateBackgroundImage()
1056 window_info.height); in XAnimateBackgroundImage()
1057 (void) XSetWindowBackgroundPixmap(display,window_info.id,window_info.pixmap); in XAnimateBackgroundImage()
1058 (void) XClearWindow(display,window_info.id); in XAnimateBackgroundImage()
1062 window_info.pixmaps=(Pixmap *) AcquireQuantumMemory(number_scenes, in XAnimateBackgroundImage()
1063 sizeof(*window_info.pixmaps)); in XAnimateBackgroundImage()
1064 window_info.matte_pixmaps=(Pixmap *) AcquireQuantumMemory(number_scenes, in XAnimateBackgroundImage()
1065 sizeof(*window_info.matte_pixmaps)); in XAnimateBackgroundImage()
1066 if ((window_info.pixmaps == (Pixmap *) NULL) || in XAnimateBackgroundImage()
1067 (window_info.matte_pixmaps == (Pixmap *) NULL)) in XAnimateBackgroundImage()
1070 window_info.pixmaps[0]=window_info.pixmap; in XAnimateBackgroundImage()
1071 window_info.matte_pixmaps[0]=window_info.pixmap; in XAnimateBackgroundImage()
1081 window_info.pixmap=(Pixmap) NULL; in XAnimateBackgroundImage()
1082 window_info.matte_pixmap=(Pixmap) NULL; in XAnimateBackgroundImage()
1088 image_list[scene],window_info.pixel_info); in XAnimateBackgroundImage()
1095 status=XMakeImage(display,&resources,&window_info,image_list[scene], in XAnimateBackgroundImage()
1114 window_info.pixmap=XCreatePixmap(display,window_info.id,width,height, in XAnimateBackgroundImage()
1115 window_info.depth); in XAnimateBackgroundImage()
1116 if (window_info.pixmap == (Pixmap) NULL) in XAnimateBackgroundImage()
1122 if ((width > window_info.width) || (height > window_info.height)) in XAnimateBackgroundImage()
1123 (void) XFillRectangle(display,window_info.pixmap, in XAnimateBackgroundImage()
1124 window_info.annotate_context,0,0,width,height); in XAnimateBackgroundImage()
1125 (void) XPutImage(display,window_info.pixmap,window_info.annotate_context, in XAnimateBackgroundImage()
1126 window_info.ximage,0,0,window_info.x,window_info.y,window_info.width, in XAnimateBackgroundImage()
1127 window_info.height); in XAnimateBackgroundImage()
1128 (void) XSetWindowBackgroundPixmap(display,window_info.id, in XAnimateBackgroundImage()
1129 window_info.pixmap); in XAnimateBackgroundImage()
1130 (void) XClearWindow(display,window_info.id); in XAnimateBackgroundImage()
1131 window_info.pixmaps[scene]=window_info.pixmap; in XAnimateBackgroundImage()
1132 window_info.matte_pixmaps[scene]=window_info.matte_pixmap; in XAnimateBackgroundImage()
1134 (void) XClearWindow(display,window_info.id); in XAnimateBackgroundImage()
1139 window_info.pixel_info=(&pixel); in XAnimateBackgroundImage()
1143 (void) XSelectInput(display,window_info.id,SubstructureNotifyMask); in XAnimateBackgroundImage()
1156 window_info.pixmap=window_info.pixmaps[scene]; in XAnimateBackgroundImage()
1157 window_info.matte_pixmap=window_info.matte_pixmaps[scene]; in XAnimateBackgroundImage()
1158 (void) XSetWindowBackgroundPixmap(display,window_info.id, in XAnimateBackgroundImage()
1159 window_info.pixmap); in XAnimateBackgroundImage()
1160 (void) XClearWindow(display,window_info.id); in XAnimateBackgroundImage()