• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JInternalFrameを固定
#navi(../)
#tags()
#tags(JInternalFrame, MouseMotionListener)
RIGHT:Posted by &author(aterai); at 2005-10-10
*JInternalFrameを固定 [#o5f11a62]
JInternalFrameをマウスなどで移動できないように固定します。
``JInternalFrame``をマウスなどで移動できないように固定します。

-&jnlp;
-&jar;
-&zip;

//#screenshot
#ref(http://lh4.ggpht.com/_9Z4BYR88imo/TQTOXXz-C5I/AAAAAAAAAcQ/0qYBPzKq7js/s800/ImmovableFrame.png)

**サンプルコード [#a83e5c01]
#code(link){{
BasicInternalFrameUI ui = (BasicInternalFrameUI)immovableFrame.getUI();
Component titleBar = ui.getNorthPane();
for(MouseMotionListener l:titleBar.getListeners(MouseMotionListener.class)) {
  titleBar.removeMouseMotionListener(l);
}
}}

**解説 [#k07f6217]
JInternalFrameのMouseMotionListenerをすべて削除することで、マウスによる移動を不可能にしています。
``JInternalFrame``の``MouseMotionListener``をすべて削除することで、マウスによる移動を不可能にしています。

以下のようにしてタイトルバーを削除しても、移動できないフレームを作成することができます。
----
以下のようにしてタイトルバー自体を削除して移動できないフレームを作成する方法もあります。

#code{{
ui.setNorthPane(null);
internalframe.setBorder(BorderFactory.createEmptyBorder());
internalframe.setSize(200,50);
internalframe.add(new JLabel("移動できないフレーム", SwingConstants.CENTER));
internalframe.setLocation(10,10);
internalframe.pack();
}}

//#screenshot(,screenshot1.png)
#ref(http://lh3.ggpht.com/_9Z4BYR88imo/TQTOZ803FiI/AAAAAAAAAcU/Bj1t9F8ZKqI/s800/ImmovableFrame1.png)

**参考リンク [#t17ee3f9]
-[http://forums.sun.com/thread.jspa?threadID=609043 Swing - Lock JInternalPane]

**コメント [#rd25830b]
#comment