Coder Social home page Coder Social logo

Comments (1)

impactCn avatar impactCn commented on June 2, 2024

I solved it.
Just selectRange(0, 0).

public class Find extends Application {

    private final static List<SelectionImpl<Collection<String>, String, Collection<String>>> SELECTIONS = new ArrayList<>();

    private CodeArea area = new CodeArea();

    private TextField findInput = new TextField();

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        area.replaceText(0, 0, "Your code goes here. \n Your code goes here.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nn\n\n\n\n\n\n\n\n\n\n\n\n");
        findInput.setBackground(new Background(new javafx.scene.layout.BackgroundFill(Color.LIGHTGRAY, null, null)));
        area.setBackground(new Background(new javafx.scene.layout.BackgroundFill(Color.WHITE, null, null)));
        findInput.setPromptText("Find");
        VBox vBox = new VBox(findInput, area);
        primaryStage.setTitle("Find");
        primaryStage.setScene(new Scene(vBox, 400, 400));
        primaryStage.show();

        findInput.textProperty().addListener(new ChangeListener<String>() {
            @Override
            public void changed(ObservableValue<? extends String> observableValue, String s, String t1) {
                for (SelectionImpl<Collection<String>, String, Collection<String>> selection : SELECTIONS) {
                    selection.selectRange(0, 0);
                    area.removeSelection(selection);
                }
                SELECTIONS.clear();
                Pattern keyPattern = Pattern.compile(t1, Pattern.MULTILINE);
                Matcher matcher = keyPattern.matcher(area.getText());
                while (matcher.find()) {
                    addExtraSelection(matcher.start(), matcher.end());
                }
            }
        });

    }

    private void addExtraSelection(int start, int end) {
        SelectionImpl<Collection<String>, String, Collection<String>> extraSelection = new SelectionImpl<>(String.valueOf(start), area,
                path -> {
                    // make rendered selection path look like a yellow highlighter
                    path.setStrokeWidth(0);
                    path.setFill(Color.YELLOW);
                }
        );
        if (!area.addSelection(extraSelection)) {
            throw new IllegalStateException("selection was not added to area");
        }
        // select something so it is visible
        extraSelection.selectRange(start, end);
        SELECTIONS.add(extraSelection);
    }
}

from richtextfx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.