Swing 中是否有一种优雅的方式来找出我的框架中当前是否显示任何工具提示?
我正在使用自定义工具提示,因此在我的createToolTip()
方法中设置标志非常容易,但我看不到工具提示何时消失的方法。
ToolTipManager
对此有一个很好的标志,tipShowing,但当然是这样,private
而且他们似乎没有提供实现它的方法。 hideWindow()
没有调用工具提示组件(我可以告诉),所以我看不到那里的方法。
有人有什么好主意吗?
更新:我带着反思去了。你可以在这里看到代码:
private boolean isToolTipVisible() {
// Going to do some nasty reflection to get at this private field. Don't try this at home!
ToolTipManager ttManager = ToolTipManager.sharedInstance();
try {
Field f = ttManager.getClass().getDeclaredField("tipShowing");
f.setAccessible(true);
boolean tipShowing = f.getBoolean(ttManager);
return tipShowing;
} catch (Exception e) {
// We'll keep silent about this for now, but obviously we don't want to hit this
// e.printStackTrace();
return false;
}
}