[gplanner~source-code-repository:7] (Commit message missing)
- From: glarian@kenai.com
- To: commits@gplanner.kenai.com
- Subject: [gplanner~source-code-repository:7] (Commit message missing)
- Date: Tue, 10 Nov 2009 14:43:27 +0000
Project: gplanner
Repository: source-code-repository
Revision: 7
Author: glarian
Date: 2009-11-10 14:43:25 UTC
Link:
Log Message:
------------
Revisions:
----------
7
Modified Paths:
---------------
GPlanner/src/gplanner/Main.fx
GPlanner/nbproject/project.properties
Added Paths:
------------
GPlanner/src/gplanner/uicomponents/InputText.fx
GPlanner/src/gplanner/uicomponents
Diffs:
------
Index: GPlanner/nbproject/project.properties
===================================================================
--- GPlanner/nbproject/project.properties (revision 6)
+++ GPlanner/nbproject/project.properties (revision 7)
@@ -2,6 +2,7 @@
applet.height=200
applet.width=200
application.title=GPlanner
+application.vendor=sunkim
build.classes.excludes=**/*.java,**/*.form,**/*.fx
build.classpath=\
${javac.classpath}:\
@@ -31,9 +32,10 @@
javadoc.author=true
javadoc.encoding=
javadoc.private=true
-javadoc.version=false
+javadoc.version=true
javafx.profile=desktop
jnlp.codebase.type=local
+jnlp.codebase.url=file:/D:/JavaFX/GPlanner/dist/
jnlp.offline-allowed=true
jnlp.packEnabled=false
jnlp.signed=false
@@ -42,7 +44,7 @@
platform.active=default_fx_platform
run.classpath=\
${javac.classpath}:\
- ${build.classes.dir}:
+ ${build.classes.dir}
# Space-separated list of JVM arguments used when running the project
# (you may also define separate properties like run-sys-prop.name=value
instead of -Dname=value
# or test-sys-prop.name=value to set system properties for unit tests):
Index: GPlanner/src/gplanner/InputText.fx
===================================================================
--- GPlanner/src/gplanner/InputText.fx (revision 6)
+++ GPlanner/src/gplanner/InputText.fx (revision 7)
@@ -1,49 +0,0 @@
-/*
- * InputText.fx
- *
- * Created on 2009. 10. 21, 오후 6:01:28
- */
-
-package gplanner;
-import javafx.scene.Group;
-import javafx.scene.Node;
-
-import javafx.scene.CustomNode;
-
-import javafx.scene.control.TextBox;
-import javafx.scene.layout.HBox;
-import javafx.scene.text.Font;
-import javafx.scene.text.Text;
-import javafx.ext.swing.SwingTextField;
-/**
- * @author sunkim
- */
-
-public class InputText extends CustomNode {
- public override function create(): Node {
- return Group {
-content: [
- HBox{
-
- spacing: 10
- content: [
- Text {
- font : Font {
- size : 16
- }
- x: 10
- y: 30
- content: "Application content"
- }
- SwingTextField {
- columns: 10
- text: "TextField"
- editable: true
- }
-
- ]
- }
- ]
- }
-}
-}
\ No newline at end of file
Index: GPlanner/src/gplanner/Main.fx
===================================================================
--- GPlanner/src/gplanner/Main.fx (revision 6)
+++ GPlanner/src/gplanner/Main.fx (revision 7)
@@ -8,9 +8,6 @@
import javafx.stage.Stage;
import javafx.scene.Scene;
-import javafx.scene.text.Text;
-import javafx.scene.text.Font;
-import javafx.scene.control.TextBox;
import javafx.scene.layout.VBox;
@@ -26,9 +23,9 @@
content: [
VBox {
content: [
- InputText {}
- InputText {}
- InputText {}
+ gplanner.uicomponents.InputText {}
+ gplanner.uicomponents.InputText {}
+ gplanner.uicomponents.InputText {}
]
}
Index: GPlanner/src/gplanner/uicomponents/InputText.fx
===================================================================
--- GPlanner/src/gplanner/uicomponents/InputText.fx (revision 0)
+++ GPlanner/src/gplanner/uicomponents/InputText.fx (revision 7)
@@ -0,0 +1,46 @@
+/*
+ * InputText.fx
+ *
+ * Created on 2009. 10. 21, 오후 6:01:28
+ */
+
+package gplanner.uicomponents;
+import javafx.scene.Group;
+import javafx.scene.Node;
+
+import javafx.scene.CustomNode;
+
+import javafx.scene.control.TextBox;
+import javafx.scene.layout.HBox;
+import javafx.scene.text.Font;
+import javafx.scene.text.Text;
+/**
+ * @author sunkim
+ */
+
+public class InputText extends CustomNode {
+ public override function create(): Node {
+ return Group {
+ content: [
+ HBox{
+ spacing: 10
+ content: [
+ Text {
+ font : Font {
+ size : 16
+ }
+ x: 10
+ y: 30
+ content: "Application content"
+ }
+ TextBox {
+ text: "SampleText"
+ columns: 12
+ selectOnFocus: true
+ }
+ ]
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
|
[gplanner~source-code-repository:7] (Commit message missing) |
glarian | 11/10/2009 |





