JPanel colorPanel = new JPanel(new GridLayout(4, 1));
colorPanel.setBorder(BorderFactory.createTitledBorder("Color level"));
- fullcolorButton = new GroupedJRadioButton("Full (all available colors)",
- colorlevelGroup, colorPanel);
- mediumcolorButton = new GroupedJRadioButton("Medium (256 colors)",
- colorlevelGroup, colorPanel);
- lowcolorButton = new GroupedJRadioButton("Low (64 colors)",
- colorlevelGroup, colorPanel);
- verylowcolorButton = new GroupedJRadioButton("Very low (8 colors)",
- colorlevelGroup, colorPanel);
+ fullcolorButton = new GroupedJRadioButton("Full", colorlevelGroup, colorPanel);
+ mediumcolorButton = new GroupedJRadioButton("Medium", colorlevelGroup, colorPanel);
+ lowcolorButton = new GroupedJRadioButton("Low", colorlevelGroup, colorPanel);
+ verylowcolorButton = new GroupedJRadioButton("Very low", colorlevelGroup, colorPanel);
JPanel encodingPane = new JPanel(new GridLayout(1, 2, 5, 0));
encodingPane.setBorder(BorderFactory.createEmptyBorder(0, 0, 5, 0));
public static IntParameter lowColorLevel
= new IntParameter("LowColorLevel",
"Color level to use on slow connections. "+
- "0 = Very Low (8 colors), 1 = Low (64 colors), "+
- "2 = Medium (256 colors)",
+ "0 = Very Low, 1 = Low, 2 = Medium",
2);
public static AliasParameter lowColorLevelAlias
fullcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
- _("Full (all available colors)")));
+ _("Full")));
fullcolorCheckbox->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;
mediumcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
- _("Medium (256 colors)")));
+ _("Medium")));
mediumcolorCheckbox->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;
lowcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
- _("Low (64 colors)")));
+ _("Low")));
lowcolorCheckbox->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;
verylowcolorCheckbox = new Fl_Round_Button(LBLRIGHT(tx, ty,
RADIO_MIN_WIDTH,
RADIO_HEIGHT,
- _("Very low (8 colors)")));
+ _("Very low")));
verylowcolorCheckbox->type(FL_RADIO_BUTTON);
ty += RADIO_HEIGHT + TIGHT_MARGIN;
}
AliasParameter fullColourAlias("FullColour", "Alias for FullColor", &fullColour);
IntParameter lowColourLevel("LowColorLevel",
"Color level to use on slow connections. "
- "0 = Very Low (8 colors), 1 = Low (64 colors), "
- "2 = Medium (256 colors)", 2);
+ "0 = Very Low, 1 = Low, 2 = Medium", 2);
AliasParameter lowColourLevelAlias("LowColourLevel", "Alias for LowColorLevel", &lowColourLevel);
StringParameter preferredEncoding("PreferredEncoding",
"Preferred encoding to use (Tight, ZRLE, Hextile or"