Create an application GUI by Javafx - eclipse

everyone.
My name is Nick, a totally newbie to Javafx. Recently, our team has been running a project and we would love making GUI by Javafx. I am being stuck at the moment. The following is what's in our imagination:
After reading some documentations, here what I've got:
I really appreciate if someone could help give me some hints to get things done. This is an academic project. Thanks so much for your valuable time.
Best Regards

I would recommend using Scenebuilder tool. It is a WYSIWYG GUI editor provided especially for the purposes like yours.

Look at this links.. using this you don't want design manually.. with netbeans you can design just by drag and drop content what you want.
Scene builder is also good tool to design your system at a stretch.
JavaFX Scene Builder
A Visual Layout Tool for JavaFX Applications
First of all take a look at this. so you can get through easily in javaFX.
Java GUI Applications Learning Trail
After looking all this.. then any problem occurs then ask here..
Thanks..

Related

Porting wxPython to SWT/JFace

I use some nice controls/widgets in a simple wxPython app I developed taking inspiration from the sample demo. Call it my prototype.
I am now ready to migrate my prototype to Java/SWT.
Some controls are just not there.. or.. at least.. I could not find them.
Is there anything else in the FOSS world of SWT apart from the usual:
SWT/JFace
Nebula
Opal
For a while I did not know about Nebula nor Opal at all. Now I do. At least you know I have done some legwork before coming here. Could it be that I am still oblivious to some fundamental set of extensions to the core SWT?
What I am doing right now is building a table, on the left - controls I use from wxPython, on the right - equivalent controls I'll use in Java/SWT.
The right column still has some gaping blanks..
From the screenshots in wxWidgets I didn't saw anything, that is in SWT missing. If you share the gaps, we might be able to help you to find the right tool for you. There are many frameworks that contribute specific UI, that might be used. For example GEF,BIRT or Zest.

Eclipse RCP - good Eclipse Forms tutorial/resource

I'm looking for resources to learn how to use effectively Eclipse forms within an Eclipse RCP application. I was trying to use the newest SWT Window Builder plugin on Indigo but building forms this way doesn't really work for me eg. cannot put anything inside expandable composite etc. (I have Swing background with Netbeans designer) and I'm new to SWT.
All I can find so far is this quite old tutorial from 2005.
Any help, point to good tutorial/book/source code sample will be highly appreciated.
I've found http://www.vogella.de/ to be invaluable.
Not much changed actually since the old 2005 tutorial so it's still very usable.
Check these out in addition too:
Eclipse Forms: New in 3.3
DeveloperWorks article on making forms Web-like
Cheers,
Max
I've also got the hint to start with vogella but after the first 2 topics I realized It's to hard to start with.
What helped me much more was to create each example/sample project and look for the source. Once you understood how all works you can lookup at vogella what you exactly need.

drag and drop environment to start developing in gwt

is there any drag and drop environment to work with GWT widgets.
or any user friendly IDE or plugin on IDE's
i remember using some thing like MyEclips for developing Hibernate was better then working with .xml files.
The Eclipse-based WindowBuilder Pro supports GWT and is now free, courtesy of Google.
I tried GWT Designer, http://code.google.com/webtoolkit/tools/gwtdesigner/index.html, but I think for now I'll stick to code the guis myself by hand.
The main reasons are:
Sometimes, it takes a little while (longer than I can wait) to load the design mode.
Sometimes it breaks after you modify code underneath.
Sometimes, does not do what you expect it to do.
I would suggest you giving it a try and see if it works out for your needs.
In my opinion, the experience using it has been frustrating than encouraging.

How to launch minimal eclipse?

This my seem a little odd but I want to start eclipse (v3.5) in the most minimal version possible. Pherhaps just the core and the ui component without anything else. I'm new to eclipse Plugin Development so I don't really know if this is possible at all?
I googled this topic but there seems to be no useful info out there. Perhaps someone can help me...
Thanks
I found the solution. On this webpage in Section 3 "Create your first RCP application". There a minimal application based on the Extensions
org.eclipse.core.runtime.apllications
org.eclipse.ui.perspectives
is created.

Good idea / Bad idea (/other ideas ?)

I have recently been asked to make an Eclipse Rcp view that would be "pretty".
In that purpose I had fist looked at Java2D (after my boss advised me so) before the client's query turned to be more like
"It would be smooth if you could do some flash or something ..."
From there JavaFx seemed appealing to me however I never had a chance to use it before. I then were wondering if before to dive "head first" anyone (who would have preferably used it seriously) had any advice, warning or any constructive comment to do about using this product in an RCP view (so based on SWT).
I really long to know if JavaFx meets it's promises.
Thanks in advance and have a good day !
[EDIT]I dont want an Eclipse Fancy skinning or to make views appear with light effects or in a CompizFusion way,
What I want is to display fancy animations and pretty visual effects within a specific view that will be called sometimes. (Sorry I wasn't clear in the first place :s)[/EDIT]
*I'll pass on the "What's pretty and what's not ?" and other "Tastes are a personnal thing" debates, here "pretty" simply means to qualify a view containing convoluted transparancies and subtle animations ...
Eclipse RCP can also be customized in the way it looks, e.g. when you dont want to have the Eclipsi-L&F. Its called Presentation API, I saw a quite amazing UI once in a presentation but I cannot find it right now. Anyway, I just want to point you the direction, since I personally havent used this API (yet).
There are also some "skins" available for download.
Nebula
MP3 Manager
EDIT: Just found the slides. It goes quite into detail, but when you have a look at the last slide...it doesnt look like the Eclipse you know :-)
JavaFX uses Swing as default layout engine, so you'll gain nothing using it rather than Java2D.
On the other hand, using either your home-grown toolkit or Swing is generally a bad idea when working with Eclipse, as it already embeds the SWT toolkit. The main advantage of SWT over Swing is that it use the OS native widgets. Using another toolkit will lead to the following issues:
Poor integration with Eclipse look&feel.
Poor integration with Eclipse views and editors management.
The answer is simple. No, you can't use JavaFX yet. The problem is that JFX script can't be embedded into Swing nor Eclipse SWT. We already know about such an issues. (The is some kind of hack how to embed JFX into Swing APP only.)