-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadioSliderGUI.java~
361 lines (327 loc) · 13.9 KB
/
RadioSliderGUI.java~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
//+++++++++++++++++++++++++ RadioSliderGUI +++++++++++++++++++++++++
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.border.*;
import java.awt.*;
import java.awt.event.*;
/**
* RadioSliderGUI: Demo program/lab using JSlider and JRadioButton.
*
* @author rdb
* 02/04/09
*
* 01/31/14 rdb
* Replaced "magic" constants used for rectangle with named
* constants as instance vars
* Proper initialized sliders/colors from target characteristics
* instance vars
* Added Reset button and setSelected functionality
* Made target instance var of the class; simpler access
* 02/04/15 rdb Made checkstyle compatible
*/
public class RadioSliderGUI extends JPanel
{
//---------------- class variables ------------------------------
//--------------- instance variables ----------------------------
private JShape _target; // the object being changed
//--- initial characteristics of target and slider values
private int _initSize = 50;
private int _initX = 250;
private int _initY = 250;
private Color _initColor = Color.BLUE;
private JRadioButton _initColorButton;
//------------------- constructor -------------------------------
/**
* Constructor builds and displays gui interface.
*/
public RadioSliderGUI()
{
this.setLayout( new BorderLayout() );
JPanel drawPanel = new JPanel();
drawPanel.setLayout( null );
this.add( drawPanel );
// create a single rectangle in the middle of the window.
// position, size and color will be controlled by the GUI
_target = new JRectangle( _initColor );
_target.setSize( _initSize, _initSize );
_target.setLocation( _initX, _initY );
drawPanel.add( _target );
// build the sliders to control position and size
buildSliders( this );
// build the radio button panel to change the color
buildButtonPanel( this );
}
//------------------- buildSliders -------------------------------
/**
* Create 3 sliders and add using border layout.
* South region has a horizontal slider controlling x position
* West region has a vertical slider controlling y position
* East region has a slider controlling the size
*
* @param parent Container where the sliders are to go
*/
private void buildSliders( Container parent )
{
JSlider xSlider; // slider controls x location
JSlider ySlider; // slider controls y location
JSlider szSlider; // slider controls height and width
//------------- X Slider ------------------------------------
// a horizontal slider in the south panel
//
xSlider = new JSlider( JSlider.HORIZONTAL, 0, 500, _initX );
addLabels( xSlider, 100 );
xSlider.setBorder( new LineBorder( Color.BLACK, 2 ) );
SliderListener xListen = new SliderListener( xSlider, "x" );
xSlider.addChangeListener( xListen );
parent.add( xSlider, BorderLayout.SOUTH );
//------------- Y Slider ------------------------------------
//////////////////////////////////////////////////////////////
// 3. Copy and edit the above X slider code to make a Y slider
// in the WEST border region.
// Add code to SliderListener to process X-slider events
// 3a. Change orientation to vertical
// 3b. Invert ySlider
//////////////////////////////////////////////////////////////
ySlider = new JSlider( JSlider.VERTICAL, 0, 500, _initY );
addLabels( ySlider, 100 );
ySlider.setBorder( new LineBorder( Color.BLACK, 2 ) );
ySlider.setInverted( true );
xListen = new SliderListener( ySlider, "y" );
ySlider.addChangeListener( xListen );
parent.add( ySlider, BorderLayout.WEST );
//------------- Sz (size) Slider -------------------------------
//////////////////////////////////////////////////////////////
// 5. Copy and edit y slider code to create Size slider
// for changing size of the target JShape.
// Add code to SliderListener to process S-slider events.
//////////////////////////////////////////////////////////////
szSlider = new JSlider( JSlider.VERTICAL, 0, 200, _initSize );
addLabels( szSlider, 100 );
szSlider.setBorder( new LineBorder( Color.BLACK, 2 ) );
szSlider.setInverted( true );
xListen = new SliderListener( szSlider, "s" );
szSlider.addChangeListener( xListen );
parent.add( szSlider, BorderLayout.EAST );
}
//---------------- addLabels( JSlider, int ) ---------------------
/**
* a utility method to add tick marks.
* First argument is the slider, the second represents the
* major tick mark interval
* minor tick mark interval will be 1/10 of that.
* @param slider JSlider
* @param majorTicks int
*/
private void addLabels( JSlider slider, int majorTicks )
{
slider.setPaintTicks( true );
slider.setPaintLabels( true );
slider.setMajorTickSpacing( majorTicks );
slider.setMinorTickSpacing( majorTicks / 10 );
}
//+++++++++++++++++++ SliderListener inner class +++++++++++++++++
/**
* SliderListener needs access to
* -- slider it is associated with (to get that slider's value)
* -- JShape that is being controlled.
* -- a string that serves as an identifier for the slider
* These are passed to the constructor.
*/
public class SliderListener implements ChangeListener
{
private JSlider _slider;
private String _id;
/**
* SliderListener "package" constructor.
*
* @param slider JSlider the slider to which we are listening
* @param sliderId String an id for the slider
*/
SliderListener( JSlider slider, String sliderId )
{
_slider = slider;
_id = sliderId;
}
//------------------- stateChanged ---------------------------
/**
* Invoked whenever user changes the state of a slider.
* @param ev ChangeEvent
*/
public void stateChanged( ChangeEvent ev )
{
//////////////////////////////////////////////////////////
// 1a. add code to respond to the x-slider. it needs to
// change the x-position of the target object.
// The slider reference is in _slider.
// The current value of the slider is
// _slider.getValue();
// This value should be the x-parameter to
// _target.setLocation( x, y ).
// and the y-parameter should be _target.getY()
/////////////////////////////////////////////////////////
// 4a. After adding the y-slider, test here which slider
// generated the event; can do that by testing the
// _id field that was set in the constructor.
// Compare it (using String equals method) to String
// used to create this instance of SliderListener.
// 4b. Figure out how to invert the y-slider
//////////////////////////////////////////////////////////
// 5. After adding size slider, need to augment this code
// to identify and handle events from that slider.
//////////////////////////////////////////////////////////
if( _id.equals( "x" ) )
{
int x = _slider.getValue();
int y = _target.getY();
_target.setLocation( x, y );
_target.getParent().repaint();
}
else if( _id.equals( "y" ) )
{
int x2 = _target.getX();
int y2 = _slider.getValue();
_target.setLocation( x2, y2 );
_target.getParent().repaint();
}
else if( _id.equals( "s" ) )
{
int wh = _slider.getValue();
_target.setSize( wh, wh );
_target.getParent().repaint();
}
}
}
//--------------------- buildButtonPanel ------------------------
/**
* Build a button panel that contains:
* 1. a group of "radio" buttons with exclusive behavior, exactly
* one button can be pressed at a time; these buttons will
* select a color.
* 2. a reset button that is not part of the radio behavior,
* but is used to restore the radio group to its default
* setting.
*
* @param parent Container where the button panel is to go
*/
private void buildButtonPanel( Container parent )
{
JPanel bPanel = new JPanel(); // defaults to FlowLayout
bPanel.setBorder( new LineBorder( Color.BLACK, 2 ) );
buildRadioButtons( bPanel );
buildResetButton( bPanel );
parent.add( bPanel, BorderLayout.NORTH );
}
//---------------- buildRadioButtons( JPanel ) ----------------
/**
* Build a radio button group.
* @param parent JPanel where to put the radio buttons
*/
private void buildRadioButtons( JPanel parent )
{
String[] labels = { "red", "green", "blue", "cyan", "magenta", "yellow" };
Color[] colors = { Color.RED, Color.GREEN, Color.BLUE, Color.CYAN, Color.MAGENTA, Color.YELLOW };
/////////////////////////////////////////////////////////////
// 7. The ButtonGroup defines a set of RadioButtons that must be
// "exclusive" -- only 1 can be "active" at a time.
// Need to create ButtonGroup object (no arguments) and assign
// to a ButtonGroup variable..
///////////////////////////////////////////////////////////////
ButtonGroup bg = new ButtonGroup();
// for each entry in the labels array, create a JRadioButton
for ( int i = 0; i < labels.length; i++ )
{
JRadioButton button = new JRadioButton( labels[ i ] );
ButtonListener bListen = new ButtonListener( colors[i] );
button.addActionListener( bListen );
parent.add( button );
//////////////////////////////////////////////////////
// 8. Test for initial color here, so first selected
// button corresponds to initial color.
//////////////////////////////////////////////////////
if( colors[i] == _initColor )
{
button.setSelected( true );
_initColorButton = button;
}
/////////////////////////////////////////////////////
// 7. Add button to the ButtonGroup.
/////////////////////////////////////////////////////
//bg.add( button );
}
}
//------------------ buildResetButton -----------------------
/**
* Build a reset button that resets the radiobutton group.
*
* @param parent JPanel where to put the reset button
*/
private void buildResetButton( JPanel parent )
{
JButton reset = new JButton( "Reset" );
reset.addActionListener(
new ActionListener()
{
public void actionPerformed( ActionEvent ev )
{
System.out.println( "Reset invoked" );
_initColorButton.doClick();
}
}
);
parent.add( reset );
}
//+++++++++++++++++ ButtonListener inner class +++++++++++++++++++
/**
* This ButtonListener "knows" it is listening to an event from a
* button and uses that knowledge in the actionPerformed method.
*/
class ButtonListener implements ActionListener
{
//------ instance variables ---------------
private Color buttonColor;
/**
* Construct a ButtonListener object.
*/
ButtonListener( Color c )
{
buttonColor = c;
}
//----------------------- actionPerformed --------------------
/**
* Get event and respond to it. We want to get the text of
* the button label in order to know which button it is.
* We know that the button is a JRadioButton. However, it is
* good practice to assume as little as you need to; it makes
* the code more general-purpose. We need the getText() method,
* which is defined by javax.swing.AbstractButton. So, we'll
* get the Object from the ActionEvent using its getSource()
* and cast that to an AbstractButton and call getText().
*
* @param ev ActionEvent source event
*/
public void actionPerformed( ActionEvent ev )
{
// get a reference to the button that just got pressed,
// get the text string, so we know which button it is.
//
AbstractButton button = (AbstractButton) ev.getSource();
String buttonLabel = button.getText(); // get text field.
System.out.println( buttonLabel + ": Action event. " );
// In this case, we only have 1 button using this listener
// so we don't have to test the buttonLabel, we just
// update the target color and invoke its repaint()
_target.setColor( buttonColor );
_target.getParent().repaint();
}
}
//+++++++++++++++++++++ main +++++++++++++++++++++++++++++++++++++
/**
* Convenience main to start main application;RadioSliderLab.main.
*
* @param args String[] command line arguments
*/
public static void main( String[] args )
{
RadioSliderLab.main( args );
}
}