/* * Copyright (c) 1996, 2018, 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 * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package sun.awt.windows; import java.awt.*; import java.awt.peer.*; import java.awt.event.ItemEvent; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import java.awt.event.WindowAdapter; import sun.awt.AWTAccessor; import sun.awt.SunToolkit; final class WChoicePeer extends WComponentPeer implements ChoicePeer { // WComponentPeer overrides @Override public Dimension getMinimumSize() { FontMetrics fm = getFontMetrics(((Choice)target).getFont()); Choice c = (Choice)target; int w = 0; for (int i = c.getItemCount() ; i-- > 0 ;) { w = Math.max(fm.stringWidth(c.getItem(i)), w); } return new Dimension(28 + w, Math.max(fm.getHeight() + 6, 15)); } @Override public boolean isFocusable() { return true; } // ChoicePeer implementation @Override public native void select(int index); @Override public void add(String item, int index) { addItems(new String[] {item}, index); } @Override public boolean shouldClearRectBeforePaint() { return false; } @Override public native void removeAll(); @Override public native void remove(int index); public native void addItems(String[] items, int index); @Override public synchronized native void reshape(int x, int y, int width, int height); private WindowListener windowListener; // Toolkit & peer internals WChoicePeer(Choice target) { super(target); } @Override native void create(WComponentPeer parent); @Override void initialize() { Choice opt = (Choice)target; int itemCount = opt.getItemCount(); if (itemCount > 0) { String[] items = new String[itemCount]; for (int i=0; i < itemCount; i++) { items[i] = opt.getItem(i); } addItems(items, 0); if (opt.getSelectedIndex() >= 0) { select(opt.getSelectedIndex()); } } Window parentWindow = SunToolkit.getContainingWindow((Component)target); if (parentWindow != null) { final WWindowPeer wpeer = AWTAccessor.getComponentAccessor() .getPeer(parentWindow); if (wpeer != null) { windowListener = new WindowAdapter() { @Override public void windowIconified(WindowEvent e) { closeList(); } @Override public void windowClosing(WindowEvent e) { closeList(); } }; wpeer.addWindowListener(windowListener); } } super.initialize(); } @Override protected void disposeImpl() { // TODO: we should somehow reset the listener when the choice // is moved to another toplevel without destroying its peer. Window parentWindow = SunToolkit.getContainingWindow((Component)target); if (parentWindow != null) { final WWindowPeer wpeer = AWTAccessor.getComponentAccessor() .getPeer(parentWindow); if (wpeer != null) { wpeer.removeWindowListener(windowListener); } } super.disposeImpl(); } // native callbacks void handleAction(final int index) { final Choice c = (Choice)target; WToolkit.executeOnEventHandlerThread(c, new Runnable() { @Override public void run() { c.select(index); postEvent(new ItemEvent(c, ItemEvent.ITEM_STATE_CHANGED, c.getItem(index), ItemEvent.SELECTED)); } }); } int getDropDownHeight() { Choice c = (Choice)target; FontMetrics fm = getFontMetrics(c.getFont()); int maxItems = Math.min(c.getItemCount(), 8); return fm.getHeight() * maxItems; } native void closeList(); }