Examples of FindTextAction


Examples of org.wikipediacleaner.gui.swing.action.FindTextAction

  public void addItemFindText(
      JPopupMenu popup, Page page, JTextPane textPane) {
    if ((page != null) && (textPane != null)) {
      addItem(
          popup, null, GT._("Find text"), true,
          new FindTextAction(page.getTitle(), textPane));
    }
  }
View Full Code Here

Examples of org.wikipediacleaner.gui.swing.action.FindTextAction

    setPopupListener(new MWPaneBasicPopupListener(wikipedia, window));

    keyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_F, InputEvent.CTRL_MASK);
    inputMapFocused.put(keyStroke, "find-text");
    actionMap.put("find-text", new FindTextAction());

    inputMapInFocused.put(lastLinkKeyStroke, "last-link");
    actionMap.put("last-link", new ReplaceLinkAction(false));

    inputMapInFocused.put(lastReplaceKeyStroke, "last-replace");
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.