Package com.lightdev.app.shtm

Examples of com.lightdev.app.shtm.SHTMLEditorPane


    // make sure that SHTML gets notified of relevant config changes!
       ResourceController.getResourceController().addPropertyChangeListener(
          new FreeplaneToSHTMLPropertyChangeAdapter(htmlEditorPanel));

    htmlEditorPanel.setMinimumSize(new Dimension(100, 100));
    final SHTMLEditorPane editorPane = (SHTMLEditorPane) htmlEditorPanel.getEditorPane();

    for (InputMap inputMap = editorPane.getInputMap(); inputMap != null; inputMap = inputMap.getParent()){
      inputMap.remove(KeyStroke.getKeyStroke("ctrl pressed T"));
      inputMap.remove(KeyStroke.getKeyStroke("ctrl shift pressed T"));
      inputMap.remove(KeyStroke.getKeyStroke("ctrl pressed SPACE"));
    }

    editorPane.addFocusListener(new FocusListener() {
      private SpellCheckerController spellCheckerController = null;
      private boolean enabled = false;
      public void focusLost(final FocusEvent e) {
        if(! e.isTemporary()){
          spellCheckerController.enableAutoSpell(editorPane, false);
          enabled = false;
        }
      }

      public void focusGained(final FocusEvent e) {
        if(! enabled){
          initSpellChecker();
          spellCheckerController.enableAutoSpell(editorPane, true);
          enabled = true;
        }
      }

      private void initSpellChecker() {
        if (spellCheckerController != null) {
          return;
        }
        spellCheckerController = SpellCheckerController.getController();
        spellCheckerController.addSpellCheckerMenu(editorPane.getPopup());
        spellCheckerController.enableShortKey(editorPane, true);
      }
    });
    return htmlEditorPanel;
  }
View Full Code Here


       super("SetLinkByTextFieldAction");
       this.panel = panel;
   }

   public void actionPerformed(final ActionEvent ae) {
        SHTMLEditorPane editorPane = panel.getSHTMLEditorPane();
    final Element linkElement = editorPane.getCurrentLinkElement();
        final boolean foundLink = (linkElement != null);
    final String linkAsString;
        if (foundLink) {
            final AttributeSet elemAttrs = linkElement.getAttributes();
            final Object linkAttr = elemAttrs.getAttribute(HTML.Tag.A);
            final Object href = ((AttributeSet) linkAttr).getAttribute(HTML.Attribute.HREF);
            if (href != null) {
              linkAsString = href.toString();
            }
            else
              linkAsString = "http://";
        }
        else {
            linkAsString = "http://";
        }
    final String inputValue = UITools.showInputDialog(
        Controller.getCurrentController().getSelection().getSelected(), TextUtils.getText("edit_link_manually"), linkAsString);
    if (inputValue != null && ! inputValue.matches("\\w+://")) {
      SHTMLEditorPane editor = panel.getSHTMLEditorPane();
      if (inputValue.equals("")) {
        editor.setLink(null, null, null);
        return;
      }
      try {
        final URI link = LinkController.createURI(inputValue.trim());
        editor.setLink(null, link.toString(), null);
      }
      catch (final URISyntaxException e1) {
        LogUtils.warn(e1);
        UITools.errorMessage(TextUtils.format("invalid_uri", inputValue));
        return;
View Full Code Here

    }

    private SHTMLPanel createEditorPanel(String purpose) throws Exception {
      if (htmlEditorPanel == null) {
        htmlEditorPanel = MTextController.getController().createSHTMLPanel(purpose);
        final SHTMLEditorPane editorPane = (SHTMLEditorPane) htmlEditorPanel.getEditorPane();
        final SpellCheckerController spellCheckerController = SpellCheckerController.getController();
        spellCheckerController.enableAutoSpell(editorPane, true);
        spellCheckerController.addSpellCheckerMenu(editorPane.getPopup());
        spellCheckerController.enableShortKey(editorPane, true);
      }
      return htmlEditorPanel;
    }
View Full Code Here

  public void setLinkByFileChooser() {
    final URI relative = ((MFileManager) UrlManager.getController())
        .getLinkByFileChooser(Controller.getCurrentController().getMap());
    if (relative != null) {
      SHTMLEditorPane editor = panel.getSHTMLEditorPane();
      editor.setLink(null, relative.toString(), null);
    }
  }
View Full Code Here

TOP

Related Classes of com.lightdev.app.shtm.SHTMLEditorPane

Copyright © 2018 www.massapicom. 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.