Hello, I'm looking for any Java programmers that can help me on this, I need to make an application similar to the image below but I need some tips on how to make one from you guys.
Some explanation on the application:
-Drag drop shape into the drawing panel
-Option for fill/not filled shapes
-Reduce/increase size by half/double
-Clear drawing panel
-Navigate shape horizontally/vertically using navigation button or by pressing [< ^ v >] keys on the keyboard.
-'A' button to switch 'ON' or 'OFF' the AUTO mode that enables the shape to move by itself horizontally on the drawing panel if touches the drawing panel.
I do have basic knowledge on AWT and Swing, roughly about only making basic frames and stuffs.
Have hardly touched on Event classes yet though.
Results 1 to 5 of 5
Thread: Java Programming - GUI
- 19 Nov. 2014 01:27pm #1
Java Programming - GUI
Last edited by helldana; 19 Nov. 2014 at 01:33pm.
- 21 Nov. 2014 08:54am #2
Can't help you this time dana, I hate AWT and Swing.
But it looks like you've come a long way from the last time we talked Java.
Nice goingI don't get tired.
- 22 Nov. 2014 05:02am #3
- 22 Nov. 2014 05:58am #4
- Join Date
- Apr. 2013
- Location
- Minnesota
- Posts
- 1,325
- Reputation
- 114
- LCash
- 0.00
the drag n' drop is beyond me.
i found the head first java book to be a good reference when i was trying trk this out.
quite a bit of work to get all done.https://discord.gg/TvN6xUb ~ chat on discord pls.
- 23 Nov. 2014 02:25am #5
Drag and drop? On mouse down, find object at x/y coordinates, drag=true. On mouse move, if drag=true, move previous object. on mouse up, drag=false.