Lines Matching refs:prop
69 xPropSizeHints prop;
70 memset(&prop, 0, sizeof(prop));
71 prop.flags = (hints->flags & (USPosition|USSize|PAllHints));
73 prop.x = hints->x;
74 prop.y = hints->y;
77 prop.width = hints->width;
78 prop.height = hints->height;
81 prop.minWidth = hints->min_width;
82 prop.minHeight = hints->min_height;
85 prop.maxWidth = hints->max_width;
86 prop.maxHeight = hints->max_height;
89 prop.widthInc = hints->width_inc;
90 prop.heightInc = hints->height_inc;
93 prop.minAspectX = hints->min_aspect.x;
94 prop.minAspectY = hints->min_aspect.y;
95 prop.maxAspectX = hints->max_aspect.x;
96 prop.maxAspectY = hints->max_aspect.y;
99 PropModeReplace, (unsigned char *) &prop,
114 xPropWMHints prop;
115 memset(&prop, 0, sizeof(prop));
116 prop.flags = wmhints->flags;
118 prop.input = (wmhints->input == True ? 1 : 0);
120 prop.initialState = wmhints->initial_state;
122 prop.iconPixmap = wmhints->icon_pixmap;
124 prop.iconWindow = wmhints->icon_window;
126 prop.iconX = wmhints->icon_x;
127 prop.iconY = wmhints->icon_y;
130 prop.iconMask = wmhints->icon_mask;
132 prop.windowGroup = wmhints->window_group;
134 PropModeReplace, (unsigned char *) &prop,
185 xPropIconSize *pp, *prop;
187 if ((prop = pp = Xmallocarray (count, sizeof(xPropIconSize)))) {
199 PropModeReplace, (unsigned char *) prop,
201 Xfree (prop);