Swing/ToolTipLocation のバックアップ(No.10)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/ToolTipLocation へ行く。
- category: swing folder: ToolTipLocation title: JToolTipの表示位置 tags: [JToolTip, JWindow, MouseListener, MouseMotionListener] author: aterai pubdate: 2010-05-03T22:32:22+09:00 description: JToolTipの表示位置がドラッグでマウスカーソルに追従するように設定します。 image:
概要
JToolTip
の表示位置がドラッグでマウスカーソルに追従するように設定します。
Screenshot
Advertisement
サンプルコード
private void updateTipText(MouseEvent e) {
Point pt = e.getPoint();
String txt = String.format("Window(x, y)=(%d, %d)", pt.x, pt.y);
tip.setTipText(txt);
Point p = getToolTipLocation(e);
if (SwingUtilities.isLeftMouseButton(e)) {
if (prev.length() != txt.length()) {
window.pack();
}
window.setLocation(p);
window.setAlwaysOnTop(true);
} else {
if (popup != null) {
popup.hide();
}
popup = factory.getPopup(e.getComponent(), tip, p.x, p.y);
Container c = tip.getTopLevelAncestor();
if (c instanceof JWindow &&
((JWindow) c).getType() == Window.Type.POPUP) {
System.out.println("Popup$HeavyWeightWindow");
} else {
popup.show();
}
}
prev = txt;
}
View in GitHub: Java, Kotlin解説
- 左クリックしてドラッグ
JWindow
にJToolTip
を追加し、Window#setLocation()
メソッドで移動- テキスト文字数が変更された場合のみ
JWindow#pack()
メソッドを呼び出してサイズを更新
- 左クリック以外でドラッグ
PopupFactory#getPopup()
でPopup
を取得して表示Popup
の位置が変更できずこれを再作成しているため、親フレームの外にJToolTip
が表示される場合は非表示に設定- フレーム外では
HeavyWeight
のJWindow
でJToolTip
が表示されるため、再作成すると表示がチラついてしまう
- フレーム外では