Package com.subgraph.vega.ui.httpeditor.highlights

Examples of com.subgraph.vega.ui.httpeditor.highlights.MatchHighlighter


  public SearchBar(Composite parent, ProjectionViewer viewer, Colors colors) {
    super(parent, SWT.NONE);
    setLayout(new RowLayout(SWT.HORIZONTAL));
    configureViewer(viewer);
    this.textControl = viewer.getTextWidget();
    this.highlighter = new MatchHighlighter(viewer, colors.get(Colors.HIGHLIGHT_SEARCH_MATCH), ANNOTATION_MATCH, true);
    this.noResultBackground = colors.get(Colors.NO_SEARCH_RESULT_TEXT_BACKGROUND);
    searchText = createSearchText();
    searchTextBackground = searchText.getBackground();
    buttons = new NavigationButtons(this, highlighter, this);
    pack();
View Full Code Here

TOP

Related Classes of com.subgraph.vega.ui.httpeditor.highlights.MatchHighlighter

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.