/jEdit/branches/ci_release_test/4-4-pre1/org/gjt/sp/jedit/gui/DynamicContextMenuService.java

# · Java · 32 lines · 7 code · 5 blank · 20 comment · 0 complexity · b2197afe3b5868f78331ec1e866c5d24 MD5 · raw file

  1. package org.gjt.sp.jedit.gui;
  2. import java.awt.event.MouseEvent;
  3. import javax.swing.JMenuItem;
  4. import org.gjt.sp.jedit.textarea.JEditTextArea;
  5. /**
  6. * A service that can be offered by plugins when a text area context menu item
  7. * needs to be offered that is sensitive to the state of the TextArea it was requested from.
  8. * Note: this service should only be used by certain plugins that need context information at the time
  9. * that the context menu is requested. For all other actions, it is already possible for users to
  10. * add menu items to the context menu, so please do not use this service from Plugins
  11. * to add non-dynamic actions to the context menu.
  12. *
  13. * @author ezust
  14. * @since jEdit 4.3pre15
  15. */
  16. abstract public class DynamicContextMenuService {
  17. /**
  18. *
  19. * @param ta the TextArea where the context menu was requested.
  20. * Use this to determine the location of the caret, or the edit mode of the buffer, etc.
  21. * @param evt a mouseEvent that triggered this menu request, or null
  22. * @return an array of menu items
  23. * or null if there are no appropriate actions to be added at this time
  24. */
  25. public abstract JMenuItem[] createMenu(JEditTextArea ta, MouseEvent evt);
  26. }