Lines Matching refs:hintp
1346 XWMHints *hintp = &w->wm.wm_hints;
1348 hintp->flags = StateHint | InputHint;
1350 if (hintp->icon_x == XtUnspecifiedShellInt)
1351 hintp->icon_x = -1;
1353 hintp->flags |= IconPositionHint;
1355 if (hintp->icon_y == XtUnspecifiedShellInt)
1356 hintp->icon_y = -1;
1358 hintp->flags |= IconPositionHint;
1360 if (hintp->icon_pixmap != None)
1361 hintp->flags |= IconPixmapHint;
1362 if (hintp->icon_mask != None)
1363 hintp->flags |= IconMaskHint;
1364 if (hintp->icon_window != None)
1365 hintp->flags |= IconWindowHint;
1367 if (hintp->window_group == XtUnspecifiedWindow) {
1373 hintp->window_group = XtWindow(p);
1374 hintp->flags |= WindowGroupHint;
1378 else if (hintp->window_group != XtUnspecifiedWindowGroup)
1379 hintp->flags |= WindowGroupHint;
1382 hintp->flags |= XUrgencyHint;
1637 register struct _OldXSizeHints *hintp = &wmshell->wm.size_hints;
1639 #define EQ(x) (hintp->x == w->core.x)
2046 register struct _OldXSizeHints *hintp = NULL;
2054 hintp = &((WMShellWidget) w)->wm.size_hints;
2057 hintp->x = w->core.x;
2058 hintp->y = w->core.y;
2059 hintp->width = w->core.width;
2060 hintp->height = w->core.height;
2085 hintp->flags &= ~USPosition;
2086 hintp->flags |= PPosition;
2087 hintp->x = values.x;
2097 hintp->flags &= ~USPosition;
2098 hintp->flags |= PPosition;
2099 hintp->y = values.y;
2117 hintp->flags &= ~USSize;
2118 hintp->flags |= PSize;
2119 hintp->width = values.width;
2129 hintp->flags &= ~USSize;
2130 hintp->flags |= PSize;
2131 hintp->height = values.height;