Create a new font chooser form.
Create each of the form entries
super("Choose Attributes");
faceChoice = new ChoiceGroup("Face", Choice.EXCLUSIVE);
faceChoice.append("System", null);
faceChoice.append("Monospace", null);
faceChoice.append("Proportional", null);
styleChoice = new ChoiceGroup("Style", Choice.MULTIPLE);
styleChoice.append("Bold", null);
styleChoice.append("Italic", null);
styleChoice.append("Underlined", null);
sizeChoice = new ChoiceGroup("Size", Choice.EXCLUSIVE);
sizeChoice.append("Small", null);
sizeChoice.append("Medium", null);
sizeChoice.append("Large", null);
append("Face");
append(faceChoice);
append("Style");
append(styleChoice);
append("Size");
append(sizeChoice);
setItemStateListener(this);