Exemplo n.º 1
0
    private static int getNSVisualPosition(EditorPane txt, int pos, int direction) {
      Element root = txt.getDocument().getDefaultRootElement();
      int numLines = root.getElementIndex(txt.getDocument().getLength() - 1) + 1;
      int line = root.getElementIndex(pos) + 1;
      int tarLine = direction == SwingConstants.NORTH ? line - 1 : line + 1;
      try {
        if (tarLine <= 0) {
          return 0;
        }
        if (tarLine > numLines) {
          return txt.getDocument().getLength();
        }

        Rectangle curRect = txt.modelToView(pos);
        Rectangle tarEndRect;
        if (tarLine < numLines) {
          tarEndRect = txt.modelToView(txt.getLineStartOffset(tarLine) - 1);
        } else {
          tarEndRect = txt.modelToView(txt.getDocument().getLength() - 1);
        }
        Debug.log(9, "curRect: " + curRect + ", tarEnd: " + tarEndRect);

        if (curRect.x > tarEndRect.x) {
          pos = txt.viewToModel(new Point(tarEndRect.x, tarEndRect.y));
        } else {
          pos = txt.viewToModel(new Point(curRect.x, tarEndRect.y));
        }
      } catch (BadLocationException e) {
        Debug.error(me + "Problem getting next visual position\n%s", e.getMessage());
      }

      return pos;
    }
Exemplo n.º 2
0
 @Override
 public boolean importData(JComponent comp, Transferable t) {
   DataFlavor htmlFlavor = DataFlavor.stringFlavor;
   if (canImport(comp, t.getTransferDataFlavors())) {
     try {
       String transferString = (String) t.getTransferData(htmlFlavor);
       EditorPane targetTextPane = (EditorPane) comp;
       for (Map.Entry<String, String> entry : _copiedImgs.entrySet()) {
         String imgName = entry.getKey();
         String imgPath = entry.getValue();
         File destFile = targetTextPane.copyFileToBundle(imgPath);
         String newName = destFile.getName();
         if (!newName.equals(imgName)) {
           String ptnImgName = "\"" + imgName + "\"";
           newName = "\"" + newName + "\"";
           transferString = transferString.replaceAll(ptnImgName, newName);
           Debug.info(ptnImgName + " exists. Rename it to " + newName);
         }
       }
       targetTextPane.insertString(transferString);
     } catch (Exception e) {
       Debug.error(me + "importData: Problem pasting text\n%s", e.getMessage());
     }
     return true;
   }
   return false;
 }
Exemplo n.º 3
0
 public void setPage(URL url) throws IOException {
   // If we haven't created a peer yet, force us to use a browser, since
   // setPage is really aimed at HTML.
   if (!SwingWTUtils.isSWTControlAvailable(editorPaneImpl.getSWTPeer())) {
     loadBrowserEditorPane();
   }
   editorPaneImpl.setPage(url);
 }
Exemplo n.º 4
0
 public void setSelectionColor(Color color) {
   editorPaneImpl.setSelectionColor(color);
 }
Exemplo n.º 5
0
 public void setEditorKit(EditorKit k) {
   editorPaneImpl.setEditorKit(k);
 }
Exemplo n.º 6
0
 public EditorKit getEditorKit() {
   return editorPaneImpl.getEditorKit();
 }
Exemplo n.º 7
0
 public boolean isEditable() {
   return editorPaneImpl.isEditable();
 }
Exemplo n.º 8
0
 public void setText(String text) {
   editorPaneImpl.setText(text);
 }
Exemplo n.º 9
0
 /**
  * Once a parent component receives an "add" call for a child, this being the child, this should
  * be called to tell us to instantiate the peer and load in any cached properties.
  */
 public void setSwingWTParent(swingwt.awt.Container parent) throws Exception {
   descendantHasPeer = true;
   editorPaneImpl.setSwingWTParent(parent);
   peer = editorPaneImpl.getSWTPeer();
 }
Exemplo n.º 10
0
 public void removeHyperlinkListener(swingwtx.swing.event.HyperlinkListener l) {
   editorPaneImpl.removeHyperlinkListener(l);
 }
Exemplo n.º 11
0
 public void addHyperlinkListener(swingwtx.swing.event.HyperlinkListener l) {
   editorPaneImpl.addHyperlinkListener(l);
 }
Exemplo n.º 12
0
 public Document getDocument() {
   return editorPaneImpl.getDocument();
 }
Exemplo n.º 13
0
 public void setDocument(Document newdoc) {
   editorPaneImpl.setDocument(newdoc);
 }
Exemplo n.º 14
0
 public void setEditable(boolean b) {
   editorPaneImpl.setEditable(b);
 }
Exemplo n.º 15
0
 public Color getSelectionColor() {
   return editorPaneImpl.getSelectionColor();
 }
Exemplo n.º 16
0
 public void scrollToReference(String reference) {
   editorPaneImpl.scrollToReference(reference);
 }
Exemplo n.º 17
0
 public void setCaretPosition(int pos) {
   editorPaneImpl.setCaretPosition(pos);
 }
Exemplo n.º 18
0
 public String getText() {
   return editorPaneImpl.getText();
 }
Exemplo n.º 19
0
 public int getCaretPosition() {
   return editorPaneImpl.getCaretPosition();
 }
Exemplo n.º 20
0
 public String getContentType() {
   return editorPaneImpl.getContentType();
 }
Exemplo n.º 21
0
 public int getSelectionStart() {
   return editorPaneImpl.getSelectionStart();
 }
Exemplo n.º 22
0
 public int getSelectionEnd() {
   return editorPaneImpl.getSelectionEnd();
 }
Exemplo n.º 23
0
 public void setContentType(String contentType) {
   editorPaneImpl.setContentType(contentType);
 }