vote up 1 vote down star

Hi all. I'm making a AWT GUI for a simulation game. I have only been working with java for 2 years, and so have limited experience with building more complex GUIs. I have done a few simple ones, hard coded, and tried jigloo in eclipse. I am thinking of using MIG Layout, although some say I should really try and use jigloo more, or another GUI builder. I have designed the main game aspects, with a bar at the bottom. Right now it just has a few buttons which I've been using to test elements of the game. Obviously I need to now create a better interface for the user. Buttons that open panels with tabbed panels. Menus and such.

I am using swing for both the game and the controls

Any advice on how I should go about this? NetBeans is not very nice. I'm using eclipse as my IDE, so need a plugin for eclipse.

Thanks in advance!

flag

2  
Two things: 1) You should not mix Swing and AWT; bad things will happen. 2) If you want to use a GUI builder, you should use NetBeans even if you don't like anything else about it. – mmyers Jun 25 at 15:49
I may be using swing for the buttons, but im not sure. used a JButton. is that Swing or AWT? Sorry. I should know but have forgotten. – Relequestual Jun 25 at 15:55
JXyz is Swing. For a game, if it uses 3D stuff, I would consider FengGUI. – JeeBee Jun 25 at 16:01
I'm keeping to 2D for now. Its only my second game, but I'm very ambitious, but patient. – Relequestual Jun 25 at 16:01
@Relequestual: JButton is swing. – Oscar Reyes Jun 25 at 16:08
show 1 more comment

3 Answers

vote up 1 vote down

I would suggest you give the latest version of NetBeans another shot. For making GUI's it really is easy. I've never seen another GUI builder that is so versatile.

Plus, it will keep your AWT/Swing objects separated so you will know which is which and will be able to avoid combining them.

link|flag
I tried NetBeans about a month ago, and didn't like it then. I am now sure im using only swing. – Relequestual Jun 25 at 16:15
NetBeans for swing is a very sensible suggestion. – alphazero Jun 25 at 16:30
How easy is it to then put that into eclipse? – Relequestual Jun 25 at 18:36
I mean, can i design it in netbeans and then move the code or import it to eclipse? I just like eclipse better for coding. – Relequestual Jun 25 at 19:07
I've used this approach on a couple projects--used Netbeans for prototyping and Eclipse for implementation. Also, I really like GroupLayout...even though it's for builders, I hand-code it and it works great. You can see how to do it in Netbeans, and then you'll really understand when you reimplement in Eclipse. – dave4351 Jun 25 at 21:04
show 1 more comment
vote up 0 vote down

I personally prefer using the free JGoodies Form Layout and code the layout manually. When I have to build a new GUI I usually first draw it with pen & paper. After that I try to define the columns, gaps and rows for the FormLayout by drawing dotted lines. Sometimes the panel must be rearranged in multiple panels. Then I implement the GUI in Swing which is very easy then.

I don't use GUI builders very often because most of them just don't write the code in a way I want them to do. The NetBeans GUI builder also has the drawback, that it works with generated code which must not be edited by hand (or all changes are lost). Also NetBeans makes a lot of problems when you try to rearrange something (e.g. drag a field to another position). Sometimes everything is in a mess then.

At work we actually use the SwingDesinger for Eclipse from Instantiations. It allows bi-directional editing which is why we are using it. But unfortunately it is commercial. However I still prefer drawing and coding by hand... Maybe you give the JGoodies FormLayout a try.

link|flag
vote up -2 vote down

You might want to consider using groovy and its swingbuilder library:

http://groovy.codehaus.org/Swing+Builder

link|flag

Your Answer

Get an OpenID
or

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