Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Efxclipse/SWTonFX"

(Components)
(Components)
Line 32: Line 32:
 
<tr>
 
<tr>
 
   <td>Text</td>
 
   <td>Text</td>
   <td></td>
+
   <td bgcolor="lightgreen"></td>
 
   <td>Main methods done</td>
 
   <td>Main methods done</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>
 
   <td>Button</td>
 
   <td>Button</td>
   <td></td>
+
   <td bgcolor="lightgreen"></td>
   <td></td>
+
   <td>Main methods done</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>
Line 47: Line 47:
 
<tr>
 
<tr>
 
   <td>Table</td>
 
   <td>Table</td>
   <td></td>
+
   <td bgcolor="yellow"></td>
 
   <td>SWT.EarseItem not supported</td>
 
   <td>SWT.EarseItem not supported</td>
 
</tr>
 
</tr>
Line 55: Line 55:
 
   <td>TreeTable support is missing, SWT.EarseItem not supported</td>
 
   <td>TreeTable support is missing, SWT.EarseItem not supported</td>
 
</tr>
 
</tr>
 
 
<tr>
 
<tr>
 
   <td>CTabFolder</td>
 
   <td>CTabFolder</td>
   <td></td>
+
   <td bgcolor="yellow"></td>
 
   <td>Initial version working</td>
 
   <td>Initial version working</td>
 
</tr>
 
</tr>
 
</table>
 
</table>

Revision as of 18:56, 15 January 2014


What is it

SWT on JavaFX is an experimental SWT port sitting on top of JavaFX. It's main task is to built a compat story to move the Eclipse IDE away from SWT to JavaFX.

How to contribute

Contributions

Generally speaking any contribution is welcome. An easy way to contribute is to port one of the SWT-Snippets http://www.eclipse.org/swt/snippets/ to the at.bestsolution.efxclipse.runtime.examples.swt-bundle. The code currently holds a lot of calls to Util.logNotImplemented() track them down and implement them so that they do the same as they do in the other SWT ports

Components

Component Status Remarks
Text Main methods done
Button Main methods done
Spinner JavaFX control missing
Table SWT.EarseItem not supported
Tree TreeTable support is missing, SWT.EarseItem not supported
CTabFolder Initial version working

Back to the top