diff --git a/sdk/jme3-core/src/com/jme3/gde/core/errorreport/Bundle.properties b/sdk/jme3-core/src/com/jme3/gde/core/errorreport/Bundle.properties index 1b5fcaff1..661e01ddb 100644 --- a/sdk/jme3-core/src/com/jme3/gde/core/errorreport/Bundle.properties +++ b/sdk/jme3-core/src/com/jme3/gde/core/errorreport/Bundle.properties @@ -1 +1,3 @@ CTL_RendererInfoAction=Check Graphics Capabilities +ExceptionPanel.jButton1.text=Copy to clipboard +ExceptionPanel.jButton2.text=OK diff --git a/sdk/jme3-core/src/com/jme3/gde/core/errorreport/ExceptionPanel.form b/sdk/jme3-core/src/com/jme3/gde/core/errorreport/ExceptionPanel.form new file mode 100644 index 000000000..bbdf732b8 --- /dev/null +++ b/sdk/jme3-core/src/com/jme3/gde/core/errorreport/ExceptionPanel.form @@ -0,0 +1,86 @@ + + +
diff --git a/sdk/jme3-core/src/com/jme3/gde/core/errorreport/ExceptionPanel.java b/sdk/jme3-core/src/com/jme3/gde/core/errorreport/ExceptionPanel.java new file mode 100644 index 000000000..5503a20f5 --- /dev/null +++ b/sdk/jme3-core/src/com/jme3/gde/core/errorreport/ExceptionPanel.java @@ -0,0 +1,133 @@ +/* + * Copyright (c) 2003-2012 jMonkeyEngine + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * * Neither the name of 'jMonkeyEngine' nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +package com.jme3.gde.core.errorreport; + +import java.awt.Toolkit; +import java.awt.datatransfer.Clipboard; +import java.awt.datatransfer.StringSelection; + +/** + * + * @author normenhansen + */ +public final class ExceptionPanel extends javax.swing.JPanel { + + /** + * Creates new form ExceptionPanel + */ + public ExceptionPanel() { + initComponents(); + } + + public ExceptionPanel(String text) { + initComponents(); + setText(text); + } + + public void setText(String text) { + jTextArea1.setText(text); + } + + private void copyToClip(String text) { + Toolkit toolkit = Toolkit.getDefaultToolkit(); + Clipboard clipboard = toolkit.getSystemClipboard(); + StringSelection strSel = new StringSelection(text); + clipboard.setContents(strSel, null); + } + + /** + * 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. + */ + @SuppressWarnings("unchecked") + //