Lines Matching refs:wmhints
238 tmp_win->wmhints = XGetWMHints(dpy, tmp_win->w);
240 if (tmp_win->wmhints) {
242 tmp_win->wmhints->initial_state = IconicState;
243 tmp_win->wmhints->flags |= StateHint;
247 tmp_win->wmhints->icon_x = restore_icon_x;
248 tmp_win->wmhints->icon_y = restore_icon_y;
249 tmp_win->wmhints->flags |= IconPositionHint;
253 if (tmp_win->wmhints && (tmp_win->wmhints->flags & WindowGroupHint))
254 tmp_win->group = tmp_win->wmhints->window_group;
361 if (!tmp_win->wmhints) {
362 tmp_win->wmhints = (XWMHints *) malloc(sizeof(XWMHints));
363 tmp_win->wmhints->flags = 0;
365 tmp_win->wmhints->initial_state = IconicState;
366 tmp_win->wmhints->flags |= StateHint;
428 if (!(tmp_win->wmhints && tmp_win->wmhints->flags & StateHint &&
429 tmp_win->wmhints->initial_state == IconicState)) {