src/solaris/classes/sun/awt/X11/XIconWindow.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 299,310 **** log.finest("Image format doesn't fit to icon width"); return; } long dst = XlibWrapper.XCreateImage(XToolkit.getDisplay(), visInfo.get_visual(), ! (int)awtImage.get_Depth(), ! (int)XConstants.ZPixmap, 0, bytes, iconWidth, iconHeight, 32, --- 299,310 ---- log.finest("Image format doesn't fit to icon width"); return; } long dst = XlibWrapper.XCreateImage(XToolkit.getDisplay(), visInfo.get_visual(), ! awtImage.get_Depth(), ! XConstants.ZPixmap, 0, bytes, iconWidth, iconHeight, 32,
*** 481,491 **** XCreateWindowParams params = getDelayedParams(); params.add(BORDER_PIXEL, Long.valueOf(XToolkit.getAwtDefaultFg())); params.add(BACKGROUND_PIXMAP, iconPixmap); params.add(COLORMAP, adata.get_awt_cmap()); params.add(DEPTH, awtImage.get_Depth()); ! params.add(VISUAL_CLASS, (int)XConstants.InputOutput); params.add(VISUAL, visInfo.get_visual()); params.add(VALUE_MASK, XConstants.CWBorderPixel | XConstants.CWColormap | XConstants.CWBackPixmap); params.add(PARENT_WINDOW, XlibWrapper.RootWindow(XToolkit.getDisplay(), visInfo.get_screen())); params.add(BOUNDS, new Rectangle(0, 0, iconWidth, iconHeight)); params.remove(DELAYED); --- 481,491 ---- XCreateWindowParams params = getDelayedParams(); params.add(BORDER_PIXEL, Long.valueOf(XToolkit.getAwtDefaultFg())); params.add(BACKGROUND_PIXMAP, iconPixmap); params.add(COLORMAP, adata.get_awt_cmap()); params.add(DEPTH, awtImage.get_Depth()); ! params.add(VISUAL_CLASS, XConstants.InputOutput); params.add(VISUAL, visInfo.get_visual()); params.add(VALUE_MASK, XConstants.CWBorderPixel | XConstants.CWColormap | XConstants.CWBackPixmap); params.add(PARENT_WINDOW, XlibWrapper.RootWindow(XToolkit.getDisplay(), visInfo.get_screen())); params.add(BOUNDS, new Rectangle(0, 0, iconWidth, iconHeight)); params.remove(DELAYED);