I made this in Photoshop and I plan to use it for my file sharing application:
I was wondering if it was possible to create GUI for my application that is gonna
Creating new LaF is too much. Since all your JButtons are different, just use JButton.setIcon()
and JButton.setPressedIcon()
and use your images. The rest is loading background and using strange fonts. Use Font.createFont() to load custom fonts. You'll probably have to draw your own JProgressbar. Override JProgressBar.paintComponent(Graphics g)
and draw your own image.