Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. #Check out GFW from CVS into Eclipse.
  2. #Read and run the example code.
  3. #Create custom components for the desired GFW frame
  4. #Customize GFW.
  5. #Test the application.
  6. Optional features.
  7. #Tips.

Check out GFW from CVS into Eclipse

...

See also http://java.sun.com/docs/books/tutorial/uiswing/components/splitpane.html.

Make split-pane divider disappear

It seems to be an undocumented feature, but here is how you can make the split-pane divider disappear:

Code Block

splitPane.setDividerSize(-1);

SwingUtil

Tips

  • When adding to the GUI some long text that doesn't fit, update the frame, e.g.
    Code Block
    BasicFrame myFrame = ...;
    myFrame.validate(); //run in the GUI thread