5

在 JXCollapsiblePane 与按钮一起使用的 SwingX 示例中,但我想用鼠标事件转置它。在我的示例中,JXCollapsiblePane 在开始时是关闭的。只有当用户自带鼠标放在按钮上时才能打开JXCollapsiblePane。当鼠标离开该区域时,这应该是 JXCollapsiblePane 再次崩溃。我的问题:当鼠标通过按钮离开该区域时,JXCollapsiblePane 没有折叠。

public class CollapsiblePaneDemo
{

  /**
   * @param args
   */
  public static void main( String[] args )
  {
    final JXCollapsiblePane cp = 
        new JXCollapsiblePane( JXCollapsiblePane.Direction.RIGHT );

    // JXCollapsiblePane can be used like any other container
    cp.setLayout( new BorderLayout() );

    // the Controls panel with a textfield to filter the tree
    JPanel controls = new JPanel( new FlowLayout( FlowLayout.LEFT, 4, 0 ) );
    controls.add( new JLabel( "Search:" ) );
    controls.add( new JTextField( 10 ) );
    controls.add( new JButton( "Refresh" ) );
    controls.setBorder( new TitledBorder( "Filters" ) );

    cp.add( "Center", controls );

    JXFrame frame = new JXFrame();
    frame.setLayout( new BorderLayout() );

    // Then the tree - we assume the Controls would somehow filter the tree
    JScrollPane scroll = new JScrollPane( new JTree() );
    // Put the "Controls" first
    frame.add( "Center", scroll );


    // Show/hide the "Controls"
    final JButton toggle = new JButton( cp.getActionMap()
        .get( JXCollapsiblePane.TOGGLE_ACTION ) );
    toggle.setText( "-" );
    toggle.setPreferredSize( new Dimension( 20, toggle.getSize().height ) );

    toggle.addMouseListener( new MouseAdapter()
    {
      @Override
      public void mouseEntered( MouseEvent e )
      {
        if ( cp.getSize().width == 0 )
        {

          toggle.doClick();
        }
      }
    } );

    final JPanel panel = new JPanel();
    panel.setLayout( new BorderLayout() );
    panel.add( "Center", toggle );
    panel.add( "East", cp );

    panel.addMouseListener( new MouseAdapter()
    {
      @Override
      public void mouseExited( MouseEvent e )
      {
        if ( !panel.contains( e.getPoint() ) )
        {
          toggle.doClick();
        }
      }
    } );

    frame.add( "East", panel );

    frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    frame.pack();
    cp.setCollapsed( true );
    frame.setVisible( true );

  }
}

谢谢,

4

1 回答 1

4

mouseExited光标离开时触发事件JPanel- 通过离开边界JPanel或输入子组件之一。由于按钮位于 边缘的右侧JPanel,因此光标永远不会JPanel在左侧再次进入,因此无法退出。

您可以修改mouseEntered按钮中的方法MouseListener以折叠打开的控制面板,并让您现有的MouseListener处理用户通过框架边框离开的情况。如果您想阻止用户追逐按钮并重新触发它(我没有在代码中打扰),您需要跟踪控制窗格的展开/折叠状态(SwingX API 可能已经为您完成了)以下)。

我修改后的 MouseListener:

toggle.addMouseListener( new MouseAdapter()
{
  @Override
  public void mouseEntered( MouseEvent e )
  {
      toggle.doClick();
  }
} );
于 2012-07-03T10:12:54.970 回答