Skip to content

Commit 0af645a

Browse files
committedAug 13, 2021
8205138: Remove Applet references from Font2DTest
Reviewed-by: serb, psadhukhan
1 parent bd7f9b4 commit 0af645a

File tree

3 files changed

+10
-106
lines changed

3 files changed

+10
-106
lines changed
 

‎src/demo/share/jfc/Font2DTest/Font2DTest.html

-49
This file was deleted.

‎src/demo/share/jfc/Font2DTest/Font2DTest.java

+8-17
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public final class Font2DTest extends JPanel
133133
private static boolean canDisplayCheck = true;
134134

135135
/// Initialize GUI variables and its layouts
136-
public Font2DTest( JFrame f, boolean isApplet ) {
136+
public Font2DTest( JFrame f) {
137137
parent = f;
138138

139139
rm = new RangeMenu( this, parent );
@@ -165,8 +165,8 @@ public Font2DTest( JFrame f, boolean isApplet ) {
165165
contrastSlider.setPaintLabels(true);
166166
contrastSlider.addChangeListener(this);
167167
setupPanel();
168-
setupMenu( isApplet );
169-
setupDialog( isApplet );
168+
setupMenu();
169+
setupDialog();
170170

171171
if(canDisplayCheck) {
172172
fireRangeChanged();
@@ -256,7 +256,7 @@ private void addLabeledComponentToGBL( String name,
256256
}
257257

258258
/// Sets up menu entries
259-
private void setupMenu( boolean isApplet ) {
259+
private void setupMenu() {
260260
JMenu fileMenu = new JMenu( "File" );
261261
JMenu optionMenu = new JMenu( "Option" );
262262

@@ -268,11 +268,7 @@ private void setupMenu( boolean isApplet ) {
268268
fileMenu.add( new MenuItemV2( "Page Setup...", this ));
269269
fileMenu.add( new MenuItemV2( "Print...", this ));
270270
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 ));
276272
displayGridCBMI = new CheckboxMenuItemV2( "Display Grid", true, this );
277273
force16ColsCBMI = new CheckboxMenuItemV2( "Force 16 Columns", false, this );
278274
showFontInfoCBMI = new CheckboxMenuItemV2( "Display Font Info", false, this );
@@ -326,11 +322,8 @@ private void setupMenu( boolean isApplet ) {
326322
}
327323

328324
/// 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();
334327

335328
/// Prepare user text dialog...
336329
userTextDialog = new JDialog( parent, "User Text", false );
@@ -432,8 +425,6 @@ public void fireRangeChanged() {
432425

433426
/// Changes the message on the status bar
434427
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
437428
statusBar.setText( message );
438429
if ( error )
439430
fp.showingError = true;
@@ -1030,7 +1021,7 @@ public static void main(String[] argv) {
10301021

10311022
UIManager.put("swing.boldMetal", Boolean.FALSE);
10321023
final JFrame f = new JFrame( "Font2DTest" );
1033-
final Font2DTest f2dt = new Font2DTest( f, false );
1024+
final Font2DTest f2dt = new Font2DTest( f);
10341025
f.addWindowListener( new WindowAdapter() {
10351026
public void windowOpening( WindowEvent e ) { f2dt.repaint(); }
10361027
public void windowClosing( WindowEvent e ) { System.exit(0); }

‎src/demo/share/jfc/Font2DTest/README.txt

+2-40
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,17 @@ Font2DTest
44
To run Font2DTest:
55

66
% java -jar Font2DTest.jar
7-
or
8-
% appletviewer Font2DTest.html
97

10-
These instructions assume that the 1.7 versions of the java
11-
and appletviewer commands are in your path. If they aren't,
12-
then you should either specify the complete path to the commands
8+
These instructions assume that the java command is in your path.
9+
If they aren't, then you should either specify the complete path to the commands
1310
or update your PATH environment variable as described in the
1411
installation instructions for the Java(TM) SE Development Kit.
1512

16-
To view Font2DTest within a web browser with Java Plugin,
17-
load Font2DTest.html.
18-
1913
If you wish to modify any of the source code, you may want to extract
2014
the contents of the Font2DTest.jar file by executing this command:
2115

2216
% jar -xvf Font2DTest.jar
2317

24-
NOTE:
25-
26-
When Font2DTest is ran as an applet, the browser plugin/viewer needs
27-
following permissions given in order to run properly:
28-
29-
AWTPermission "showWindowWithoutWarningBanner"
30-
RuntimePermission "queuePrintJob"
31-
32-
The program will run without these properties set,
33-
but some of its features will be limited.
34-
To enable all features, please add these permissions.
35-
3618
-----------------------------------------------------------------------
3719
Introduction
3820
-----------------------------------------------------------------------
@@ -129,23 +111,3 @@ that are within the selected range. Third option, "Print all text..."
129111
is similar, and it will print all lines of text that user has put in.
130112

131113
====================================================================
132-
133-
Known Problems:
134-
135-
- When a PostScript font is used, the characters may extend beyond the
136-
enclosing grid or zoom rectangle. This is due to the problem with
137-
FontMetrics.getMaxAscent() and getMaxDescent() functions; the functions
138-
do not always return the right values for PostScript fonts.
139-
140-
- There are still some bugs around the error handling.
141-
Most of these problems will usually get fixed when some parameters
142-
are changed, or the screen is refreshed.
143-
144-
- Many fonts on Solaris fails to retrieve outlines properly,
145-
and as the result, they do not align within the grid properly.
146-
These are mainly F3 and fonts that was returned by X server.
147-
148-
- When showWindowWithoutWarningBanner AWTPermission is not given,
149-
the "zoom" window will look really bad because of the
150-
Applet warning label tacked at the bottom of the zoom window.
151-
To remove this, follow the "NOTE:" instruction at the top.

0 commit comments

Comments
 (0)
Please sign in to comment.