bcv-vf/src/main/java/the/bytecode/club/bytecodeviewer/gui/components/JFrameConsole.java

78 lines
2.4 KiB
Java

package the.bytecode.club.bytecodeviewer.gui.components;
import the.bytecode.club.bytecodeviewer.resources.IconResources;
import javax.swing.*;
import java.awt.*;
/***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *
* Copyright (C) 2014 Kalen 'Konloch' Kinloch - http://bytecodeviewer.com *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program 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 for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
/**
* A simple swing JFrame console
*
* @author Konloch
* @since 6/25/2021
*/
public class JFrameConsole extends JFrame
{
private final SearchableJTextArea textArea = new SearchableJTextArea();
public JFrameConsole(String title)
{
this.setIconImages(IconResources.iconList);
setTitle(title);
setSize(new Dimension(542, 316));
getContentPane().add(textArea.getScrollPane(), BorderLayout.CENTER);
this.setLocationRelativeTo(null);
}
/**
* Appends \r\n to the end of your string, then it puts it on the top.
*
* @param t the string you want to append
*/
public void appendText(String t)
{
setText((textArea.getText().isEmpty()
? ""
: textArea.getText() + "\r\n"
) + t);
}
/**
* Sets the text
*
* @param t the text you want set
*/
public void setText(String t)
{
textArea.setText(t);
textArea.setCaretPosition(0);
}
public SearchableJTextArea getTextArea()
{
return textArea;
}
private static final long serialVersionUID = -5056940543411437508L;
}