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

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDialogPeer.java48 winAttr.nativeDecor = !target.isUndecorated();
49 if (winAttr.nativeDecor) {
50 winAttr.decorations = winAttr.AWT_DECOR_ALL;
52 winAttr.decorations = winAttr.AWT_DECOR_NONE;
54 winAttr.functions = MWMConstants.MWM_FUNC_ALL;
55 winAttr.isResizable = true; //target.isResizable();
56 winAttr.initialResizability = target.isResizable();
57 winAttr
[all...]
H A DXFramePeer.java65 winAttr.initialState = target.getExtendedState();
68 winAttr.nativeDecor = !target.isUndecorated();
69 if (winAttr.nativeDecor) {
70 winAttr.decorations = winAttr.AWT_DECOR_ALL;
72 winAttr.decorations = winAttr.AWT_DECOR_NONE;
74 winAttr.functions = MWMConstants.MWM_FUNC_ALL;
75 winAttr.isResizable = true; // target.isResizable();
76 winAttr
[all...]
H A DXDecoratedPeer.java74 winAttr.initialFocus = true;
184 winAttr.title = title;
189 if (winAttr.title == null || winAttr.title.trim().equals("")) {
192 return winAttr.title;
830 setResizable(winAttr.initialResizability);
833 int fs = winAttr.functions;
840 winAttr.isResizable = resizable;
846 winAttr.functions = fs;
854 winAttr
[all...]
H A DXWindowPeer.java293 winAttr.icons = new ArrayList<IconInfo>();
296 winAttr.iconsInherited = false;
315 winAttr.icons.add(iconInfo);
321 winAttr.icons = normalizeIconImages(winAttr.icons);
323 if (winAttr.icons.size() == 0) {
327 winAttr.iconsInherited = true;
328 winAttr.icons = ownerPeer.getIconInfo();
331 winAttr.iconsInherited = false;
332 winAttr
[all...]
H A DXFileDialogPeer.java321 if (winAttr.icons == null){
322 winAttr.iconsInherited = false;
323 winAttr.icons = getDefaultIconInfo();
324 setIconHints(winAttr.icons);
H A DXComponentPeer.java204 return (wpeer.winAttr.visibilityState !=
205 wpeer.winAttr.AWT_UNOBSCURED);
H A DXWindow.java78 XWindowAttributesData winAttr; field in class:XWindow
240 winAttr = new XWindowAttributesData();
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Window.h40 jfieldID winAttr; member in struct:MWindowPeerIDs
H A Dawt_MToolkit.c1745 XWindowAttributes winAttr; local
1746 memset(&winAttr, 0, sizeof(XWindowAttributes));
1747 XGetWindowAttributes(awt_display, window, &winAttr);
1748 if (winAttr.override_redirect == TRUE && isFocusableWindow(window)) {
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXWindow.c1108 void syncTopLevelPos( Display *d, Window w, XWindowAttributes *winAttr ) {
1111 XGetWindowAttributes( d, w, winAttr );
1116 if ((winAttr->x != 0) || (winAttr->y != 0)) {
1163 XWindowAttributes winAttr, topAttr; local
1173 XGetWindowAttributes(awt_display, window, &winAttr);
1174 *right = topAttr.width - ((winAttr.width) + *left);
1175 *bottom = topAttr.height - ((winAttr.height) + *top);
1192 XWindowAttributes winAttr; local
1194 XGetWindowAttributes(awt_display, window, &winAttr);
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c1126 XWindowAttributes winAttr;
1128 Status status = XGetWindowAttributes(awt_display, window, &winAttr);
1134 RootWindowOfScreen(winAttr.screen),
1349 XWindowAttributes winAttr; local
1351 (Window) xsdo->drawable, &winAttr) != 0) {
1352 maxWidth = winAttr.width;
1353 maxHeight = winAttr.height;

Completed in 67 milliseconds