Package org.antlr.works.editor

Source Code of org.antlr.works.editor.GrammarEditorKit$DebuggerCursorToken

package org.antlr.works.editor;

import org.antlr.works.ate.swing.ATERenderingToken;
import org.antlr.works.ate.swing.ATERenderingView;
import org.antlr.works.ate.swing.ATERenderingViewDelegate;
import org.antlr.works.components.GrammarWindow;
import org.antlr.works.grammar.element.Jumpable;

import javax.swing.text.*;
import java.awt.*;
import java.util.*;
import java.util.List;
/*

[The "BSD licence"]
Copyright (c) 2005-2006 Jean Bovet
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

*/

public class GrammarEditorKit extends StyledEditorKit
        implements ViewFactory, ATERenderingViewDelegate {

    private GrammarWindow window;
    private final Set<ATERenderingView> views = new HashSet<ATERenderingView>();

    private final List<ATERenderingToken> indexes = new ArrayList<ATERenderingToken>();

    private ATERenderingToken[] cachedTokens;
    private boolean indexesModified = true;

    private final ATERenderingToken debuggerCursorToken = new DebuggerCursorToken();
    private final HighlightedReferenceStartToken highlightedReferenceStartToken = new HighlightedReferenceStartToken();
    private final HighlightedReferenceToken highlightedReferenceToken = new HighlightedReferenceToken();

    public GrammarEditorKit(GrammarWindow window) {
        this.window = window;
    }

    public void close() {
        for(ATERenderingView v : views) {
            v.close();
        }
        views.clear();
        window = null;
    }

    @Override
    public ViewFactory getViewFactory() {
        return this;
    }

    @Override
    public Document createDefaultDocument() {
        return new DefaultStyledDocument();
    }

    public View create(Element elem) {
        ATERenderingView v = new ATERenderingView(elem, window.getTextEditor());
        v.setDelegate(this);
        views.add(v);
        return v;
    }

    private void addToken(ATERenderingToken token) {
        if(!indexes.contains(token)) {
            indexes.add(token);
            indexesModified = true;
        }
    }

    private void removeToken(ATERenderingToken token) {
        if(indexes.contains(token)) {
            indexes.remove(token);
            indexesModified = true;
        }
    }

    public ATERenderingToken[] getTokens() {
        indexesModified = false;
        Jumpable ref = window.getHighlightedReference();
        if(ref != null) {
            highlightedReferenceStartToken.setIndex(ref.getStartIndex());
            highlightedReferenceToken.setIndex(ref.getEndIndex());
            highlightedReferenceToken.setStartToken(highlightedReferenceStartToken);
            addToken(highlightedReferenceStartToken);
            addToken(highlightedReferenceToken);
        } else {
            removeToken(highlightedReferenceStartToken);
            removeToken(highlightedReferenceToken);
        }
        if(window.getDebuggerLocation() != -1) {
            addToken(debuggerCursorToken);
            debuggerCursorToken.setIndex(window.getDebuggerLocation());
        } else {
            removeToken(debuggerCursorToken);
        }

        if(indexesModified || cachedTokens == null) {
            Collections.sort(indexes);
            cachedTokens = indexes.toArray(new ATERenderingToken[indexes.size()]);
        }
        return cachedTokens;
    }

    private static class DebuggerCursorToken extends ATERenderingToken {

        public void drawToken(ATERenderingView view, ATERenderingToken t,
                              Graphics g, FontMetrics metrics,
                              int x, int y, char c, Document doc,
                              AttributeSet attribute, Segment text)
        {
            g.setColor(Color.red);
            g.fillRect(x, y- metrics.getHeight()+metrics.getDescent(),
                    metrics.charWidth(c), metrics.getHeight());
        }
    }

    private static class HighlightedReferenceStartToken extends ATERenderingToken {

        private int startX;
        private int startIndex;

        public void drawToken(ATERenderingView view, ATERenderingToken t,
                              Graphics g, FontMetrics metrics,
                              int x, int y, char c, Document doc,
                              AttributeSet attribute, Segment text)
        {
            startX = x;
            startIndex = t.getIndex();
        }

        public int getStartX() {
            return startX;
        }

        public int getStartIndex() {
            return startIndex;
        }
    }

    private static class HighlightedReferenceToken extends ATERenderingToken {

        private HighlightedReferenceStartToken startToken;

        public void setStartToken(HighlightedReferenceStartToken startToken) {
            this.startToken = startToken;
        }

        public void drawToken(ATERenderingView view, ATERenderingToken t,
                              Graphics g, FontMetrics metrics,
                              int x, int y, char c, Document doc,
                              AttributeSet attribute, Segment text)
                throws BadLocationException
        {
            g.setColor(Color.blue);
            //g.drawLine(beginX, y+2, x, y+2);
            g.drawLine(startToken.getStartX(), y+1, x, y+1);

            // draw the text
            doc.getText(startToken.getStartIndex(), t.getIndex()-startToken.getStartIndex(), text);
            Utilities.drawTabbedText(text, startToken.getStartX(), y, g, view, startToken.getStartIndex());
        }
    }

}
TOP

Related Classes of org.antlr.works.editor.GrammarEditorKit$DebuggerCursorToken

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.
ga('send', 'pageview');