Examples of DownloadFileListPopupDelRowAction


Examples of me.mabra.hellonzb.listener.actions.DownloadFileListPopupDelRowAction

    /** Listen for the Delete key and when released create a fake action to reuse
     *  the current method to delete files from the file list. It uses the same method
     *  in the right click menu */
    if(e.getKeyCode() == KeyEvent.VK_DELETE)
    {
      new DownloadFileListPopupDelRowAction("ContextMenuRemoveFromList", mainApp, table.getSelectedRows()).
          actionPerformed(new ActionEvent(this,ActionEvent.ACTION_PERFORMED,null));
    }
     
  }
View Full Code Here

Examples of me.mabra.hellonzb.listener.actions.DownloadFileListPopupDelRowAction

  private void popup(MouseEvent me, int row, int col, int [] selectedRows)
  {
    // generate popup menu
    JPopupMenu popupMenu = new JPopupMenu();
    popupMenu.add(new DownloadFileListPopupDelRowAction("ContextMenuRemoveFromList", mainApp, selectedRows));
   
    // show popup menu
    popupMenu.show(table, me.getX(), me.getY());
    mainApp.registerRightPopup(popupMenu);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.