Results 1 to 1 of 1
- 03-16-2011, 05:41 PM #1
Member
- Join Date
- Mar 2011
- Posts
- 12
- Rep Power
- 0
Can anyone give a suggestion for the following :
hi to all
i'm working on creating a paint application that has 2 buttons circle and RECTANGLE below that empty space appears that enables you to draw one of these shapes as based on the button selected
for example
1 ) selects a circle button
2) circle will be drawn in a space after your mouse movements on the empty area
so in this i try to create a another check-box in which you select a color to be filled within the shape before your mouse movements so to implement this i was told to create action-listener but it was not working
as far as i tried something like this for applying color to shape as based on color and the shape is selected
i have been trying this for last 2 days still could not find anything useful
and inside action block my codings are as follows
i don't know how to implement this can anyone give me ideaJava Code:public void actionPerformed(ActionEvent e) { JComboBox box1 = (JComboBox)e.getSource(); String Name = (String)cb.getSelectedItem(); if (Name.equals("GREEN")) && (e.getSource() == bRect) g.setColor(0, 0, 255); g.fillRect(start.x, start.y, width, height); else if (Name.equals("BLUE")) && (e.getSource() == bRect) g.setColor(0,0,0); g.fillRect(start.x, start.y, width, height); return(true); } else return(false);
thnx in advance
mano
Similar Threads
-
Need experts suggestion please help me out.
By rbkasat in forum JDBCReplies: 3Last Post: 02-21-2011, 09:52 AM -
Book Suggestion
By sunde887 in forum New To JavaReplies: 3Last Post: 02-19-2011, 06:34 PM -
Suggestion Regarding SCJD
By ravjot28 in forum Java CertificationReplies: 0Last Post: 12-11-2010, 01:48 PM -
Suggestion Box In Java SE
By V.J in forum SWT / JFaceReplies: 4Last Post: 02-24-2010, 07:12 PM -
Give me some suggestion on wedding story book
By roots in forum Forum LobbyReplies: 1Last Post: 01-10-2008, 04:17 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks