2362N/A * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved. 0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 0N/A * This code is free software; you can redistribute it and/or modify it 0N/A * under the terms of the GNU General Public License version 2 only, as 2362N/A * published by the Free Software Foundation. Oracle designates this 0N/A * particular file as subject to the "Classpath" exception as provided 2362N/A * by Oracle in the LICENSE file that accompanied this code. 0N/A * This code is distributed in the hope that it will be useful, but WITHOUT 0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 0N/A * version 2 for more details (a copy is included in the LICENSE file that 0N/A * accompanied this code). 0N/A * You should have received a copy of the GNU General Public License version 0N/A * 2 along with this work; if not, write to the Free Software Foundation, 0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 2362N/A * or visit www.oracle.com if you need additional information or have any 0N/A // Toolkit & peer internals 0N/A // Platform default background for dialogs. Gets set on target if 0N/A // target has none explicitly specified. 0N/A // If target doesn't have its background color set, we set its 0N/A // background to platform default. 0N/A // Need to set target's background to default _before_ a call 0N/A /* Native create() peeks at target's background and if it's null 0N/A * calls this method to arrage for default background to be set on 0N/A * target. Can't make the check in Java, since getBackground will 0N/A * return owner's background if target has none set. 0N/A // Can't call target.setBackground directly, since we are 0N/A // called on toolkit thread. Can't schedule a Runnable on the 0N/A // EventHandlerThread because of the race condition. So just 0N/A // set a flag and call target.setBackground in initialize.