vote up 2 vote down star
2

Does someone know an open source project or code snippets, which demonstrate how to create a google-chrome like interface with similar tabs and toolbar in Swing?

I know, that I can use JTabbedPane, but I'm thinking of an interface which looks and feels very similar to the google chrome "tabbed browsing".

flag
Sounds like a neat project! – Allain Lalonde Jan 21 at 5:26

3 Answers

vote up 1 vote down check

You can probably pull it off with an undecorated JFrame (setUndecorated(true)) to get rid of the title bar.

You'd then create a layout with a tabbed pane filling the window and then overlay the min/max/close buttons on the top right.

If tabbed pane is too inflexible, you will need to put a button bar across the top, with toggle buttons controlling multiple content panels, and do the tab look yourself; as each button becomes active it hides the current panel and unhides the panel that belongs to it.

link|flag
vote up 0 vote down

I think you should opt to Substance LAF and make a Chrome-lookalike skin for it (Substance is a skinnable LAF which sort of extends Swing's functionality on the graphical side) and use that, won't be the easiest way to do it but if you have the time and willpower, you'll get exactly what you want.

link|flag
vote up 0 vote down

Look at this question (and its answers) too: JTabbedPane: Components before and after the tabs themselves.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.