hg: openjfx/8u-dev/rt: RT-25980 Add Window setUserData and user data to other non-Node classes

2014-08-12 Thread martin . sladecek
Changeset: 7ec4725320d0
Author:Martin Sladecek 
Date:  2014-08-12 09:55 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/7ec4725320d0

RT-25980 Add Window setUserData and user data to other non-Node classes
Reviewed by: kcr, snorthov
Contributed by: tom.schi...@bestsolution.at

! modules/controls/src/main/java/javafx/scene/control/ToggleGroup.java
! modules/controls/src/test/java/javafx/scene/control/ToggleGroupTest.java
! modules/graphics/src/main/java/javafx/scene/Scene.java
! modules/graphics/src/main/java/javafx/stage/Window.java
! modules/graphics/src/test/java/javafx/scene/SceneTest.java
! modules/graphics/src/test/java/javafx/stage/WindowTest.java



hg: openjfx/8u-dev/rt: RT-33696 RTL orientation, submenu overlaps its parent menu.

2014-08-12 Thread martin . sladecek
Changeset: 42903ea10084
Author:Martin Sladecek 
Date:  2014-08-12 10:00 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/42903ea10084

RT-33696 RTL orientation, submenu overlaps its parent menu.
Reviewed by: snorthov, kcr

! modules/controls/src/main/java/javafx/scene/control/PopupControl.java



hg: openjfx/8u-dev/rt: RT-37798 [Charts] Series: NPE when adding data items after deletion of data

2014-08-12 Thread martin . sladecek
Changeset: a7f7ec1bc33f
Author:Martin Sladecek 
Date:  2014-08-12 10:04 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/a7f7ec1bc33f

RT-37798 [Charts] Series: NPE when adding data items after deletion of data
Reviewed by: jgiles

! modules/controls/src/main/java/javafx/scene/chart/XYChart.java
! modules/controls/src/test/java/javafx/scene/chart/XYChartDataTest.java



hg: openjfx/8u-dev/rt: RT-37149: [SwingNode, DND] : drag-and-drop does not work

2014-08-12 Thread anthony . petrov
Changeset: 14063a5dd1e1
Author:Anthony Petrov 
Date:  2014-08-12 14:36 +0400
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/14063a5dd1e1

RT-37149: [SwingNode, DND] : drag-and-drop does not work
Summary: Implement DnD for SwingNode
Reviewed-by: ant

+ modules/swing/src/main/java/javafx/embed/swing/CachingTransferable.java
! modules/swing/src/main/java/javafx/embed/swing/DataFlavorUtils.java
+ modules/swing/src/main/java/javafx/embed/swing/FXDnD.java
! modules/swing/src/main/java/javafx/embed/swing/SwingDnD.java
! modules/swing/src/main/java/javafx/embed/swing/SwingDragSource.java
! modules/swing/src/main/java/javafx/embed/swing/SwingFXUtils.java
! modules/swing/src/main/java/javafx/embed/swing/SwingNode.java



hg: openjfx/8u-dev/rt: RT-38238 unmodifiableObservableMap.entrySet() provides entries in wrong order

2014-08-12 Thread martin . sladecek
Changeset: 2326aecdf8b0
Author:Martin Sladecek 
Date:  2014-08-12 12:39 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/2326aecdf8b0

RT-38238 unmodifiableObservableMap.entrySet() provides entries in wrong order

! 
modules/base/src/main/java/com/sun/javafx/collections/UnmodifiableObservableMap.java
! modules/base/src/test/java/javafx/collections/FXCollectionsTest.java



hg: openjfx/8u-dev/rt: RT-38138: -fx-spacing used wrong in .menubar in modena.css

2014-08-12 Thread david . grieve
Changeset: e5dccbae218a
Author:David Grieve
Date:  2014-08-12 08:03 -0400
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/e5dccbae218a

RT-38138: -fx-spacing used wrong in .menubar in modena.css
Reviewed by: kcr

! 
modules/controls/src/main/java/com/sun/javafx/scene/control/skin/MenuBarSkin.java



hg: openjfx/8u-dev/rt: [SCENEBUILDER] Fix for DTL-6746: Text Fill of Label change color the "#" hexadecimal color interpreted as event build method ...

2014-08-12 Thread yves . joan
Changeset: 7c4cb2f851ab
Author:yjoan
Date:  2014-08-12 15:43 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/7c4cb2f851ab

[SCENEBUILDER] Fix for DTL-6746: Text Fill of Label change color the "#" 
hexadecimal color interpreted as event build method ...

! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/fxom/FXOMInstance.java



Re: Bundle native libraries for Mac for JNA & JNI...

2014-08-12 Thread Danno Ferrin
I think that is right.  We set java.library.path in the launcher to be 
/Contents/Java/ prior to launch.  So I would include the libraries in 
the same way the jars and other assets are listed.

On Aug 10, 2014, at 9:20 PM, Tony Anecito  wrote:

> Ok. I think the native libraries should be placed under MacOS folder in the 
> app file say under a folder structure I define so my code can find it using a 
> jna native call.
>  
> Iam still researhing it some more tonight.
>  
> Thanks,
> -Tony 
> 
> 
> On Sunday, August 10, 2014 9:09 AM, Tony Anecito  wrote:
> 
> 
> 
> Hi All,
> 
> I need to bundle Mac native libraries so that JNA and JNI can find them. I 
> can not bundle inside a jar since JNA will not find them. But I want the 
> native libraries to be found inside the .app file say in a lib folder.
> Anyone know how to do that using javafx deploy ant scripts? Is there some 
> special directory I have to setup like I do for icns?
> 
> Thanks!
> -Tony



hg: openjfx/8u-dev/rt: [SCENEBUILDER] Added FXOMObject.lookupFirstReference() method (to be used for DTL-6774).

2014-08-12 Thread eric . le . ponner
Changeset: 340aba2d2506
Author:Eric Le Ponner 
Date:  2014-08-12 18:03 +0200
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/340aba2d2506

[SCENEBUILDER] Added FXOMObject.lookupFirstReference() method (to be used for 
DTL-6774).

! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/fxom/FXOMCollection.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/fxom/FXOMInstance.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/fxom/FXOMIntrinsic.java
! 
apps/scenebuilder/SceneBuilderKit/src/com/oracle/javafx/scenebuilder/kit/fxom/FXOMObject.java



hg: openjfx/8u-dev/rt: RT-37959: [Accessibility] Review a11y enums

2014-08-12 Thread felipe . heidrich
Changeset: c0f091376dbf
Author:Felipe Heidrich 
Date:  2014-08-12 13:46 -0700
URL:   http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/c0f091376dbf

RT-37959: [Accessibility] Review a11y enums
Remove PAGES and TABS
Use ITEM_COUNT and ITEM_AT_INDEX for ListView, Pagination, and TabPane.

! 
modules/controls/src/main/java/com/sun/javafx/scene/control/skin/ListViewSkin.java
! 
modules/controls/src/main/java/com/sun/javafx/scene/control/skin/PaginationSkin.java
! 
modules/controls/src/main/java/com/sun/javafx/scene/control/skin/TabPaneSkin.java
! modules/controls/src/main/java/javafx/scene/control/ListView.java
! modules/graphics/src/main/java/com/sun/glass/ui/mac/MacAccessible.java
! modules/graphics/src/main/java/javafx/scene/AccessibleAttribute.java
! modules/graphics/src/main/java/javafx/scene/AccessibleRole.java