summaryrefslogtreecommitdiff
path: root/src/com/sun/apoc/tools/profileeditor/gui/InfoPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/sun/apoc/tools/profileeditor/gui/InfoPanel.java')
-rw-r--r--src/com/sun/apoc/tools/profileeditor/gui/InfoPanel.java96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/com/sun/apoc/tools/profileeditor/gui/InfoPanel.java b/src/com/sun/apoc/tools/profileeditor/gui/InfoPanel.java
new file mode 100644
index 0000000..abcbf3b
--- /dev/null
+++ b/src/com/sun/apoc/tools/profileeditor/gui/InfoPanel.java
@@ -0,0 +1,96 @@
+/*
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
+ *
+ * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
+ *
+ * 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 www.sun.com/CDDL or at COPYRIGHT. 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 /legal/license.txt. 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):
+ *
+ * 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 don't 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.sun.apoc.tools.profileeditor.gui;
+import com.sun.apoc.tools.profileeditor.*;
+import java.awt.Font;
+import java.io.OutputStream;
+import java.io.PrintStream;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import javax.swing.JTextArea;
+import javax.swing.JTabbedPane;
+
+import java.awt.BorderLayout;
+import java.awt.Dimension;
+
+public class InfoPanel extends JPanel {
+ private JTextArea infoTextArea;
+
+ public InfoPanel(){
+
+ this.setLayout( new BorderLayout() );
+ this.setPreferredSize( new Dimension(ProfileEditor.windowWidth, ProfileEditor.outputHeight) );
+
+ infoTextArea = new JTextArea();
+ infoTextArea.setEditable(false);
+ Font font = infoTextArea.getFont();
+ font = font.deriveFont(Font.PLAIN, font.getSize()-1 );
+ infoTextArea.setFont( font );
+
+ JScrollPane infoScrollPane = new JScrollPane(infoTextArea);
+
+ this.add(infoScrollPane, BorderLayout.CENTER);
+
+ System.setOut(new PrintStream( new JTextAreaOutputStream(infoTextArea) ) );
+ }
+
+ public void addText(String message){
+ infoTextArea.setText("\n" + message);
+ infoTextArea.setCaretPosition( infoTextArea.getDocument().getLength() );
+ }
+
+
+ public class JTextAreaOutputStream extends OutputStream {
+ JTextArea textArea;
+
+ public JTextAreaOutputStream(JTextArea text){
+ super();
+ textArea = text;
+ }
+
+ public void write(int i){
+ char[] chars = new char[1];
+ chars[0] = (char)i;
+ String s = new String(chars);
+ textArea.append(s);
+ }
+
+ public void write(char[] buf, int off, int len){
+ String s = new String(buf, off, len);
+ textArea.append(s);
+ }
+ }
+
+}//end OutputPane \ No newline at end of file