Package org.xhtmlrenderer.swing

Examples of org.xhtmlrenderer.swing.SelectionHighlighter.selectAll()


        }

        // install a selection highlighter no the panel
        final SelectionHighlighter caret = new SelectionHighlighter();
        caret.install(xhtmlPanel);
        caret.selectAll();

        FSScrollPane fs = new FSScrollPane(xhtmlPanel);

        mainPanel.add(fs,BorderLayout.CENTER);
View Full Code Here


        mainPanel.add(actionPanel, BorderLayout.SOUTH);

        // Select all text
        Action selectAll = new AbstractAction("Select All") {
            public void actionPerformed(ActionEvent event) {
                caret.selectAll();
            }
        };
        actionPanel.add(new JButton(selectAll));

View Full Code Here

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.