Search Results

0
votes

How do you make a Swing/JFace/SWT GUI addressable?

My last approach included global manager and registration of links. Each part of UI was able to name yourself uniquely and register. The global manager knows about each one and then use some dirty …
0
votes

JTable updates not appearing

This is weird problem. You said that DataTableModel implements TableModel. So. If you does not use abstract class the problem should be in the way how you are handling the …
0
votes

Is XML or XUL the future of Java GUI building?

I do all my swing stuff by hand and none of my application is nasty. If you do not know how to create usable and good looking UI there is no technology to help you. …
1
vote

How to do smooth scrolling for lists in Swing

If you are using JList try overwrite getScrollableUnitIncrement(Rectangle, int, int) and getScrollableBlockIncrement(Rectangle, int, int) to return custom i …
0
votes

Swing: What is a good way to implement fully-scalable components?

If I look at this problem as visual UML editor then I had to think about single "canvas" component drawing each element as graphical object with base aspect ration and zooming in/out. I can't see r …