/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. * * Oracle and Java are registered trademarks of Oracle and/or its affiliates. * Other names may be trademarks of their respective owners. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common * Development and Distribution License("CDDL") (collectively, the * "License"). You may not use this file except in compliance with the * License. You can obtain a copy of the License at * http://www.netbeans.org/cddl-gplv2.html * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the * specific language governing permissions and limitations under the * License. When distributing the software, include this License Header * Notice in each file and include the License file at * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the GPL Version 2 section of the License file that * accompanied this code. If applicable, add the following below the * License Header, with the fields enclosed by brackets [] replaced by * your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * * Contributor(s): * * The Original Software is NetBeans. The Initial Developer of the Original * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun * Microsystems, Inc. All Rights Reserved. * * If you wish your version of this file to be governed by only the CDDL * or only the GPL Version 2, indicate your decision by adding * "[Contributor] elects to include this software in this distribution * under the [CDDL or GPL Version 2] license." If you do not indicate a * single choice of license, a recipient has the option to distribute * your version of this file under either the CDDL, the GPL Version 2 or * to extend the choice of license to its licensees as provided above. * However, if you add GPL Version 2 code and therefore, elected the GPL * Version 2 license, then the option applies only if the new code is * made subject to such option by the copyright holder. */ package com.tvl.modules.editor.completion; import com.tvl.spi.editor.completion.CompletionController; import com.tvl.spi.editor.completion.CompletionItem; import java.awt.Color; import java.awt.Dimension; import java.awt.Rectangle; import java.awt.event.ActionEvent; import java.awt.event.KeyEvent; import java.awt.event.MouseListener; import java.util.List; import java.util.logging.Level; import java.util.logging.LogRecord; import javax.swing.AbstractAction; import javax.swing.Action; import javax.swing.BorderFactory; import javax.swing.JLabel; import javax.swing.JScrollPane; import javax.swing.KeyStroke; import javax.swing.event.ListSelectionListener; import javax.swing.text.JTextComponent; import javax.swing.text.Keymap; import org.netbeans.api.annotations.common.CheckForNull; import org.netbeans.editor.BaseKit; import org.netbeans.editor.ext.ExtKit; /** * Pane displaying the completion view and accompanying components * like label for title etc. * * @author Miloslav Metelka, Martin Roskanin, Dusan Balek * @version 1.00 */ public class CompletionScrollPane extends JScrollPane { private static final String ESCAPE = "escape"; //NOI18N private static final String COMPLETION_UP = "completion-up"; //NOI18N private static final String COMPLETION_DOWN = "completion-down"; //NOI18N private static final String COMPLETION_PGUP = "completion-pgup"; //NOI18N private static final String COMPLETION_PGDN = "completion-pgdn"; //NOI18N private static final String COMPLETION_BEGIN = "completion-begin"; //NOI18N private static final String COMPLETION_END = "completion-end"; //NOI18N private static final int ACTION_ESCAPE = 0; private static final int ACTION_COMPLETION_UP = 1; private static final int ACTION_COMPLETION_DOWN = 2; private static final int ACTION_COMPLETION_PGUP = 3; private static final int ACTION_COMPLETION_PGDN = 4; private static final int ACTION_COMPLETION_BEGIN = 5; private static final int ACTION_COMPLETION_END = 6; private final CompletionJList view; private List<?> dataObj; private JLabel topLabel; public CompletionScrollPane(JTextComponent editorComponent, ListSelectionListener listSelectionListener, MouseListener mouseListener) { setHorizontalScrollBarPolicy(HORIZONTAL_SCROLLBAR_NEVER); setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_AS_NEEDED); // Use maximumSize property to store the limit of the preferred size setMaximumSize(CompletionSettings.getInstance(editorComponent).completionPaneMaximumSize()); // At least 2 items; do -1 for title height int maxVisibleRowCount = Math.max(2, getMaximumSize().height / CompletionLayout.COMPLETION_ITEM_HEIGHT - 1); // Add the completion view view = new CompletionJList(maxVisibleRowCount, mouseListener, editorComponent); if (listSelectionListener != null) { view.addListSelectionListener(listSelectionListener); } setViewportView(view); installKeybindings(editorComponent); } public void setData(List<?> data, String title, CompletionController controller, CompletionController.Selection selection) { dataObj = data; view.setData(data, controller); view.setSelection(selection); Rectangle r = view.getCellBounds(selection.getIndex(), selection.getIndex()); if (r != null) view.scrollRectToVisible(r); setTitle(title); // Force the viewport preferred size to be taken into account // Otherwise the scroll pane attempts to retain its size // so e.g. if the number of visible rows increases so the vertical // scrollbar would be needed the scrollpane does not increase // its preferred size. // Resetting of viewport fixes the problem. setViewportView(getViewport().getView()); } public @CheckForNull SelectedCompletionItem getSelectedCompletionItem() { Object ret = view.getSelectedValue(); if (ret instanceof CompletionItem) { boolean isSelected = view.getSelection().isSelected(); return new SelectedCompletionItem((CompletionItem)ret, isSelected); } return null; } public int getSelectedIndex() { return view.getSelectedIndex(); } public @Override Dimension getPreferredSize() { Dimension prefSize = super.getPreferredSize(); Dimension labelSize = topLabel != null ? topLabel.getPreferredSize() : new Dimension(0, 0); Dimension maxSize = getMaximumSize(); if (labelSize.width > prefSize.width) { prefSize.width = labelSize.width; } if (prefSize.width > maxSize.width) { prefSize.width = maxSize.width; } // Height is covered by maxVisibleRowCount value return prefSize; } private void setTitle(String title) { if (title == null) { if (topLabel != null) { setColumnHeader(null); topLabel = null; } } else { if (topLabel != null) { topLabel.setText(title); } else { topLabel = new JLabel(title); topLabel.setForeground(Color.blue); topLabel.setBorder(BorderFactory.createEmptyBorder(0, 2, 0, 2)); setColumnHeaderView(topLabel); } } } /** Attempt to find the editor keystroke for the given editor action. */ private KeyStroke[] findEditorKeys(String editorActionName, KeyStroke defaultKey, JTextComponent component) { // This method is implemented due to the issue // #25715 - Attempt to search keymap for the keybinding that logically corresponds to the action KeyStroke[] ret = new KeyStroke[] { defaultKey }; if (component != null) { Action a = component.getActionMap().get(editorActionName); Keymap km = component.getKeymap(); if (a != null && km != null) { KeyStroke[] keys = km.getKeyStrokesForAction(a); if (keys != null && keys.length > 0) { ret = keys; } } } return ret; } private void registerKeybinding(int action, String actionName, KeyStroke stroke, String editorActionName, JTextComponent component){ KeyStroke[] keys = findEditorKeys(editorActionName, stroke, component); for (int i = 0; i < keys.length; i++) { getInputMap().put(keys[i], actionName); } getActionMap().put(actionName, new CompletionPaneAction(action)); } @SuppressWarnings("deprecation") private void installKeybindings(JTextComponent component) { // Register Escape key registerKeybinding(ACTION_ESCAPE, ESCAPE, KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), ExtKit.escapeAction, component); // Register up key registerKeybinding(ACTION_COMPLETION_UP, COMPLETION_UP, KeyStroke.getKeyStroke(KeyEvent.VK_UP, 0), BaseKit.upAction, component); // Register down key registerKeybinding(ACTION_COMPLETION_DOWN, COMPLETION_DOWN, KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, 0), BaseKit.downAction, component); // Register PgDn key registerKeybinding(ACTION_COMPLETION_PGDN, COMPLETION_PGDN, KeyStroke.getKeyStroke(KeyEvent.VK_PAGE_DOWN, 0), BaseKit.pageDownAction, component); // Register PgUp key registerKeybinding(ACTION_COMPLETION_PGUP, COMPLETION_PGUP, KeyStroke.getKeyStroke(KeyEvent.VK_PAGE_UP, 0), BaseKit.pageUpAction, component); // Register home key registerKeybinding(ACTION_COMPLETION_BEGIN, COMPLETION_BEGIN, KeyStroke.getKeyStroke(KeyEvent.VK_HOME, 0), BaseKit.beginLineAction, component); // Register end key registerKeybinding(ACTION_COMPLETION_END, COMPLETION_END, KeyStroke.getKeyStroke(KeyEvent.VK_END, 0), BaseKit.endLineAction, component); } private class CompletionPaneAction extends AbstractAction { private final int action; private CompletionPaneAction(int action) { this.action = action; } @Override public void actionPerformed(ActionEvent actionEvent) { switch (action) { case ACTION_ESCAPE: LogRecord r = new LogRecord(Level.FINE, "COMPL_CANCEL"); // NOI18N CompletionImpl.uilog(r); CompletionImpl.get().hideCompletion(false); break; case ACTION_COMPLETION_UP: view.up(); break; case ACTION_COMPLETION_DOWN: view.down(); break; case ACTION_COMPLETION_PGUP: view.pageUp(); break; case ACTION_COMPLETION_PGDN: view.pageDown(); break; case ACTION_COMPLETION_BEGIN: view.begin(); break; case ACTION_COMPLETION_END: view.end(); break; } } } }