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

xworker.javafx.control.ButtonActions Maven / Gradle / Ivy

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

import javafx.scene.control.Button;
import org.xmeta.ActionContext;
import org.xmeta.Thing;
import xworker.javafx.beans.property.PropertyFactory;

public class ButtonActions {
	static{
		PropertyFactory.regist(Button.class, "defaultButtonProperty", o -> {
			Button obj = (Button) o;
			return obj.defaultButtonProperty();
		});
		PropertyFactory.regist(Button.class, "cancelButtonProperty", o -> {
			Button obj = (Button) o;
			return obj.cancelButtonProperty();
		});
	}

	public static void init(Button button, Thing thing, ActionContext actionContext) {
		ButtonBaseActions.init(button, thing, actionContext);
		 
		 if(thing.valueExists("cancelButton")) {
			 button.setCancelButton(thing.getBoolean("cancelButton"));
		 }
		 
		 if(thing.valueExists("defaultButton")) {
			 button.setDefaultButton(thing.getBoolean("defaultButton"));
		 }
	}
	
	public static Button create(ActionContext actionContext) {
		Thing self = actionContext.getObject("self");
		
		Button button = new Button();
		init(button, self, actionContext);
		actionContext.g().put(self.getMetadata().getName(), button);
		
		actionContext.peek().put("parent", button);
		for(Thing child : self.getChilds()) {
			child.doAction("create", actionContext);
		}
		
		return button;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy