This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 144781

Summary: I18N - font size might be hardcoded or font name might not be standard jdk font name
Product: soa Reporter: Ken Frank <kfrank>
Component: BPEL DebuggerAssignee: issues@soa <issues>
Status: NEW ---    
Severity: blocker Keywords: I18N
Priority: P3    
Version: 6.x   
Hardware: Sun   
OS: Solaris   
Issue Type: DEFECT Exception Reporter:

Description Ken Frank 2008-08-21 21:07:04 UTC
am scanning source code to find possible instances
of hardcoding of font sizes or font names that might
not be standard jdk font names

since hardcoding of font sizes can lead to resize issues
(which can often be solved by using dynamic resizing using
layout managers and by using global ide font size instead
of hardcoding.

and since using font names that are not standard jdk font
names can lead to some fonts not being found, especially
for asian or other non english fonts.

We realize that some of this code might not be used or that
some of these examples might not be applicable

also, this is not meant to be complete since other
instances of these situations might be present using other
api names than patterns used for scanning - please check
code to see if other such cases and fix as needed.

also, suggest checking code to see that usages of setSize
and setPreferredSize calls don't hardcode actual sizes of
dialogs or other windows if it means that dynamic resizing
would not happen in these cases


Here are some instance(s) found of these possible problems:

bpel.debugger.ui
tfTargetNamespace.setFont(new java.awt.Font("Tahoma", 1, 11));
tfProcessName.setFont(new java.awt.Font("Tahoma", 1, 11));
jLabel5.setFont(new java.awt.Font("Tahoma", 2,
11));
src/org/netbeans/modules/bpel/debugger/ui/source/SeveralSourceFilesWarning.java
compapp.casaeditor
java.awt.Font("Dialog", 1, 12));


this.setFont(new Font("Dialog", Font.PLAIN, 12)); //NOI18N
./src/org/netbeans/modules/etl/ui/view/ETLCollaborationTopPanel.java

textArea.setFont(new Font("monospaced", Font.PLAIN, 12

etl.editor:        txtArea.setFont(new Font("Courier", Font.PLAIN, 12));
etl.editor.setfont:        textArea.setFont(new Font("monospaced", Font.PLAIN, 12));
etl.editor.setfont:        textArea.setFont(new Font("monospaced", Font.PLAIN, 12));
etl.editor.setfont:        this.setFont(new Font("Dialog", Font.PLAIN, 12)); //NOI18N
etl.editor.setfont:        txtArea.setFont(new Font("Courier", Font.PLAIN, 12));
... more ...
Comment 1 Jun Qian 2009-03-05 22:58:26 UTC
Fixed hard-coded fonts in CASA Editor: http://hg.netbeans.org/soa-dev65/rev/c9ffd2066194
Comment 2 Jun Qian 2009-03-05 22:59:29 UTC
reassigning to bpel.debugger.ui