JTextFieldにフォーカスと文字列が無い場合の表示

編集者:Terai Atsuhiro
作成日:2005-11-07
更新日:2022-07-29 (金) 11:33:02

概要

JTextFieldにフォーカスと文字列が無い場合、薄い色でその説明を表示します。

http://terai.xrea.jp/swing/ghosttext/screenshot.png

サンプルコード

class GhostFocusListener implements FocusListener {
  private final String initMessage = "文字列を入力してください";
  private final Color dColor = SystemColor.inactiveCaptionText;
  private final Color oColor;
  public GhostFocusListener(final JTextComponent tf) {
    oColor = tf.getForeground();
    tf.setForeground(dColor);
    tf.setText(initMessage);
  }
  public void focusGained(final FocusEvent e) {
    SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        JTextComponent textField = (JTextComponent)e.getSource();
        String str = textField.getText();
        Color col  = textField.getForeground();
        if(initMessage.equals(str) && dColor.equals(col)) {
          textField.setForeground(oColor);
          textField.setText("");
        }
      }
    });
  }
  public void focusLost(final FocusEvent e) {
    SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        JTextComponent textField = (JTextComponent)e.getSource();
        String str = textField.getText().trim();
        if("".equals(str)) {
          textField.setForeground(dColor);
          textField.setText(initMessage);
        }
      }
    });
  }
}

解説

上記のサンプルでは、下のJTextFieldからフォーカスが失われた時、まだ何も入力されていない場合は、そのJTextFieldの説明などを薄く表示することができるようにしています。

コメント