Package org.apache.pivot.wtk.media.drawing

Examples of org.apache.pivot.wtk.media.drawing.Text


        });

        Action.getNamedActions().put("newText", new Action() {
            @Override
            public void perform(Component source) {
                Text text = new Text();
                text.setText("ABC");
                text.setFont("Arial BOLD 24");

                text.setFill(getSelectedColor());
                text.setOrigin(getRandomLocation(text));

                drawing.getCanvas().add(text);
            }
        });
    }
View Full Code Here


        });

        Action.getNamedActions().put("newText", new Action() {
            @Override
            public void perform() {
                Text text = new Text();
                text.setText("ABC");
                text.setFont("Arial BOLD 24");

                text.setFill(getSelectedColor());
                text.setOrigin(getRandomLocation(text));

                drawing.getCanvas().add(text);
            }
        });
    }
View Full Code Here

TOP

Related Classes of org.apache.pivot.wtk.media.drawing.Text

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.