A B C E F G I L P R S T U W

A

addActionListener(ActionListener) - Method in class com.equitysoft.components.IEButton
Causes the specified ActionListener's actionPerformed method to be invoked each time the button is clicked.
addEnterExitListener(Object) - Method in class com.equitysoft.components.IEButton
Causes the specified EnterExitListener's buttonStateChanged method to be invoked each time the cursor enters or exits the button.

B

buttonStateChanged(EnterExitEvent) - Method in interface com.equitysoft.components.EnterExitListener
 
buttonStateChanged(EnterExitEvent) - Method in class com.equitysoft.components.IEButton
Invoked by another instance of IEButton with which the current instance is registered as a EnterExitEvent listener.

C

com.equitysoft.components - package com.equitysoft.components
 

E

EnterExitEvent - class com.equitysoft.components.EnterExitEvent.
This event is used to indicate to a EnterExitListener if the cursor has entered or exited an IEButton instance.
EnterExitEvent(Object, boolean) - Constructor for class com.equitysoft.components.EnterExitEvent
Creates an instance of EnterExitEvent with the boolean value that indicates the condition that caused the event.
EnterExitListener - interface com.equitysoft.components.EnterExitListener.
This interface allows a class to listen for EnterExitEvent occurences when the cursor enters or exits an IEButton instance.

F

fireAction() - Method in class com.equitysoft.components.IEButton
Invoking this method is equivalent to clicking the mouse over the button.
fireEnterExit(boolean) - Method in class com.equitysoft.components.IEButton
This method is not normally invoked directly.

G

getActionCommand() - Method in class com.equitysoft.components.IEButton
Returns the value for the actionCommand String.
getAlternateImage(Image) - Method in class com.equitysoft.components.IEButton
This method fetches the 'grayed-out' image for the button.
getBorderInset() - Method in class com.equitysoft.components.IEButton
Returns the current border inset.
getBorderWidth() - Method in class com.equitysoft.components.IEButton
Returns the current border width being used to draw the button.
getButtonBackground() - Method in class com.equitysoft.components.IEButton
Returns the background color of the button.
getDepressedButton() - Static method in class com.equitysoft.components.IEButton
This method returns the currently depressed button instance if any.
getFont(Font) - Method in class com.equitysoft.components.IEButton
Returns the current font used to display the text associated with the button.
getImageFile() - Method in class com.equitysoft.components.IEButton
This method is invoked by JavaBean tools.
getMinimumSize() - Method in class com.equitysoft.components.IEButton
Returns the same value as getPreferredSize()
getPreferredSize() - Method in class com.equitysoft.components.IEButton
Returns The current preferred size dimension.
getRepeatInterval() - Method in class com.equitysoft.components.IEButton
Gets the current value of the repeat interval.
getState() - Method in class com.equitysoft.components.EnterExitEvent
 
getText() - Method in class com.equitysoft.components.IEButton
Returns the buttons text string.
getTextColor() - Method in class com.equitysoft.components.IEButton
Returns the color with which the text is drawn.
getTextPosition() - Method in class com.equitysoft.components.IEButton
Returns a value indicating how the text associated with the button is currently being displayed.
getTooltipBackground() - Method in class com.equitysoft.components.IEButton
Returns the color used for the tooltip background.
getTooltipPosition() - Method in class com.equitysoft.components.IEButton
Returns the current position of the tooltip if tooltips are being used for the button
getTooltipTimeDelay() - Method in class com.equitysoft.components.IEButton
Returns The current delay before a tooltip is shown as a long value.

I

IEButton - class com.equitysoft.components.IEButton.
IEButton is a 'hot' button of the type found in Internet browsers such as Netscape Navigator Version 4.
IEButton() - Constructor for class com.equitysoft.components.IEButton
Constructs an instance of IEButton with no image , no text, with positioning of LABEL_SOUTH and a preferred size of 36 by 36.
IEButton(Image) - Constructor for class com.equitysoft.components.IEButton
Constructs an instance of IEButton with the specified image but without any associated text.
IEButton(Image, String) - Constructor for class com.equitysoft.components.IEButton
Constructs an instance of IEButton with the given image and text and an implied text position of LABEL_SOUTH.
IEButton(Image, String, int) - Constructor for class com.equitysoft.components.IEButton
Constructs an instance of IEButton with the specified image and textual label or tooltip.
IEButton(String) - Constructor for class com.equitysoft.components.IEButton
Constructs an instance which is text only.
invalidate() - Method in class com.equitysoft.components.IEButton
Overidden so that calls to Component.setBounds cause IEButton to recalculate positions
isDepressed() - Method in class com.equitysoft.components.IEButton
Returns a boolean indicating if the button is depressed.
isDownDarkened() - Method in class com.equitysoft.components.IEButton
Indicates if the image is darkened when the button is pushed.
isEnabled() - Method in class com.equitysoft.components.IEButton
Indicates if the button is enabled or not.
isFocusTraversable() - Method in class com.equitysoft.components.IEButton
Indicates to the AWT if the focus can be transferred to the button and also taken away.
isGrayOutInverted() - Method in class com.equitysoft.components.IEButton
Indicates how the image is currently grayed.
isImageGrayOutEnabled() - Method in class com.equitysoft.components.IEButton
Returns a boolean value indicating if graying out is enabled.
isInGroup() - Method in class com.equitysoft.components.IEButton
Returns a value to indicate if the button is part of a group or not
isLitup() - Method in class com.equitysoft.components.IEButton
Returns a boolean to indicate if permanent highlighting is on (a true value).
isOpaque() - Method in class com.equitysoft.components.IEButton
Indicates if the button is to be drawn with an opaque background.
isOutlineDrawn() - Method in class com.equitysoft.components.IEButton
Returns a boolean value indicating if an outline is to be drawn around the button.
isSlidingTooltip() - Method in class com.equitysoft.components.IEButton
Indicates if the tooltip is set to slide.
isSticky() - Method in class com.equitysoft.components.IEButton
Returns a boolean value indicating if toggling is enabled.

L

LABEL_EAST - Static variable in class com.equitysoft.components.IEButton
The text position constant that places text as a label to the right of the button's image.
LABEL_NORTH - Static variable in class com.equitysoft.components.IEButton
The text position constant that places text as a label above the button's image or in the case of the tooltip position, above the button.
LABEL_SOUTH - Static variable in class com.equitysoft.components.IEButton
The text position constant that places text as a label underneath the button's image or in the case of the tooltip position, below the button.
LABEL_WEST - Static variable in class com.equitysoft.components.IEButton
The text position constant that places text as a label to the left of the button's image.

P

paint(Graphics) - Method in class com.equitysoft.components.IEButton
Invoked by update , not usually invoked directly
paintBorder(Graphics, int, int, boolean, Color, int, boolean, Color) - Method in class com.equitysoft.components.IEButton
A method that paints the button border.

R

removeActionListener(ActionListener) - Method in class com.equitysoft.components.IEButton
Remove this ActionListener from the buttons list of ActionListeners.
removeEnterExitListener(Object) - Method in class com.equitysoft.components.IEButton
Remove this EnterExitListener from the buttons list of EnterExitListeners.

S

setActionCommand(String) - Method in class com.equitysoft.components.IEButton
Sets the actionCommand of the ActionEvent delivered when the button is pushed.
setBorderInset(int) - Method in class com.equitysoft.components.IEButton
Sets the button's border inset in pixels.
setBorderWidth(int) - Method in class com.equitysoft.components.IEButton
Sets the width of the raised border around the button's edge
setButtonBackground(Color) - Method in class com.equitysoft.components.IEButton
Sets the background color of the button.
setDepressed(boolean) - Method in class com.equitysoft.components.IEButton
Sets a sticky button to be depressed or to be released from a depressed state.
setDownDarkened(boolean) - Method in class com.equitysoft.components.IEButton
Decides if the image is to darkened or not when the button is pushed.
setEnabled(boolean) - Method in class com.equitysoft.components.IEButton
Invoked to enable or disable the button.
setFocusTraversable(boolean) - Method in class com.equitysoft.components.IEButton
Sets the value which is returned by isFocusTraversable().
setFont(Font) - Method in class com.equitysoft.components.IEButton
Sets the font of the text.
setGrayOutInverted(boolean) - Method in class com.equitysoft.components.IEButton
Changes the way the image is grayed-out.
setImage(Image) - Method in class com.equitysoft.components.IEButton
Changes the image at runtime.
setImageFile(String) - Method in class com.equitysoft.components.IEButton
This method invoked by JavaBean manipulation tools to set the image.
setImageGrayOutEnabled(boolean) - Method in class com.equitysoft.components.IEButton
Enables or disables the graying out of the image on a button.
setInGroup(boolean) - Method in class com.equitysoft.components.IEButton
Designates a sticky button to be part of a single mutually exclusive group of IEButton instances that are all sticky.
setLitup(boolean) - Method in class com.equitysoft.components.IEButton
Turns on or off permanent highlighting.
setOpaque(boolean) - Method in class com.equitysoft.components.IEButton
Sets the button background to be opaque in which case the background is filled by a single color.
setOutlineDrawn(boolean) - Method in class com.equitysoft.components.IEButton
Turns on or off the drawing of an outline around the button.
setPreferredSize(Dimension) - Method in class com.equitysoft.components.IEButton
Sets the preferred size of the button.
setRepeat(boolean) - Method in class com.equitysoft.components.IEButton
Causes the ActionEvent to be fired repeatedly if the button is held down.
setRepeatInterval(long) - Method in class com.equitysoft.components.IEButton
Sets the repeat interval of ActionEvent firings when the button is held down and willRepeat() returns a value of true.
setSlidingTooltip(boolean) - Method in class com.equitysoft.components.IEButton
Sets the way in which the tooltip appears if it is used.
setSticky(boolean) - Method in class com.equitysoft.components.IEButton
Turns on or off button toggling.
setText(String) - Method in class com.equitysoft.components.IEButton
Sets the text used for the button's text label or tooltip depending on the boolean value in the constructor.
setTextColor(Color) - Method in class com.equitysoft.components.IEButton
Sets the color with which the text is drawn.
setTextPosition(int) - Method in class com.equitysoft.components.IEButton
Sets the position of the text relative to the image.
setTooltipBackground(Color) - Method in class com.equitysoft.components.IEButton
Sets the color used for the background of the tooltip.
setTooltipPosition(int) - Method in class com.equitysoft.components.IEButton
Sets the position of the tooltip.
setTooltipTimeDelay(long) - Method in class com.equitysoft.components.IEButton
Sets the delay (in MilliSeconds) before a tooltip appears after the cursor is moved over the button.

T

TOOLTIP - Static variable in class com.equitysoft.components.IEButton
The text position constant that designates that the button's text be used as a tooltip.

U

update(Graphics) - Method in class com.equitysoft.components.IEButton
Invoked by Component.repaint() - not usually invoked directly

W

willRepeat() - Method in class com.equitysoft.components.IEButton
Indicates if the button will repeatedly fire the ActionEvent if the button is held down.

A B C E F G I L P R S T U W