Class CampaignOptionsCheckBox

All Implemented Interfaces:
ImageObserver, ItemSelectable, MenuContainer, Serializable, Accessible, SwingConstants

public class CampaignOptionsCheckBox extends JCheckBox
A specialized JCheckBox used in the campaign options dialog.

This check box's text and tooltip are dynamically loaded from a resource bundle based on a given name. The tooltip can optionally include word wrapping with a configurable wrap size.

The checkbox also supports font scaling adjustments.

See Also:
  • Constructor Details

    • CampaignOptionsCheckBox

      public CampaignOptionsCheckBox(String name)
      Constructs a new instance of CampaignOptionsCheckBox with the specified name.

      The name is used to determine the checkbox's visible text and tooltip, as well as to generate its unique internal name.

      The text is located in the resource bundle key "lbl" + name + ".text". The tooltip is located in the resource bundle key "lbl" + name + ".tooltip".

      A default wrap size is used for the tooltip text if CampaignOptionsUtilities.processWrapSize(java.lang.Integer) is not overridden.

      Parameters:
      name - the name used to fetch the checkbox's text and tooltip, and to set its name
    • CampaignOptionsCheckBox

      public CampaignOptionsCheckBox(String name, @Nullable Integer customWrapSize)
      Constructs a new instance of CampaignOptionsCheckBox with the specified name and a custom tooltip wrap size.

      The name is used to determine the checkbox's visible text and tooltip, as well as to generate its unique internal name. The text and tooltip are fetched from the resource bundle, located at keys "lbl" + name + ".text" and "lbl" + name + ".tooltip" respectively.

      If a custom wrap size is provided, the tooltip text will be word-wrapped accordingly. If customWrapSize is null, a default wrap size is used.

      Parameters:
      name - the name used to fetch the checkbox's text and tooltip, and to set its name
      customWrapSize - the maximum number of characters per tooltip line, or null for the default wrap size