All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xworker.javafx.scene.text.TextActions Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package xworker.javafx.scene.text;

import javafx.geometry.VPos;
import javafx.scene.text.*;
import org.xmeta.ActionContext;
import org.xmeta.Thing;
import xworker.javafx.beans.property.PropertyFactory;
import xworker.javafx.scene.shape.ShapeActions;
import xworker.javafx.util.JavaFXUtils;

public class TextActions {
    static{
        PropertyFactory.regist(Text.class, "boundsTypeProperty", o -> {
            Text obj = (Text) o;
            return obj.boundsTypeProperty();
        });
        PropertyFactory.regist(Text.class, "fontProperty", o -> {
            Text obj = (Text) o;
            return obj.fontProperty();
        });
        PropertyFactory.regist(Text.class, "textOriginProperty", o -> {
            Text obj = (Text) o;
            return obj.textOriginProperty();
        });
        /*PropertyFactory.regist(Text.class, "tabSizeProperty", o -> {
            Text obj = (Text) o;
            return obj.tabSizeProperty();
        });*/
        PropertyFactory.regist(Text.class, "caretBiasProperty", o -> {
            Text obj = (Text) o;
            return obj.caretBiasProperty();
        });
        PropertyFactory.regist(Text.class, "xProperty", o -> {
            Text obj = (Text) o;
            return obj.xProperty();
        });
        PropertyFactory.regist(Text.class, "yProperty", o -> {
            Text obj = (Text) o;
            return obj.yProperty();
        });
        PropertyFactory.regist(Text.class, "underlineProperty", o -> {
            Text obj = (Text) o;
            return obj.underlineProperty();
        });
        PropertyFactory.regist(Text.class, "lineSpacingProperty", o -> {
            Text obj = (Text) o;
            return obj.lineSpacingProperty();
        });
        PropertyFactory.regist(Text.class, "selectionEndProperty", o -> {
            Text obj = (Text) o;
            return obj.selectionEndProperty();
        });
        PropertyFactory.regist(Text.class, "wrappingWidthProperty", o -> {
            Text obj = (Text) o;
            return obj.wrappingWidthProperty();
        });
        PropertyFactory.regist(Text.class, "textAlignmentProperty", o -> {
            Text obj = (Text) o;
            return obj.textAlignmentProperty();
        });
        PropertyFactory.regist(Text.class, "fontSmoothingTypeProperty", o -> {
            Text obj = (Text) o;
            return obj.fontSmoothingTypeProperty();
        });
        PropertyFactory.regist(Text.class, "caretPositionProperty", o -> {
            Text obj = (Text) o;
            return obj.caretPositionProperty();
        });
        PropertyFactory.regist(Text.class, "strikethroughProperty", o -> {
            Text obj = (Text) o;
            return obj.strikethroughProperty();
        });
        PropertyFactory.regist(Text.class, "selectionStartProperty", o -> {
            Text obj = (Text) o;
            return obj.selectionStartProperty();
        });
        PropertyFactory.regist(Text.class, "textProperty", o -> {
            Text obj = (Text) o;
            return obj.textProperty();
        });
    }

    public static void init(Text node, Thing thing, ActionContext actionContext){
        ShapeActions.init(node, thing, actionContext);

        if(thing.valueExists("boundsType")){
            node.setBoundsType(TextBoundsType.valueOf(thing.getString("boundsType")));
        }
        if(thing.valueExists("font")){
            Font font = JavaFXUtils.getObject(thing, "font", actionContext);
            if(font != null) {
                node.setFont(font);
            }
        }
        if(thing.valueExists("fontSmoothingType")){
            node.setFontSmoothingType(FontSmoothingType.valueOf(thing.getString("fontSmoothingType")));
        }
        if(thing.valueExists("lineSpacing")){
            node.setLineSpacing(thing.getDouble("lineSpacing"));
        }
        if(thing.valueExists("strikethrough")){
            node.setStrikethrough(thing.getBoolean("strikethrough"));
        }
        if(thing.valueExists("textAlignment")){
            node.setTextAlignment(TextAlignment.valueOf(thing.getString("textAlignment")));
        }
        if(thing.valueExists("textOrigin")){
            node.setTextOrigin(VPos.valueOf(thing.getString("textOrigin")));
        }
        if(thing.valueExists("underline")){
            node.setUnderline(thing.getBoolean("underline"));
        }
        if(thing.valueExists("wrappingWidth")){
            node.setWrappingWidth(thing.getDouble("wrappingWidth"));
        }
        if(thing.valueExists("x")){
            node.setX(thing.getDouble("x"));
        }
        if(thing.valueExists("y")){
            node.setY(thing.getDouble("y"));
        }
        if(thing.valueExists("text")){
            String text = JavaFXUtils.getString(thing, "text", actionContext);
            if(text != null) {
                node.setText(text);
            }
        }
    }

    public static Text create(ActionContext actionContext){
        Thing self = actionContext.getObject("self");

        Text node = new Text();
        init(node, self, actionContext);
        actionContext.g().put(self.getMetadata().getName(), node);

        actionContext.peek().put("parent", node);
        for(Thing child : self.getChilds()){
            Object obj = child.doAction("create", actionContext);
            if(obj instanceof Font){
                node.setFont((Font) obj);
            }
        }

        return node;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy