Skip to content

Commit 5aac6fb

Browse files
committed
JavaFX - Binding
Sincronizar propiedades JavaFX usando Binding.
1 parent 75ed586 commit 5aac6fb

10 files changed

+5802
-0
lines changed

JavaFX-Enlaces/build.xml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?xml version="1.0" encoding="UTF-8"?><!-- You may freely edit this file. See commented blocks below for --><!-- some examples of how to customize the build. --><!-- (If you delete it and reopen the project it will be recreated.) --><!-- By default, only the Clean and Build commands use this build script. --><project name="JavaFX-Enlaces" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant">
2+
<description>Builds, tests, and runs the project JavaFX-Enlaces.</description>
3+
<import file="nbproject/build-impl.xml"/>
4+
<!--
5+
6+
There exist several targets which are by default empty and which can be
7+
used for execution of your tasks. These targets are usually executed
8+
before and after some main targets. Those of them relevant for JavaFX project are:
9+
10+
-pre-init: called before initialization of project properties
11+
-post-init: called after initialization of project properties
12+
-pre-compile: called before javac compilation
13+
-post-compile: called after javac compilation
14+
-pre-compile-test: called before javac compilation of JUnit tests
15+
-post-compile-test: called after javac compilation of JUnit tests
16+
-pre-jfx-jar: called before FX SDK specific <fx:jar> task
17+
-post-jfx-jar: called after FX SDK specific <fx:jar> task
18+
-pre-jfx-deploy: called before FX SDK specific <fx:deploy> task
19+
-post-jfx-deploy: called after FX SDK specific <fx:deploy> task
20+
-pre-jfx-native: called just after -pre-jfx-deploy if <fx:deploy> runs in native packaging mode
21+
-post-jfx-native: called just after -post-jfx-deploy if <fx:deploy> runs in native packaging mode
22+
-post-clean: called after cleaning build products
23+
24+
(Targets beginning with '-' are not intended to be called on their own.)
25+
26+
Example of inserting a HTML postprocessor after javaFX SDK deployment:
27+
28+
<target name="-post-jfx-deploy">
29+
<basename property="jfx.deployment.base" file="${jfx.deployment.jar}" suffix=".jar"/>
30+
<property name="jfx.deployment.html" location="${jfx.deployment.dir}${file.separator}${jfx.deployment.base}.html"/>
31+
<custompostprocess>
32+
<fileset dir="${jfx.deployment.html}"/>
33+
</custompostprocess>
34+
</target>
35+
36+
Example of calling an Ant task from JavaFX SDK. Note that access to JavaFX SDK Ant tasks must be
37+
initialized; to ensure this is done add the dependence on -check-jfx-sdk-version target:
38+
39+
<target name="-post-jfx-jar" depends="-check-jfx-sdk-version">
40+
<echo message="Calling jar task from JavaFX SDK"/>
41+
<fx:jar ...>
42+
...
43+
</fx:jar>
44+
</target>
45+
46+
For more details about JavaFX SDK Ant tasks go to
47+
http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm
48+
49+
For list of available properties check the files
50+
nbproject/build-impl.xml and nbproject/jfx-impl.xml.
51+
52+
-->
53+
</project>

JavaFX-Enlaces/manifest.mf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
X-COMMENT: Main-Class will be added automatically by build
3+

JavaFX-Enlaces/nbproject/build-impl.xml

+1,414
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Do not modify this property in this configuration. It can be re-generated.
2+
$label=Run as WebStart
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Do not modify this property in this configuration. It can be re-generated.
2+
$label=Run in Browser
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
build.xml.data.CRC32=3b78f30d
2+
build.xml.script.CRC32=adf986c8
3+
build.xml.stylesheet.CRC32=8064a381@1.75.2.48
4+
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5+
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6+
nbproject/build-impl.xml.data.CRC32=3b78f30d
7+
nbproject/build-impl.xml.script.CRC32=5630e829
8+
nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48

JavaFX-Enlaces/nbproject/jfx-impl.xml

+4,007
Large diffs are not rendered by default.
+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
annotation.processing.enabled=true
2+
annotation.processing.enabled.in.editor=false
3+
annotation.processing.processor.options=
4+
annotation.processing.processors.list=
5+
annotation.processing.run.all.processors=true
6+
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
7+
application.title=JavaFX-Enlaces
8+
application.vendor=Carmelo Mar\u00edn Abrego
9+
build.classes.dir=${build.dir}/classes
10+
build.classes.excludes=**/*.java,**/*.form
11+
# This directory is removed when the project is cleaned:
12+
build.dir=build
13+
build.generated.dir=${build.dir}/generated
14+
build.generated.sources.dir=${build.dir}/generated-sources
15+
# Only compile against the classpath explicitly listed here:
16+
build.sysclasspath=ignore
17+
build.test.classes.dir=${build.dir}/test/classes
18+
build.test.results.dir=${build.dir}/test/results
19+
compile.on.save=true
20+
compile.on.save.unsupported.javafx=true
21+
# Uncomment to specify the preferred debugger connection transport:
22+
#debug.transport=dt_socket
23+
debug.classpath=\
24+
${run.classpath}
25+
debug.test.classpath=\
26+
${run.test.classpath}
27+
# This directory is removed when the project is cleaned:
28+
dist.dir=dist
29+
dist.jar=${dist.dir}/JavaFX-Enlaces.jar
30+
dist.javadoc.dir=${dist.dir}/javadoc
31+
endorsed.classpath=
32+
excludes=
33+
includes=**
34+
# Non-JavaFX jar file creation is deactivated in JavaFX 2.0+ projects
35+
jar.archive.disabled=true
36+
jar.compress=false
37+
javac.classpath=\
38+
${javafx.classpath.extension}
39+
# Space-separated list of extra javac options
40+
javac.compilerargs=
41+
javac.deprecation=false
42+
javac.processorpath=\
43+
${javac.classpath}
44+
javac.source=1.8
45+
javac.target=1.8
46+
javac.test.classpath=\
47+
${javac.classpath}:\
48+
${build.classes.dir}
49+
javac.test.processorpath=\
50+
${javac.test.classpath}
51+
javadoc.additionalparam=
52+
javadoc.author=false
53+
javadoc.encoding=${source.encoding}
54+
javadoc.noindex=false
55+
javadoc.nonavbar=false
56+
javadoc.notree=false
57+
javadoc.private=false
58+
javadoc.splitindex=true
59+
javadoc.use=true
60+
javadoc.version=false
61+
javadoc.windowtitle=
62+
javafx.application.implementation.version=1.0
63+
javafx.binarycss=false
64+
javafx.classpath.extension=\
65+
${java.home}/lib/javaws.jar:\
66+
${java.home}/lib/deploy.jar:\
67+
${java.home}/lib/plugin.jar
68+
javafx.deploy.allowoffline=true
69+
# If true, application update mode is set to 'background', if false, update mode is set to 'eager'
70+
javafx.deploy.backgroundupdate=false
71+
javafx.deploy.embedJNLP=true
72+
javafx.deploy.includeDT=true
73+
# Set true to prevent creation of temporary copy of deployment artifacts before each run (disables concurrent runs)
74+
javafx.disable.concurrent.runs=false
75+
# Set true to enable multiple concurrent runs of the same WebStart or Run-in-Browser project
76+
javafx.enable.concurrent.external.runs=false
77+
# This is a JavaFX project
78+
javafx.enabled=true
79+
javafx.fallback.class=com.javafx.main.NoJavaFXFallback
80+
# Main class for JavaFX
81+
javafx.main.class=javafx.enlaces.JavaFXEnlaces
82+
javafx.preloader.class=
83+
# This project does not use Preloader
84+
javafx.preloader.enabled=false
85+
javafx.preloader.jar.filename=
86+
javafx.preloader.jar.path=
87+
javafx.preloader.project.path=
88+
javafx.preloader.type=none
89+
# Set true for GlassFish only. Rebases manifest classpaths of JARs in lib dir. Not usable with signed JARs.
90+
javafx.rebase.libs=false
91+
javafx.run.height=600
92+
javafx.run.width=800
93+
# Pre-JavaFX 2.0 WebStart is deactivated in JavaFX 2.0+ projects
94+
jnlp.enabled=false
95+
# Main class for Java launcher
96+
main.class=com.javafx.main.Main
97+
# For improved security specify narrower Codebase manifest attribute to prevent RIAs from being repurposed
98+
manifest.custom.codebase=*
99+
# Specify Permissions manifest attribute to override default (choices: sandbox, all-permissions)
100+
manifest.custom.permissions=
101+
manifest.file=manifest.mf
102+
meta.inf.dir=${src.dir}/META-INF
103+
platform.active=default_platform
104+
run.classpath=\
105+
${dist.jar}:\
106+
${javac.classpath}:\
107+
${build.classes.dir}
108+
run.test.classpath=\
109+
${javac.test.classpath}:\
110+
${build.test.classes.dir}
111+
source.encoding=UTF-8
112+
src.dir=src
113+
test.src.dir=test

JavaFX-Enlaces/nbproject/project.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://www.netbeans.org/ns/project/1">
3+
<type>org.netbeans.modules.java.j2seproject</type>
4+
<configuration>
5+
<buildExtensions xmlns="http://www.netbeans.org/ns/ant-build-extender/1">
6+
<extension file="jfx-impl.xml" id="jfx3">
7+
<dependency dependsOn="-jfx-copylibs" target="-post-jar"/>
8+
<dependency dependsOn="-rebase-libs" target="-post-jar"/>
9+
<dependency dependsOn="jfx-deployment" target="-post-jar"/>
10+
<dependency dependsOn="jar" target="debug"/>
11+
<dependency dependsOn="jar" target="profile"/>
12+
<dependency dependsOn="jar" target="run"/>
13+
</extension>
14+
</buildExtensions>
15+
<data xmlns="http://www.netbeans.org/ns/j2se-project/3">
16+
<name>JavaFX-Enlaces</name>
17+
<source-roots>
18+
<root id="src.dir"/>
19+
</source-roots>
20+
<test-roots>
21+
<root id="test.src.dir"/>
22+
</test-roots>
23+
</data>
24+
</configuration>
25+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
package javafx.enlaces;
2+
3+
import javafx.application.Application;
4+
import javafx.beans.binding.Bindings;
5+
import javafx.beans.binding.DoubleBinding;
6+
import javafx.beans.binding.NumberBinding;
7+
import javafx.geometry.Insets;
8+
import javafx.scene.Parent;
9+
import javafx.scene.Scene;
10+
import javafx.scene.control.Button;
11+
import javafx.scene.control.Label;
12+
import javafx.scene.control.ListView;
13+
import javafx.scene.control.PasswordField;
14+
import javafx.scene.control.ProgressBar;
15+
import javafx.scene.control.Slider;
16+
import javafx.scene.control.Spinner;
17+
import javafx.scene.control.SpinnerValueFactory.DoubleSpinnerValueFactory;
18+
import javafx.scene.control.TextField;
19+
import javafx.scene.layout.ColumnConstraints;
20+
import javafx.scene.layout.GridPane;
21+
import javafx.scene.layout.Priority;
22+
import javafx.scene.layout.VBox;
23+
import javafx.stage.Stage;
24+
25+
public class JavaFXEnlaces extends Application {
26+
27+
@Override
28+
public void start(Stage primaryStage) {
29+
30+
Scene scene = new Scene(createAreaBind());
31+
32+
primaryStage.setTitle("JavaFX Boolean Binding");
33+
primaryStage.setScene(scene);
34+
primaryStage.show();
35+
}
36+
37+
private Parent createConvertBind() {
38+
39+
Label lbl = new Label("Conversor de longitud, en Pies:");
40+
lbl.setStyle("-fx-font-size: 18;");
41+
42+
Slider sliderPies = new Slider(0, 100, 0);
43+
sliderPies.setShowTickMarks(true);
44+
sliderPies.setShowTickLabels(true);
45+
46+
NumberBinding pulgadas = sliderPies.valueProperty().multiply(12);
47+
NumberBinding metros = sliderPies.valueProperty().multiply(.3048);
48+
49+
TextField txtPulgadas = new TextField();
50+
txtPulgadas.textProperty().bind(pulgadas.asString("En pulgadas: %.2f"));
51+
52+
TextField txtMetros = new TextField();
53+
txtMetros.textProperty().bind(metros.asString("En metros: %.2f"));
54+
55+
VBox root = new VBox(lbl, sliderPies, txtMetros, txtPulgadas);
56+
root.setPadding(new Insets(10.0));
57+
root.setSpacing(10.0);
58+
59+
return root;
60+
}
61+
62+
private Parent createBooleanBind() {
63+
64+
Label lblNombre = new Label("Nombre");
65+
Label lblContrasena = new Label("Contrasena");
66+
67+
TextField tfNombre = new TextField();
68+
PasswordField tfContrasena = new PasswordField();
69+
70+
Button btnEntrar = new Button("Entrar");
71+
btnEntrar.setMaxWidth(Double.MAX_VALUE);
72+
73+
btnEntrar.disableProperty().bind(
74+
tfNombre.textProperty().isEmpty().or(
75+
tfContrasena.textProperty().isEmpty()));
76+
77+
GridPane.setColumnSpan(btnEntrar, 2);
78+
79+
GridPane root = new GridPane();
80+
root.setPadding(new Insets(10.0));
81+
root.add(lblNombre, 0, 0);
82+
root.add(lblContrasena, 0, 1);
83+
root.add(tfNombre, 1, 0);
84+
root.add(tfContrasena, 1, 1);
85+
root.add(btnEntrar, 0, 2);
86+
root.setHgap(10.0);
87+
root.setVgap(5.0);
88+
89+
ColumnConstraints column1 = new ColumnConstraints();
90+
91+
ColumnConstraints column2 = new ColumnConstraints(350, 100, Double.MAX_VALUE);
92+
column2.setHgrow(Priority.ALWAYS);
93+
94+
root.getColumnConstraints().addAll(column1, column2);
95+
96+
return root;
97+
}
98+
99+
private Parent createAreaBind() {
100+
101+
Spinner<Double> sbBase = new Spinner(new DoubleSpinnerValueFactory(0, 100, 50.5));
102+
Spinner<Double> sbAltura = new Spinner(new DoubleSpinnerValueFactory(0, 100, 20.5));
103+
104+
DoubleBinding base = Bindings.selectDouble(sbBase, "valueFactory", "value");
105+
DoubleBinding altura = Bindings.selectDouble(sbAltura, "valueFactory", "value");
106+
107+
NumberBinding area = Bindings.multiply(base, altura);
108+
109+
TextField txt = new TextField();
110+
txt.textProperty().bind(area.asString("Area del rectangulo: %.2f"));
111+
112+
TextField txt0 = new TextField();
113+
txt0.textProperty().bind(area.divide(2.0).asString("Area del triangulo: %.2f"));
114+
115+
VBox root = new VBox(sbBase, sbAltura, txt, txt0);
116+
root.setPadding(new Insets(10.0));
117+
root.setSpacing(10.0);
118+
119+
return root;
120+
}
121+
122+
private Parent createCounterBind() {
123+
124+
ListView<Integer> lv = new ListView<>();
125+
lv.getItems().addAll(1, 2, 3, 4, 5);
126+
127+
String txt = "Elemento seleccionado: %d";
128+
129+
Label lbl = new Label();
130+
lbl.textProperty().bind(lv.getSelectionModel()
131+
.selectedItemProperty().asString(txt));
132+
133+
VBox root = new VBox(lbl, lv);
134+
root.setPadding(new Insets(10.0));
135+
root.setSpacing(10.0);
136+
137+
return root;
138+
}
139+
140+
private Parent createSimpleBidirectionalBind() {
141+
142+
TextField tf_1 = new TextField();
143+
TextField tf_2 = new TextField();
144+
145+
tf_1.textProperty().bindBidirectional(tf_2.textProperty());
146+
147+
VBox root = new VBox(tf_1, tf_2);
148+
root.setPadding(new Insets(10.0));
149+
root.setSpacing(10.0);
150+
151+
return root;
152+
}
153+
154+
private VBox createSimpleBind() {
155+
Slider slider = new Slider(0, 1, 0);
156+
157+
ProgressBar bar = new ProgressBar(0);
158+
bar.setMaxWidth(Double.MAX_VALUE);
159+
bar.progressProperty().bind(slider.valueProperty());
160+
161+
bar.progressProperty().unbind();
162+
bar.progressProperty().set(0.5);
163+
164+
VBox root = new VBox(slider, bar);
165+
root.setPadding(new Insets(10.0));
166+
root.setSpacing(10.0);
167+
168+
return root;
169+
}
170+
171+
public static void main(String[] args) {
172+
launch(args);
173+
}
174+
175+
}

0 commit comments

Comments
 (0)