What is the status of SwingLabs (SwingX) post acquisition [closed]

New Update (Based on Comments) As indicated by @kleopatra (core member of the Swing Labs team) the project is dead. Since java.net is no longer available this seems to be dead. If you still want to use it @emmanuel-bourg referenced this mirror https://github.com/ebourg/swingx and this one https://github.com/RockManJoe64/swingx Older Update SwingX 1.6.5-1 is released (actually, a … Read more

Filtering on a JTree [closed]

Take a look at this implementation: http://www.java2s.com/Code/Java/Swing-Components/InvisibleNodeTreeExample.htm It creates subclasses of DefaultMutableNode adding a “isVisible” property rather then actually removing/adding nodes from the TreeModel. Pretty sweet I think, and it solved my filtering problem neatly.

Choosing a file in-pane with Swing

PanelBrowser, shown below, is a basic prototype that functions similarly to the Mac OS X Finder column view illustrated in your question. Update: Added horizontal scrolling and more file information. import java.awt.Color; import java.awt.Component; import java.awt.Dimension; import java.awt.EventQueue; import java.awt.GridLayout; import java.io.File; import java.text.DateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; import javax.swing.Box; import javax.swing.BoxLayout; import … Read more