Class MassKeyCommand
- All Implemented Interfaces:
PropertyChangeListener,EventListener,AutoConfigurable,Buildable,Configurable,GameComponent,PropertyNameSource,ValidityChecker,Translatable,Auditable,ImageSearchTarget,SearchTarget,RecursionLimiter.Loopable
- Direct Known Subclasses:
DeckGlobalKeyCommand,GlobalKeyCommand
GlobalCommand - primary functionality for sending commands to multiple pieces based on matching parameters
GlobalKeyCommand - Global Key Commands from a Module window
StartupGlobalKeyCommand - Global Key Commands from a Module "At Startup"
MassKeyCommand - Global Key Commands from a specific Map window
DeckGlobalKeyCommand - Global Key Commands from a Deck
CounterGlobalKeyCommand - Global Key Commands from a Game Piece
Other important classes:
GlobalCommandTarget - "Fast Match" parameters
GlobalCommandTargetConfigurer - configurer for "Fast Match" parameters-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classDeprecated, for removal: This API element is subject to removal in a future version.static classstatic classstatic classNested classes/interfaces inherited from class VASSAL.build.AbstractToolbarItem
AbstractToolbarItem.FormattedStringConfigNested classes/interfaces inherited from interface VASSAL.build.AutoConfigurable
AutoConfigurable.Util -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringstatic final Stringstatic final Stringstatic final Stringprotected Stringprotected Stringprotected Stringstatic final Stringstatic final Stringstatic final Stringprotected PieceFilterprotected GlobalCommandstatic final Stringstatic final StringDeprecated, for removal: This API element is subject to removal in a future version.static final Stringprotected LaunchButtonDeprecated, for removal: This API element is subject to removal in a future version.use launch from the superclassprotected Mapstatic final StringDeprecated, for removal: This API element is subject to removal in a future version.protected String[]static final Stringstatic final Stringprotected PropertyExpressionprotected PropertySourcestatic final Stringstatic final Stringprotected FormattedStringstatic final Stringprotected booleanprotected NamedKeyStrokestatic final Stringprotected GlobalCommandTargetstatic final Stringstatic final StringDeprecated, for removal: This API element is subject to removal in a future version.Fields inherited from class VASSAL.build.AbstractToolbarItem
CAN_DISABLE, canDisable, DISABLED_ICON, disabledIconConfig, HIDE_WHEN_DISABLED, hideWhenDisabled, property, PROPERTY_GATE, propertyGate, showDisabledOptionsFields inherited from class VASSAL.build.AbstractConfigurable
changeSupport, config, localizedName, myI18nData, nameFields inherited from class VASSAL.build.AbstractBuildable
buildComponents, validatorFields inherited from interface VASSAL.build.Configurable
NAME_PROPERTY -
Constructor Summary
ConstructorsConstructorDescriptionCopy an existing MassKeyCommand or subclass getAttributeNames will resolve to the subclass, so only attributes unique to the subclass will be copied CONDITION is a legacy field that must be null, not "" when not used -
Method Summary
Modifier and TypeMethodDescriptionvoidDefault behavior adds the button to the parent componentvoidapply()Class<?>[]String[]This getAttributeDescriptions() will return the items specific to the Toolbar Button - classes extending this should add their own items as well.String[]This getAttributeNames() will return the items specific to the Toolbar Button - classes extending this should add their own items as well.Class<?>[]This getAttributeTypes() will return the items specific to the Toolbar Button - classes extending this should add their own items as well.Classes extending AbstractToolbarItem can call this as a super() method after checking for their own keys, to avoid needing to deal with the nitty gritty of the toolbar button.By default, all attributes are visibleReturn the name of the trait or Component an Auditable isReturn a description of the Type of trait or Component an Auditable isstatic StringgetFilter(AuditTrail trail) voidremoveFrom(Buildable parent) Remove from our parentvoidsetAttribute(String key, Object value) Classes extending AbstractToolbarItem can call this as a super() method after checking for their own keys, to avoid needing to deal with the nitty gritty of the toolbar button.voidsetPropertySource(PropertySource source) Methods inherited from class VASSAL.build.AbstractToolbarItem
addLocalImageNames, addPropertyGateListener, addPropertyGateListener, checkDisabled, disableIfTrue, getComponent, getLaunchButton, getMenuTextList, getNameKey, getRestoreCommand, isShowDisabledOptions, makeLaunchButton, propertyChange, removePropertyGateListener, setButtonTextKey, setHotKeyKey, setIconKey, setLaunchButton, setNameKey, setNamePrompt, setShowDisabledOptions, setTooltipKey, setupMethods inherited from class VASSAL.build.AbstractConfigurable
add, addPropertyChangeListener, getConfigureComponents, getConfigureName, getConfigurer, getI18nData, getI18nPrefix, getLocalizedConfigureName, getTypeName, remove, removePropertyChangeListener, setAllAttributesUntranslatable, setAttributeTranslatable, setConfigureNameMethods inherited from class VASSAL.build.AbstractBuildable
addImageNamesRecursively, build, buildString, getAllDescendantComponentsOf, getAncestor, getBuildables, getBuildComponents, getBuildElement, getComponents, getComponentsOf, getNonFolderAncestor, getPropertyNames, setAncestor, validateMethods inherited from class VASSAL.search.AbstractImageFinder
getAllImageNames, getLocalImageNamesMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface VASSAL.build.Buildable
build, getBuildElement, isMandatory, isMovable, isUnique
-
Field Details
-
DEPRECATED_NAME
- See Also:
-
BUTTON_TEXT
- See Also:
-
HOTKEY
- See Also:
-
KEY_COMMAND
- See Also:
-
AFFECTED_PIECE_NAMES
- See Also:
-
PROPERTIES_FILTER
- See Also:
-
REPORT_SINGLE
- See Also:
-
REPORT_FORMAT
- See Also:
-
CONDITION
- See Also:
-
DECK_COUNT
- See Also:
-
CHECK_PROPERTY
- See Also:
-
CHECK_VALUE
- See Also:
-
SINGLE_MAP
- See Also:
-
SUPPRESS_SOUNDS
- See Also:
-
PARAMETERS
- See Also:
-
NAME
Deprecated, for removal: This API element is subject to removal in a future version.- See Also:
-
ICON
Deprecated, for removal: This API element is subject to removal in a future version.- See Also:
-
TOOLTIP
Deprecated, for removal: This API element is subject to removal in a future version.- See Also:
-
launch
Deprecated, for removal: This API element is subject to removal in a future version.use launch from the superclass -
stroke
-
names
-
condition
-
checkProperty
-
checkValue
-
propertiesFilter
-
propertySource
-
filter
-
map
-
globalCommand
-
reportFormat
-
singleMap
protected boolean singleMap -
parameters
-
TARGET
- See Also:
-
target
-
-
Constructor Details
-
MassKeyCommand
public MassKeyCommand() -
MassKeyCommand
Copy an existing MassKeyCommand or subclass getAttributeNames will resolve to the subclass, so only attributes unique to the subclass will be copied CONDITION is a legacy field that must be null, not "" when not used
-
-
Method Details
-
getGKCtype
- Returns:
- Our GKC type -- this method is overridden by
GlobalKeyCommandfor module-level GKC's and byDeckGlobalKeyCommandfor Deck GKC's. This value affects what configurer options are shown.
-
addTo
Description copied from class:AbstractToolbarItemDefault behavior adds the button to the parent component- Specified by:
addToin interfaceBuildable- Overrides:
addToin classAbstractToolbarItem- Parameters:
parent- parent Buildable to add this component to as a subcomponent.
-
apply
public void apply() -
setPropertySource
-
getAllowableConfigureComponents
- Specified by:
getAllowableConfigureComponentsin interfaceConfigurable- Returns:
- a list of valid sub-component Classes. If a Class
appears in this list, then instances of that class may be added
to this component from the Editor's
ConfigureTreewindow by right-clicking on the component and selecting the appropriate "Add" option.
-
getAttributeDescriptions
Description copied from class:AbstractToolbarItemThis getAttributeDescriptions() will return the items specific to the Toolbar Button - classes extending this should add their own items as well. If the "nameKey" is blank, then no "name" configure entry will be generated. Extending classes can use ArrayUtils.addAll(super.getAttributeDescriptions(), key1, ..., keyN), or supply their own order from scratch.- Specified by:
getAttributeDescriptionsin interfaceAutoConfigurable- Overrides:
getAttributeDescriptionsin classAbstractToolbarItem- Returns:
- an array of Strings describing the buildFile (XML) attributes of this component. These strings are used as prompts in the
Properties window for this object, when the component is configured in the Editor. The order of descriptions should
be the same as the order of names in
AbstractBuildable.getAttributeNames()
-
getAttributeNames
Description copied from class:AbstractToolbarItemThis getAttributeNames() will return the items specific to the Toolbar Button - classes extending this should add their own items as well. If the "nameKey" is blank, then no "name" configure entry will be generated. Extending classes can use ArrayUtils.addAll(super.getAttributeNames(), key1, ..., keyN), or supply their own order from scratch.Lists all the buildFile (XML) attribute names for this component. If this component is ALSO an
AbstractConfigurable, then this list of attributes determines the appropriate attribute order forAbstractConfigurable.getAttributeDescriptions()andAbstractConfigurable.getAttributeTypes().- Specified by:
getAttributeNamesin interfaceAutoConfigurable- Overrides:
getAttributeNamesin classAbstractToolbarItem- Returns:
- an array of all buildFile (XML) attribute names for this component
-
getAttributeTypes
Description copied from class:AbstractToolbarItemThis getAttributeTypes() will return the items specific to the Toolbar Button - classes extending this should add their own items as well. If the "nameKey" is blank, then no "name" configure entry will be generated. Extending classes can use ArrayUtils.addAll(super.getAttributeTypes(), key1, ..., keyN), or supply their own order from scratch.- Specified by:
getAttributeTypesin interfaceAutoConfigurable- Overrides:
getAttributeTypesin classAbstractToolbarItem- Returns:
- the Class for the buildFile (XML) attributes of this component. Valid classes include: String, Integer, Double, Boolean, Image,
Color, and KeyStroke, along with any class for which a Configurer exists in VASSAL.configure. The class determines, among other things,
which type of
AutoConfigurerwill be used to configure the attribute when the object is configured in the Editor.The order of classes should be the same as the order of names in
AbstractBuildable.getAttributeNames()
-
getAttributeValueString
Description copied from class:AbstractToolbarItemClasses extending AbstractToolbarItem can call this as a super() method after checking for their own keys, to avoid needing to deal with the nitty gritty of the toolbar button.- Specified by:
getAttributeValueStringin interfaceAutoConfigurable- Specified by:
getAttributeValueStringin interfaceTranslatable- Overrides:
getAttributeValueStringin classAbstractToolbarItem- Parameters:
key- the name of the attribute. Will be one of those listed inAbstractToolbarItem.getAttributeNames()- Returns:
- a String representation of the XML buildFile attribute with the given name. When initializing a module,
this String value will loaded from the XML and passed to
AbstractToolbarItem.setAttribute(java.lang.String, java.lang.Object). It is also frequently used for checking the current value of an attribute.
-
getTarget
-
getConfigureTypeName
-
getHelpFile
- Specified by:
getHelpFilein interfaceConfigurable- Returns:
- a HelpFile describing how to use and configure * this component
-
removeFrom
Description copied from class:AbstractToolbarItemRemove from our parent- Specified by:
removeFromin interfaceConfigurable- Overrides:
removeFromin classAbstractToolbarItem- Parameters:
parent- parent
-
getFilter
-
getFilter
-
getAttributeVisibility
Description copied from class:AbstractConfigurableBy default, all attributes are visible- Specified by:
getAttributeVisibilityin interfaceAutoConfigurable- Overrides:
getAttributeVisibilityin classAbstractToolbarItem- Parameters:
key- Name (key) of one of this component's attributes- Returns:
- a
VisibilityConditionfor this attribute, or null if attribute should always be visible.
-
setAttribute
Description copied from class:AbstractToolbarItemClasses extending AbstractToolbarItem can call this as a super() method after checking for their own keys, to avoid needing to deal with the nitty gritty of the toolbar button.Sets a buildFile (XML) attribute value for this component. The
keyparameter will be one of those listed inAbstractToolbarItem.getAttributeNames(). If thevalueparameter is a String, it will be the value returned byAbstractToolbarItem.getAttributeValueString(java.lang.String)for the samekey. If the implementing class extendsAbstractConfigurable, thenvaluewill be an instance of the corresponding Class listed inAbstractConfigurable.getAttributeTypes()- Specified by:
setAttributein interfaceAutoConfigurable- Specified by:
setAttributein interfaceTranslatable- Overrides:
setAttributein classAbstractToolbarItem- Parameters:
key- the name of the attribute. Will be one of those listed inAbstractToolbarItem.getAttributeNames()value- If thevalueparameter is a String, it will be the value returned byAbstractToolbarItem.getAttributeValueString(java.lang.String)for the samekey. If the implementing class extendsAbstractConfigurable, thenvaluecan also be an instance of the corresponding Class listed inAbstractConfigurable.getAttributeTypes()
-
getComponentName
Description copied from interface:AuditableReturn the name of the trait or Component an Auditable is- Specified by:
getComponentNamein interfaceAuditable- Returns:
- Component name
-
getComponentTypeName
Description copied from interface:AuditableReturn a description of the Type of trait or Component an Auditable is- Specified by:
getComponentTypeNamein interfaceAuditable- Returns:
- Component Type
-
getPropertyList
- Specified by:
getPropertyListin interfaceSearchTarget- Overrides:
getPropertyListin classAbstractToolbarItem- Returns:
- a list of the Configurables property fields (for search)
-
getExpressionList
- Specified by:
getExpressionListin interfaceSearchTarget- Overrides:
getExpressionListin classAbstractConfigurable- Returns:
- a list of the Configurables string/expression fields if any (for search)
-
getFormattedStringList
- Specified by:
getFormattedStringListin interfaceSearchTarget- Overrides:
getFormattedStringListin classAbstractConfigurable- Returns:
- a list of any Message Format strings referenced in the Configurable, if any (for search)
-
getNamedKeyStrokeList
- Specified by:
getNamedKeyStrokeListin interfaceSearchTarget- Overrides:
getNamedKeyStrokeListin classAbstractToolbarItem- Returns:
- a list of any Named KeyStrokes referenced in the Configurable, if any (for search)
-
AbstractToolbarItem.IconConfiginstead.