Lines Matching defs:hints
62 XSizeHints *hints,
81 hints->flags = (prop->flags & (USPosition|USSize|PAllHints));
82 hints->x = cvtINT32toInt (prop->x);
83 hints->y = cvtINT32toInt (prop->y);
84 hints->width = cvtINT32toInt (prop->width);
85 hints->height = cvtINT32toInt (prop->height);
86 hints->min_width = cvtINT32toInt (prop->minWidth);
87 hints->min_height = cvtINT32toInt (prop->minHeight);
88 hints->max_width = cvtINT32toInt (prop->maxWidth);
89 hints->max_height = cvtINT32toInt (prop->maxHeight);
90 hints->width_inc = cvtINT32toInt (prop->widthInc);
91 hints->height_inc = cvtINT32toInt (prop->heightInc);
92 hints->min_aspect.x = cvtINT32toInt (prop->minAspectX);
93 hints->min_aspect.y = cvtINT32toInt (prop->minAspectY);
94 hints->max_aspect.x = cvtINT32toInt (prop->maxAspectX);
95 hints->max_aspect.y = cvtINT32toInt (prop->maxAspectY);
111 register XWMHints *hints;
131 if ((hints = Xcalloc (1, sizeof(XWMHints)))) {
132 hints->flags = prop->flags;
133 hints->input = (prop->input ? True : False);
134 hints->initial_state = cvtINT32toInt (prop->initialState);
135 hints->icon_pixmap = prop->iconPixmap;
136 hints->icon_window = prop->iconWindow;
137 hints->icon_x = cvtINT32toInt (prop->iconX);
138 hints->icon_y = cvtINT32toInt (prop->iconY);
139 hints->icon_mask = prop->iconMask;
141 hints->window_group = prop->windowGroup;
143 hints->window_group = 0;
146 return(hints);
162 XSizeHints *hints)
164 return (XGetSizeHints(dpy, w, hints, XA_WM_NORMAL_HINTS));
181 register XIconSize *hp, *hints;
206 if (! (hp = hints = Xcalloc (nitems, sizeof(XIconSize)))) {
223 *size_list = hints;