10

私は現在、Swing のコンソール ウィンドウに取り組んでいます。これは JTextArea に基づいており、一般的なコマンド ラインのように機能します。コマンドを 1 行で入力し、Enter キーを押します。次の行に出力が表示され、その出力の下に次のコマンドを記述できます。

ここで、コマンドで現在の行のみを編集できるようにしたいと思います。上記のすべての行 (古いコマンドと結果) は編集不可にする必要があります。これどうやってするの?

4

5 に答える 5

16

独自のコンポーネントを作成する必要はありません。

これは、カスタムDocumentFilterを使用して(私が行ったように)行うことができます。

からドキュメントを取得しtextPane.getDocument()、フィルタを設定できますdocument.setFilter()。フィルター内で、プロンプトの位置を確認し、位置がプロンプトの後にある場合にのみ変更を許可できます。

例えば:

private class Filter extends DocumentFilter {
    public void insertString(final FilterBypass fb, final int offset, final String string, final AttributeSet attr)
            throws BadLocationException {
        if (offset >= promptPosition) {
            super.insertString(fb, offset, string, attr);
        }
    }

    public void remove(final FilterBypass fb, final int offset, final int length) throws BadLocationException {
        if (offset >= promptPosition) {
            super.remove(fb, offset, length);
        }
    }

    public void replace(final FilterBypass fb, final int offset, final int length, final String text, final AttributeSet attrs)
            throws BadLocationException {
        if (offset >= promptPosition) {
            super.replace(fb, offset, length, text, attrs);
        }
    }
}

ただし、これにより、端末の出力 (編集不可) セクションにコンテンツをプログラムで挿入できなくなります。代わりにできることは、出力を追加しようとしているときに設定するフィルターのパススルー フラグ、または (私がしたこと) 出力を追加する前にドキュメント フィルターを null に設定し、その後、出力を追加するときにそれをリセットすることです。やり直した。

于 2012-04-05T14:59:35.090 に答える
3
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
public class OnlyEditCurrentLineTest {
  public JComponent makeUI() {
    JTextArea textArea = new JTextArea(8,0);
    textArea.setText("> aaa\n> ");
    ((AbstractDocument)textArea.getDocument()).setDocumentFilter(
        new NonEditableLineDocumentFilter());
    JPanel p = new JPanel(new BorderLayout());
    p.add(new JScrollPane(textArea), BorderLayout.NORTH);
    return p;
  }
  public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
      @Override public void run() { createAndShowGUI(); }
    });
  }
  public static void createAndShowGUI() {
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    f.getContentPane().add(new OnlyEditCurrentLineTest().makeUI());
    f.setSize(320,240);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
  }
}
class NonEditableLineDocumentFilter extends DocumentFilter {
  @Override public void insertString(
      DocumentFilter.FilterBypass fb, int offset, String string,
      AttributeSet attr) throws BadLocationException {
    if(string == null) {
      return;
    }else{
      replace(fb, offset, 0, string, attr);
    }
  }
  @Override public void remove(
      DocumentFilter.FilterBypass fb, int offset,
      int length) throws BadLocationException {
    replace(fb, offset, length, "", null);
  }
  private static final String PROMPT = "> ";
  @Override public void replace(
      DocumentFilter.FilterBypass fb, int offset, int length,
      String text, AttributeSet attrs) throws BadLocationException {
     Document doc = fb.getDocument();
     Element root = doc.getDefaultRootElement();
     int count = root.getElementCount();
     int index = root.getElementIndex(offset);
     Element cur = root.getElement(index);
     int promptPosition = cur.getStartOffset()+PROMPT.length();
     //As Reverend Gonzo says:
     if(index==count-1 && offset-promptPosition>=0) {
       if(text.equals("\n")) {
         String cmd = doc.getText(promptPosition, offset-promptPosition);
         if(cmd.isEmpty()) {
           text = "\n"+PROMPT;
         }else{
           text = "\n"+cmd+"\n    xxxxxxxxxx\n" + PROMPT;
         }
       }
       fb.replace(offset, length, text, attrs);
     }
  }
}
于 2012-04-05T15:36:49.847 に答える
0

私の知る限り、独自のコントロールを実装する必要があります

たぶん、テキストフィールドのリスト(有効でも奇数でも無効)またはテキストフィールド/ラベルの組み合わせでシミュレートできます

編集:

編集不可のテキストエリアと編集可能なテキストフィールドに賭けます。テキストフィールドに入力してEnterキーを押し、「コマンド」を追加してテキストエリアに出力します

于 2012-04-05T14:28:12.500 に答える
-1

">> " が、ユーザーがコマンドを入力できるコマンド ラインのすべての行の先頭である場合:

textArea.addKeyListener(new KeyAdapter() {

    public void keyPressed(KeyEvent event) {

        int code = event.getKeyCode();          
        int caret = textArea.getCaretPosition();
        int last = textArea.getText().lastIndexOf(">> ") + 3;

        if(caret <= last) {

            if(code == KeyEvent.VK_BACK_SPACE) {

                textArea.append(" ");

                textArea.setCaretPosition(last + 1);
            }

            textArea.setCaretPosition(textArea.getText().length());
         }
     }
 });
于 2012-04-05T16:07:44.257 に答える