Uses of Class
com.realtime.crossfire.jxclient.gui.commands.CommandList

Packages that use CommandList
com.realtime.crossfire.jxclient.gui.button   
com.realtime.crossfire.jxclient.gui.commands   
com.realtime.crossfire.jxclient.gui.keybindings   
com.realtime.crossfire.jxclient.gui.list   
com.realtime.crossfire.jxclient.gui.textinput   
com.realtime.crossfire.jxclient.main   
com.realtime.crossfire.jxclient.skin.events   
com.realtime.crossfire.jxclient.skin.factory   
com.realtime.crossfire.jxclient.skin.skin   
com.realtime.crossfire.jxclient.window   
 

Uses of CommandList in com.realtime.crossfire.jxclient.gui.button
 

Fields in com.realtime.crossfire.jxclient.gui.button declared as CommandList
private  CommandList AbstractButton.commandList
          The commands to execute when the button is elected.
 

Constructors in com.realtime.crossfire.jxclient.gui.button with parameters of type CommandList
AbstractButton(TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, int transparency, boolean autoRepeat, CommandList commandList)
          Creates a new instance.
GUIButton(TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, java.awt.image.BufferedImage imageUp, java.awt.image.BufferedImage imageDown, java.lang.String text, java.awt.Font font, java.awt.Color color, int textX, int textY, boolean autoRepeat, CommandList commandList)
          Creates a new instance.
GUITextButton(TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, ButtonImages up, ButtonImages down, java.lang.String text, java.awt.Font font, java.awt.Color color, boolean autoRepeat, CommandList commandList)
          Creates a new instance.
 

Uses of CommandList in com.realtime.crossfire.jxclient.gui.commands
 

Fields in com.realtime.crossfire.jxclient.gui.commands declared as CommandList
private  CommandList CommandCheckBoxOption.commandOff
          The command list to execute when unchecked.
private  CommandList CommandCheckBoxOption.commandOn
          The command list to execute when checked.
 

Methods in com.realtime.crossfire.jxclient.gui.commands that return CommandList
 CommandList CommandCallback.getCommandList(java.lang.String args)
          Returns a command list.
 

Methods in com.realtime.crossfire.jxclient.gui.commands with parameters of type CommandList
 boolean CommandCallback.createKeyBinding(boolean perCharacter, CommandList commandList)
          Adds a key binding.
 

Constructors in com.realtime.crossfire.jxclient.gui.commands with parameters of type CommandList
CommandCheckBoxOption(CommandList commandOn, CommandList commandOff, java.lang.String tooltipText)
          Creates a new instance.
 

Uses of CommandList in com.realtime.crossfire.jxclient.gui.keybindings
 

Fields in com.realtime.crossfire.jxclient.gui.keybindings declared as CommandList
private  CommandList KeyBindingState.commands
          The commands to bind, or null to unbind.
private  CommandList KeyBinding.commands
          The associated CommandList.
 

Methods in com.realtime.crossfire.jxclient.gui.keybindings that return CommandList
 CommandList KeyBinding.getCommands()
          Returns the associated CommandList.
 

Methods in com.realtime.crossfire.jxclient.gui.keybindings with parameters of type CommandList
 void KeyBindings.addKeyBindingAsKeyChar(char keyChar, CommandList cmdList, boolean isDefault)
          Adds a key binding for a key character.
 void KeyBindings.addKeyBindingAsKeyCode(int keyCode, int modifiers, CommandList cmdList, boolean isDefault)
          Adds a key binding for a key code/modifiers pair.
 

Constructors in com.realtime.crossfire.jxclient.gui.keybindings with parameters of type CommandList
KeyBinding(CommandList commands, boolean isDefault)
          Creates a new instance.
KeyBindingState(KeyBindings keyBindings, KeyBindings keyBindings2, CommandList commands)
          Creates a new instance.
KeyCharKeyBinding(char keyChar, CommandList commands, boolean isDefault)
          Creates a KeyBinding that matches by key character.
KeyCodeKeyBinding(int keyCode, int modifiers, CommandList commands, boolean isDefault)
          Creates a KeyBinding that matches by key code/modifiers pair.
 

Uses of CommandList in com.realtime.crossfire.jxclient.gui.list
 

Fields in com.realtime.crossfire.jxclient.gui.list declared as CommandList
private  CommandList GUIList.doubleClickCommandList
          The CommandList to execute on double-clicks or null to ignore double-clicks.
 

Constructors in com.realtime.crossfire.jxclient.gui.list with parameters of type CommandList
GUIList(TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, int cellWidth, int cellHeight, GUIListCellRenderer listCellRenderer, CommandList doubleClickCommandList)
          Creates a new instance.
GUIMetaElementList(TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, int cellWidth, int cellHeight, MetaserverModel metaserverModel, java.awt.image.BufferedImage image, java.awt.Font font, java.lang.String format, java.lang.String tooltip, GUIText hostname, AbstractLabel comment, CommandList connectCommandList)
          Creates a new instance.
 

Uses of CommandList in com.realtime.crossfire.jxclient.gui.textinput
 

Fields in com.realtime.crossfire.jxclient.gui.textinput declared as CommandList
private  CommandList GUITextField.commandList
          The CommandList for executing commands.
 

Constructors in com.realtime.crossfire.jxclient.gui.textinput with parameters of type CommandList
GUITextField(CommandCallback commandCallback, TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, java.awt.Image activePicture, java.awt.Image inactivePicture, java.awt.Font font, java.awt.Color inactiveColor, java.awt.Color activeColor, int margin, java.lang.String text, CommandList commandList, boolean enableHistory)
          Creates a new instance.
 

Uses of CommandList in com.realtime.crossfire.jxclient.main
 

Methods in com.realtime.crossfire.jxclient.main that return CommandList
 CommandList GuiManagerCommandCallback.getCommandList(java.lang.String args)
          Returns a command list.
 

Methods in com.realtime.crossfire.jxclient.main with parameters of type CommandList
 boolean GuiManagerCommandCallback.createKeyBinding(boolean perCharacter, CommandList commandList)
          Adds a key binding.
 

Uses of CommandList in com.realtime.crossfire.jxclient.skin.events
 

Fields in com.realtime.crossfire.jxclient.skin.events declared as CommandList
private  CommandList ConnectionStateSkinEvent.commandList
          The CommandList to execute.
private  CommandList SkillRemovedSkinEvent.commandList
          The CommandList to execute.
private  CommandList MapScrollSkinEvent.commandList
          The CommandList to execute.
private  CommandList CrossfireMagicmapSkinEvent.commandList
          The CommandList to execute.
private  CommandList SkillAddedSkinEvent.commandList
          The CommandList to execute.
 

Constructors in com.realtime.crossfire.jxclient.skin.events with parameters of type CommandList
ConnectionStateSkinEvent(CommandList commandList, GuiStateManager guiStateManager)
          Creates a new instance.
CrossfireMagicmapSkinEvent(CommandList commandList, CrossfireServerConnection server)
          Creates a new instance.
MapScrollSkinEvent(CommandList commandList, CfMapUpdater mapUpdater)
          Creates a new instance.
SkillAddedSkinEvent(CommandList commandList, Skill skill)
          Creates a new instance.
SkillRemovedSkinEvent(CommandList commandList, Skill skill)
          Creates a new instance.
 

Uses of CommandList in com.realtime.crossfire.jxclient.skin.factory
 

Methods in com.realtime.crossfire.jxclient.skin.factory with parameters of type CommandList
 GUIElement TextButtonFactory.newTextButton(TooltipManager tooltipManager, GUIElementListener elementListener, java.lang.String name, Extent extent, java.lang.String text, boolean autoRepeat, CommandList commandList)
          Create a new text button.
 

Uses of CommandList in com.realtime.crossfire.jxclient.skin.skin
 

Fields in com.realtime.crossfire.jxclient.skin.skin with type parameters of type CommandList
private  JXCSkinCache<CommandList> DefaultJXCSkin.definedCommandLists
          All defined command lists.
private  java.util.Collection<CommandList> DefaultJXCSkin.initEvents
          All "event init" commands in execution order.
 

Methods in com.realtime.crossfire.jxclient.skin.skin that return CommandList
 CommandList JXCSkin.getCommandList(java.lang.String name)
          Returns a named command list.
 CommandList DefaultJXCSkin.getCommandList(java.lang.String name)
          Returns a named command list.
 

Methods in com.realtime.crossfire.jxclient.skin.skin with parameters of type CommandList
 void DefaultJXCSkin.addInitEvent(CommandList commandList)
          Adds a command list to be executed on "init" events.
 

Uses of CommandList in com.realtime.crossfire.jxclient.window
 

Methods in com.realtime.crossfire.jxclient.window that return CommandList
 CommandList GuiManager.getCommandList(java.lang.String args)
          Returns a named command list.
 

Methods in com.realtime.crossfire.jxclient.window with parameters of type CommandList
 boolean KeybindingsManager.createKeyBinding(boolean perCharacter, CommandList cmdList)
          Starts creating a new key binding.
 boolean GuiManager.createKeyBinding(boolean perCharacter, CommandList cmdList)
          Adds a key binding.