@@ -133,7 +133,7 @@ public final class Font2DTest extends JPanel
133
133
private static boolean canDisplayCheck = true ;
134
134
135
135
/// Initialize GUI variables and its layouts
136
- public Font2DTest ( JFrame f , boolean isApplet ) {
136
+ public Font2DTest ( JFrame f ) {
137
137
parent = f ;
138
138
139
139
rm = new RangeMenu ( this , parent );
@@ -165,8 +165,8 @@ public Font2DTest( JFrame f, boolean isApplet ) {
165
165
contrastSlider .setPaintLabels (true );
166
166
contrastSlider .addChangeListener (this );
167
167
setupPanel ();
168
- setupMenu ( isApplet );
169
- setupDialog ( isApplet );
168
+ setupMenu ();
169
+ setupDialog ();
170
170
171
171
if (canDisplayCheck ) {
172
172
fireRangeChanged ();
@@ -256,7 +256,7 @@ private void addLabeledComponentToGBL( String name,
256
256
}
257
257
258
258
/// Sets up menu entries
259
- private void setupMenu ( boolean isApplet ) {
259
+ private void setupMenu () {
260
260
JMenu fileMenu = new JMenu ( "File" );
261
261
JMenu optionMenu = new JMenu ( "Option" );
262
262
@@ -268,11 +268,7 @@ private void setupMenu( boolean isApplet ) {
268
268
fileMenu .add ( new MenuItemV2 ( "Page Setup..." , this ));
269
269
fileMenu .add ( new MenuItemV2 ( "Print..." , this ));
270
270
fileMenu .addSeparator ();
271
- if ( !isApplet )
272
- fileMenu .add ( new MenuItemV2 ( "Exit" , this ));
273
- else
274
- fileMenu .add ( new MenuItemV2 ( "Close" , this ));
275
-
271
+ fileMenu .add ( new MenuItemV2 ( "Exit" , this ));
276
272
displayGridCBMI = new CheckboxMenuItemV2 ( "Display Grid" , true , this );
277
273
force16ColsCBMI = new CheckboxMenuItemV2 ( "Force 16 Columns" , false , this );
278
274
showFontInfoCBMI = new CheckboxMenuItemV2 ( "Display Font Info" , false , this );
@@ -326,11 +322,8 @@ private void setupMenu( boolean isApplet ) {
326
322
}
327
323
328
324
/// Sets up the all dialogs used in Font2DTest...
329
- private void setupDialog ( boolean isApplet ) {
330
- if (!isApplet )
331
- filePromptDialog = new JFileChooser ( );
332
- else
333
- filePromptDialog = null ;
325
+ private void setupDialog () {
326
+ filePromptDialog = new JFileChooser ();
334
327
335
328
/// Prepare user text dialog...
336
329
userTextDialog = new JDialog ( parent , "User Text" , false );
@@ -432,8 +425,6 @@ public void fireRangeChanged() {
432
425
433
426
/// Changes the message on the status bar
434
427
public void fireChangeStatus ( String message , boolean error ) {
435
- /// If this is not ran as an applet, use own status bar,
436
- /// Otherwise, use the appletviewer/browser's status bar
437
428
statusBar .setText ( message );
438
429
if ( error )
439
430
fp .showingError = true ;
@@ -1030,7 +1021,7 @@ public static void main(String[] argv) {
1030
1021
1031
1022
UIManager .put ("swing.boldMetal" , Boolean .FALSE );
1032
1023
final JFrame f = new JFrame ( "Font2DTest" );
1033
- final Font2DTest f2dt = new Font2DTest ( f , false );
1024
+ final Font2DTest f2dt = new Font2DTest ( f );
1034
1025
f .addWindowListener ( new WindowAdapter () {
1035
1026
public void windowOpening ( WindowEvent e ) { f2dt .repaint (); }
1036
1027
public void windowClosing ( WindowEvent e ) { System .exit (0 ); }
0 commit comments