alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.vcscore.ui;

import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JComponent;
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
import javax.swing.KeyStroke;
import javax.swing.text.BadLocationException;

import org.netbeans.modules.vcscore.commands.CommandOutputTopComponent;

import org.openide.util.NbBundle;

/**
 * The container of error output of failed commands.
 *
 * @author  Martin Entlicher
 */
public class ErrorOutputPanel extends javax.swing.JPanel {
    
    private static ErrorOutputPanel defaultInstance;
    private Action discardAction;
    
    /** Creates new form ErrorOutputPanel */
    public ErrorOutputPanel() {
        initComponents();
        java.awt.Font font = errorArea.getFont();
        errorArea.setFont(new java.awt.Font("Monospaced", font.getStyle(), font.getSize()));
        initPopupMenu();
        getInputMap(WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(       
            KeyStroke.getKeyStroke(KeyEvent.VK_F4, KeyEvent.CTRL_DOWN_MASK),
            "discard"); //NOI18N
        getActionMap().put("discard", discardAction);//NOI18N
    }
    
    protected void initPopupMenu() {
        JPopupMenu menu = new JPopupMenu();
        java.awt.event.ActionListener discardAllListener = new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent event) {
                CommandOutputTopComponent.getInstance().discardAll();
            }
        };
        discardAction = new AbstractAction(NbBundle.getBundle(OutputPanel.class).getString("CMD_DiscardTab")) { //NOI18N
            public void actionPerformed(java.awt.event.ActionEvent event) {
                CommandOutputTopComponent.getInstance().discard(ErrorOutputPanel.this);
            }
        };
        Action clearAction = new AbstractAction(NbBundle.getMessage(ErrorOutputPanel.class, "CMD_ClearOutput")) { // NOI18N
            public void actionPerformed(java.awt.event.ActionEvent event) {
                try {
                    errorArea.replaceRange("", 0, errorArea.getLineEndOffset(errorArea.getLineCount() - 1));
                } catch (BadLocationException blex) {
                    org.openide.ErrorManager.getDefault().notify(blex);
                }
            }
        };
        JMenuItem discardTab = new JMenuItem();//NOI18N
        discardTab.setAction(discardAction);
        discardTab.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_F4, KeyEvent.CTRL_DOWN_MASK));
        JMenuItem discardAll = new JMenuItem(NbBundle.getBundle(OutputPanel.class).getString("CMD_DiscardAll"));//NOI18N
        discardAll.addActionListener(discardAllListener);
        JMenuItem clear = new JMenuItem();
        clear.setAction(clearAction);
        menu.add(clear);
        menu.addSeparator();
        menu.add(discardTab);
        menu.add(discardAll);
        errorArea.add(menu);
        
        PopupListener popupListener = new PopupListener(menu);
        errorArea.addMouseListener(popupListener);
        adjustInputMap(errorArea);
                       
        this.addMouseListener(popupListener);
        jScrollPane1.addMouseListener(popupListener);
        
    }
    
    private void adjustInputMap(JComponent c) {
        c.getInputMap().put(
            KeyStroke.getKeyStroke(KeyEvent.VK_F4, KeyEvent.CTRL_DOWN_MASK),
            "discard");
        errorArea.getActionMap().put("discard", discardAction);//NOI18N
    }
    
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    private void initComponents() {//GEN-BEGIN:initComponents
        java.awt.GridBagConstraints gridBagConstraints;

        jScrollPane1 = new javax.swing.JScrollPane();
        errorArea = new javax.swing.JTextArea();

        setLayout(new java.awt.GridBagLayout());

        errorArea.setEditable(false);
        jScrollPane1.setViewportView(errorArea);

        gridBagConstraints = new java.awt.GridBagConstraints();
        gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
        gridBagConstraints.weightx = 1.0;
        gridBagConstraints.weighty = 1.0;
        add(jScrollPane1, gridBagConstraints);

    }//GEN-END:initComponents
    
    public String getTitle() {
        return NbBundle.getMessage(ErrorOutputPanel.class, "TTL_ErrorOutput");
    }
    
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private javax.swing.JTextArea errorArea;
    private javax.swing.JScrollPane jScrollPane1;
    // End of variables declaration//GEN-END:variables
    
    /**
     * Put the error output to the output panel.
     * @param cmdName The (display) name of the command
     * @param exec The execution string of the failed command
     * @param error The error output of the command.
     */
    public void errorOutput(String cmdName, String exec, String error) {
        errorArea.append(NbBundle.getMessage(ErrorOutputPanel.class, "MSG_CommandFailed", cmdName, exec));
        if (error != null && error.length() > 0) {
            errorArea.append(NbBundle.getMessage(ErrorOutputPanel.class, "MSG_Error_output_follows"));
            errorArea.append("\n");
            errorArea.append(error);
            if (!error.endsWith("\n")) {
                errorArea.append("\n");
            }
        } else {
            errorArea.append(NbBundle.getMessage(ErrorOutputPanel.class, "MSG_No_error_output"));
            errorArea.append("\n");
        }
        errorArea.append("\n");
    }
    
    class PopupListener extends java.awt.event.MouseAdapter {
        
        private JPopupMenu menu;
        
        public PopupListener(JPopupMenu menu) {
            this.menu = menu;
        }
        
        public void mousePressed(java.awt.event.MouseEvent event) {
            if ((event.getModifiers() & java.awt.event.MouseEvent.BUTTON3_MASK) == java.awt.event.MouseEvent.BUTTON3_MASK) {
                menu.show((java.awt.Component)event.getSource(),event.getX(),event.getY());
            }
        }
    }
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.