Searched refs:size_hints (Results 1 - 1 of 1) sorted by relevance

/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/xawt/
H A DXWindow.c1253 XSizeHints *size_hints = XAllocSizeHints(); local
1254 size_hints->flags = USPosition | PPosition | PSize;
1255 size_hints->x = (int)x;
1256 size_hints->y = (int)y;
1257 size_hints->width = (int)width;
1258 size_hints->height = (int)height;
1259 XSetWMNormalHints(awt_display, (Window)window, size_hints);
1260 XFree((char*)size_hints);

Completed in 42 milliseconds