SWT
-
Desktop Java
SWT ScrolledComposite Explained
Like a friend of mine once put it, SWTs ScrolledComposite is a nasty beast. And to some point I do…
Read More » -
Desktop Java
SWT Look and Feel: Customize FlatScrollBar Color and More
Recently I introduced a custom slider control useful for improving the SWT look and feel of more subtle view layouts.…
Read More » -
Desktop Java
Sacrilege – a Custom SWT Scrollbar
SWT is a thin abstraction layer on top of native OS widgets. Which is a very good thing if you…
Read More » -
Desktop Java
SWT Mouse Click Implementation
Doing a bit of SWT custom widget development lately, I stumbled across the question why is there no such thing…
Read More » -
Desktop Java
How to Safely Use SWT’s Display asyncExec
Most user interface (UI) toolkits are single-threaded and SWT is no exception. This means that UI objects must be accessed…
Read More » -
Core Java
Clean SWT Listener Notifcations with SWTEventHelper
Writing tests for SWT based UIs often requires to notify widget listeners programmatically. Unfortunately the code to create, initialize and…
Read More » -
Software Development
Responsive UIs with Eclipse and SWT
Recently I had the problem that my ‘well-conceived’ view design did not scale down reasonably. I realized that the flexibility…
Read More » -
Desktop Java
RichText editor component for SWT based applications
This article will go through the task of implementing our own RichText editor component with SWT. I faced the need…
Read More » -
Desktop Java
Integrating JavaFX 2.0 with Swing and SWT
One of the improvements in JavaFX with JavaFX 2.0 has been greater ease of interoperability with Swing and SWT. Several…
Read More »