Package org.fife.ui.rsyntaxtextarea

Examples of org.fife.ui.rsyntaxtextarea.Token


    try {

      for (int line=0; line<lineCount; line++) {

        Token t = textArea.getTokenListForLine(line);
        while (t!=null && t.isPaintable()) {

          if (t.isLeftCurly()) {
            if (currentFold==null) {
              currentFold = new Fold(FoldType.CODE, textArea, t.offset);
              folds.add(currentFold);
            }
            else {
              currentFold = currentFold.createChild(FoldType.CODE, t.offset);
            }
            blocks.push(OBJECT_BLOCK);
          }

          else if (t.isRightCurly() && popOffTop(blocks, OBJECT_BLOCK)) {
            if (currentFold!=null) {
              currentFold.setEndOffset(t.offset);
              Fold parentFold = currentFold.getParent();
              //System.out.println("... Adding regular fold at " + t.offset + ", parent==" + parentFold);
              // Don't add fold markers for single-line blocks
              if (currentFold.isOnSingleLine()) {
                if (!currentFold.removeFromParent()) {
                  folds.remove(folds.size()-1);
                }
              }
              currentFold = parentFold;
            }
          }

          else if (isLeftBracket(t)) {
            if (currentFold==null) {
              currentFold = new Fold(FoldType.CODE, textArea, t.offset);
              folds.add(currentFold);
            }
            else {
              currentFold = currentFold.createChild(FoldType.CODE, t.offset);
            }
            blocks.push(ARRAY_BLOCK);
          }

          else if (isRightBracket(t) && popOffTop(blocks, ARRAY_BLOCK)) {
            if (currentFold!=null) {
              currentFold.setEndOffset(t.offset);
              Fold parentFold = currentFold.getParent();
              //System.out.println("... Adding regular fold at " + t.offset + ", parent==" + parentFold);
              // Don't add fold markers for single-line blocks
              if (currentFold.isOnSingleLine()) {
                if (!currentFold.removeFromParent()) {
                  folds.remove(folds.size()-1);
                }
              }
              currentFold = parentFold;
            }
          }

          t = t.getNextToken();

        }

      }
View Full Code Here


    try {

      for (int line=0; line<lineCount; line++) {

        Token t = textArea.getTokenListForLine(line);
        while (t!=null && t.isPaintable()) {

          if (t.isComment()) {

            // Continuing an MLC from a previous line
            if (inMLC) {
              // Found the end of the MLC starting on a previous line...
              if (t.endsWith(MLC_END)) {
                int mlcEnd = t.offset + t.textCount - 1;
                if (currentFold==null) {
                  currentFold = new Fold(FoldType.COMMENT, textArea, mlcStart);
                  currentFold.setEndOffset(mlcEnd);
                  folds.add(currentFold);
                  currentFold = null;
                }
                else {
                  currentFold = currentFold.createChild(FoldType.COMMENT, mlcStart);
                  currentFold.setEndOffset(mlcEnd);
                  currentFold = currentFold.getParent();
                }
                inMLC = false;
                mlcStart = 0;
              }
              // Otherwise, this MLC is continuing on to yet
              // another line.
            }

            else {
              // If we're an MLC that ends on a later line...
              if (t.type==Token.COMMENT_MULTILINE && !t.endsWith(MLC_END)) {
                inMLC = true;
                mlcStart = t.offset;
              }
            }

          }

          else if (t.isSingleChar(Token.MARKUP_TAG_DELIMITER, '<')) {
            if (currentFold==null) {
              currentFold = new Fold(FoldType.CODE, textArea, t.offset);
              folds.add(currentFold);
            }
            else {
              currentFold = currentFold.createChild(FoldType.CODE, t.offset);
            }
          }

          else if (t.is(Token.MARKUP_TAG_DELIMITER, MARKUP_SHORT_TAG_END)) {
            if (currentFold!=null) {
              Fold parentFold = currentFold.getParent();
              removeFold(currentFold, folds);
              currentFold = parentFold;
            }
          }

          else if (t.is(Token.MARKUP_TAG_DELIMITER, MARKUP_CLOSING_TAG_START)) {
            if (currentFold!=null) {
              currentFold.setEndOffset(t.offset);
              Fold parentFold = currentFold.getParent();
              // Don't add fold markers for single-line blocks
              if (currentFold.isOnSingleLine()) {
                removeFold(currentFold, folds);
              }
              currentFold = parentFold;
            }
          }

          t = t.getNextToken();

        }

      }
View Full Code Here

    try {

      for (int line=0; line<lineCount; line++) {

        Token t = textArea.getTokenListForLine(line);
        while (t!=null && t.isPaintable()) {

          if (t.isComment()) {

            if (inMLC) {
              // If we found the end of an MLC that started
              // on a previous line...
              if (t.endsWith(C_MLC_END)) {
                int mlcEnd = t.offset + t.textCount - 1;
                if (currentFold==null) {
                  currentFold = new Fold(FoldType.COMMENT, textArea, mlcStart);
                  currentFold.setEndOffset(mlcEnd);
                  folds.add(currentFold);
                  currentFold = null;
                }
                else {
                  currentFold = currentFold.createChild(FoldType.COMMENT, mlcStart);
                  currentFold.setEndOffset(mlcEnd);
                  currentFold = currentFold.getParent();
                }
                //System.out.println("Ending MLC at: " + mlcEnd + ", parent==" + currentFold);
                inMLC = false;
                mlcStart = 0;
              }
              // Otherwise, this MLC is continuing on to yet
              // another line.
            }
            else {
              // If we're an MLC that ends on a later line...
              if (t.type!=Token.COMMENT_EOL && !t.endsWith(C_MLC_END)) {
                //System.out.println("Starting MLC at: " + t.offset);
                inMLC = true;
                mlcStart = t.offset;
              }
            }

          }

          else if (t.is(Token.RESERVED_WORD, KEYWORD_SECTION)) {
            if (currentFold==null) {
              currentFold = new Fold(FoldType.CODE, textArea, t.offset);
              folds.add(currentFold);
            }
            else {
              currentFold = currentFold.createChild(FoldType.CODE, t.offset);
            }
            endWordStack.push(KEYWORD_SECTION_END);
          }

          else if (t.is(Token.RESERVED_WORD, KEYWORD_FUNCTION)) {
            if (currentFold==null) {
              currentFold = new Fold(FoldType.CODE, textArea, t.offset);
              folds.add(currentFold);
            }
            else {
              currentFold = currentFold.createChild(FoldType.CODE, t.offset);
            }
            endWordStack.push(KEYWORD_FUNCTION_END);
          }

          else if (foundEndKeyword(KEYWORD_SECTION_END, t, endWordStack) ||
              foundEndKeyword(KEYWORD_FUNCTION_END, t, endWordStack)) {
            if (currentFold!=null) {
              currentFold.setEndOffset(t.offset);
              Fold parentFold = currentFold.getParent();
              endWordStack.pop();
              // Don't add fold markers for single-line blocks
              if (currentFold.isOnSingleLine()) {
                if (!currentFold.removeFromParent()) {
                  folds.remove(folds.size()-1);
                }
              }
              currentFold = parentFold;
            }
          }

          t = t.getNextToken();

        }

      }
View Full Code Here

            endLine = fold.getStartLine() + 25;
          }

          StringBuffer sb = new StringBuffer("<html><nobr>");
          while (line<=endLine && line<rsta.getLineCount()) { // Sanity
            Token t = rsta.getTokenListForLine(line);
            while (t!=null && t.isPaintable()) {
              t.appendHTMLRepresentation(sb, rsta, true, true);
              t = t.getNextToken();
            }
            sb.append("<br>");
            line++;
          }
View Full Code Here

    result.clearNotices();
    result.setParsedLines(0, lineCount-1);

    for (int line=0; line<lineCount; line++) {

      Token t = doc.getTokenListForLine(line);
      int offs = -1;
      int start = -1;
      String text = null;

      while (t!=null && t.isPaintable()) {
        if (t.isComment()) {

          offs = t.offset;
          text = t.getLexeme();

          Matcher m = taskPattern.matcher(text);
          if (m.find()) {
            start = m.start();
            offs += start;
            break;
          }

        }
        t = t.getNextToken();
      }

      if (start>-1) {
        text = text.substring(start);
        // TODO: Strip off end of MLC's if they're there.
View Full Code Here

         doc.readLock();
         try
         {
            // Get the token at the caret position.
            int line = textArea.getCaretLineNumber();
            Token tokenList = textArea.getTokenListForLine(line);
            int dot = this.textArea.getCaret().getDot();
            Token t = RSyntaxUtilities.getTokenAtOffset(tokenList, dot);
            if (t == null)
            {
               // Try to the "left" of the caret.
               dot--;
               try
               {
                  if (dot >= textArea.getLineStartOffset(line))
                  {
                     t = RSyntaxUtilities.getTokenAtOffset(tokenList, dot);
                  }
               }
               catch (BadLocationException ble)
               {
                  ble.printStackTrace(); // Never happens
               }

            }
            if (t != null)
            {
               try
               {
                  // A bug in this method sometimes throws a null pointer exception.
                  selectedText = t.getLexeme();
               }
               catch (NullPointerException e)
               {}
            }
         }
View Full Code Here

    result.clearNotices();
    result.setParsedLines(0, lineCount-1);

    for (int line=0; line<lineCount; line++) {

      Token t = doc.getTokenListForLine(line);
      int offs = -1;
      int start = -1;
      String text = null;

      while (t!=null && t.isPaintable()) {
        if (t.type==Token.COMMENT_EOL ||
            t.type==Token.COMMENT_MULTILINE ||
            t.type==Token.COMMENT_DOCUMENTATION) {

          offs = t.offset;
          text = t.getLexeme();

          Matcher m = taskPattern.matcher(text);
          if (m.find()) {
            start = m.start();
            offs += start;
            break;
          }

        }
        t = t.getNextToken();
      }

      if (start>-1) {
        text = text.substring(start);
        // TODO: Strip off end of MLC's if they're there.
View Full Code Here

    }

    @Override
    public LinkGeneratorResult isLinkAtOffset(RSyntaxTextArea textArea, int offset) {
      try {
        Token token = textArea.modelToToken(offset);
        if (token == null) {
          return null;
        }
        final int sourceOffset = token.getOffset();
        final Position defPos = getPosition(jCls, textArea, sourceOffset);
        if (defPos == null) {
          return null;
        }
        return new LinkGeneratorResult() {
View Full Code Here

            endLine = fold.getStartLine() + 25;
          }

          StringBuilder sb = new StringBuilder("<html><nobr>");
          while (line<=endLine && line<rsta.getLineCount()) { // Sanity
            Token t = rsta.getTokenListForLine(line);
            while (t!=null && t.isPaintable()) {
              t.appendHTMLRepresentation(sb, rsta, true, true);
              t = t.getNextToken();
            }
            sb.append("<br>");
            line++;
          }
View Full Code Here

    result.clearNotices();
    result.setParsedLines(0, lineCount-1);

    for (int line=0; line<lineCount; line++) {

      Token t = doc.getTokenListForLine(line);
      int offs = -1;
      int start = -1;
      String text = null;

      while (t!=null && t.isPaintable()) {
        if (t.isComment()) {

          offs = t.getOffset();
          text = t.getLexeme();

          Matcher m = taskPattern.matcher(text);
          if (m.find()) {
            start = m.start();
            offs += start;
            break;
          }

        }
        t = t.getNextToken();
      }

      if (start>-1) {
        text = text.substring(start);
        // TODO: Strip off end of MLC's if they're there.
View Full Code Here

TOP

Related Classes of org.fife.ui.rsyntaxtextarea.Token

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.