|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.awt.Component java.awt.Container javax.swing.JComponent javax.swing.AbstractButton javax.swing.JButton com.jidesoft.swing.JideButton
public class JideButton
JideButton is a replacement for JButton when it is used on toolbar (or command bar in the case of JIDE Action Framework).
Nested Class Summary |
---|
Nested classes/interfaces inherited from class javax.swing.JButton |
---|
JButton.AccessibleJButton |
Nested classes/interfaces inherited from class javax.swing.AbstractButton |
---|
AbstractButton.AccessibleAbstractButton, AbstractButton.ButtonChangeListener |
Nested classes/interfaces inherited from class javax.swing.JComponent |
---|
JComponent.AccessibleJComponent |
Nested classes/interfaces inherited from class java.awt.Container |
---|
Container.AccessibleAWTContainer |
Nested classes/interfaces inherited from class java.awt.Component |
---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary | |
---|---|
static String |
CLIENT_PROPERTY_HIDE_POPUPMENU
By default, if a JideButton is added to a popup menu, clicking on the button will dismiss the popup menu. |
static String |
PROPERTY_ALWAYS_SHOW_HYPERLINK
Bound property name for always show hyperlink property. |
Fields inherited from class javax.swing.JComponent |
---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
Fields inherited from class java.awt.Component |
---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface com.jidesoft.swing.Alignable |
---|
PROPERTY_ORIENTATION |
Fields inherited from interface com.jidesoft.swing.ButtonStyle |
---|
BUTTON_STYLE_PROPERTY, CLIENT_PROPERTY_SEGMENT_POSITION, FLAT_STYLE, HYPERLINK_STYLE, SEGMENT_POSITION_FIRST, SEGMENT_POSITION_LAST, SEGMENT_POSITION_MIDDLE, SEGMENT_POSITION_ONLY, TOOLBAR_STYLE, TOOLBOX_STYLE |
Fields inherited from interface javax.swing.SwingConstants |
---|
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
---|---|
JideButton()
Creates a button with no set text or icon. |
|
JideButton(Action a)
Creates a button where properties are taken from the Action supplied. |
|
JideButton(Icon icon)
Creates a button with an icon. |
|
JideButton(String text)
Creates a button with text. |
|
JideButton(String text,
Icon icon)
Creates a button with initial text and an icon. |
Method Summary | |
---|---|
Color |
getBackgroundOfState(int state)
Gets the background for different states. |
int |
getButtonStyle()
Gets the button style. |
Color |
getDefaultForeground()
|
Color |
getForegroundOfState(int state)
Gets the foreground for different states. |
int |
getOrientation()
The button orientation. |
String |
getUIClassID()
Returns a string that specifies the name of the L&F class that renders this component. |
boolean |
isAlwaysShowHyperlink()
Checks the alwaysShowHyperlink property value. |
void |
setAlwaysShowHyperlink(boolean alwaysShowHyperlink)
Sets the property if hyperlink (the underline) should be visible all the time. |
void |
setBackgroundOfState(int state,
Color color)
Sets the background for different states. |
void |
setButtonStyle(int buttonStyle)
Sets the button style. |
void |
setDefaultForeground(Color defaultForeground)
|
void |
setForegroundOfState(int state,
Color color)
Sets the foreground for different states. |
void |
setIcon(Icon defaultIcon)
|
void |
setOrientation(int orientation)
Changes the orientation. |
void |
setRolloverEnabled(boolean b)
|
void |
setText(String text)
|
boolean |
supportHorizontalOrientation()
return true if it supports horizontal orientation. |
boolean |
supportVerticalOrientation()
return true if it supports vertical orientation. |
void |
updateUI()
Resets the UI property to a value from the current look and feel. |
Methods inherited from class javax.swing.JButton |
---|
getAccessibleContext, isDefaultButton, isDefaultCapable, paramString, removeNotify, setDefaultCapable |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.jidesoft.swing.AlignmentSupport |
---|
getHorizontalAlignment, getVerticalAlignment, setHorizontalAlignment, setVerticalAlignment |
Field Detail |
---|
public static final String PROPERTY_ALWAYS_SHOW_HYPERLINK
public static final String CLIENT_PROPERTY_HIDE_POPUPMENU
Constructor Detail |
---|
public JideButton()
public JideButton(Icon icon)
icon
- the Icon image to display on the buttonpublic JideButton(String text)
text
- the text of the buttonpublic JideButton(Action a)
Action
supplied.
a
- the Action
used to specify the new buttonpublic JideButton(String text, Icon icon)
text
- the text of the buttonicon
- the Icon image to display on the buttonMethod Detail |
---|
public void updateUI()
updateUI
in class JButton
JComponent.updateUI()
public String getUIClassID()
getUIClassID
in class JButton
JComponent.getUIClassID()
,
UIDefaults.getUI(javax.swing.JComponent)
public int getOrientation()
getOrientation
in interface Alignable
public void setOrientation(int orientation)
Alignable
JideSwingUtilities.setOrientationOf(this, orientation);
- Specified by:
setOrientation
in interface Alignable
- Parameters:
orientation
- the new orientation
public boolean supportVerticalOrientation()
supportVerticalOrientation
in interface Alignable
public boolean supportHorizontalOrientation()
supportHorizontalOrientation
in interface Alignable
public int getButtonStyle()
getButtonStyle
in interface ButtonStyle
public void setButtonStyle(int buttonStyle)
setButtonStyle
in interface ButtonStyle
buttonStyle
- one of the following values: ButtonStyle.TOOLBAR_STYLE
(default), ButtonStyle.TOOLBOX_STYLE
, ButtonStyle.FLAT_STYLE
and ButtonStyle.HYPERLINK_STYLE
.public void setRolloverEnabled(boolean b)
setRolloverEnabled
in class AbstractButton
public void setText(String text)
setText
in class AbstractButton
public void setIcon(Icon defaultIcon)
setIcon
in class AbstractButton
public boolean isAlwaysShowHyperlink()
public void setAlwaysShowHyperlink(boolean alwaysShowHyperlink)
alwaysShowHyperlink
- a boolean value. True means the button will always show hyperlink. False means it will
show hyperlink only when mouse is over the button.public Color getDefaultForeground()
public void setDefaultForeground(Color defaultForeground)
public Color getBackgroundOfState(int state)
getBackgroundOfState
in interface ComponentStateSupport
state
- the button state. Valid values are ThemePainter.STATE_DEFAULT, ThemePainter.STATE_ROLLOVER,
ThemePainter.STATE_SELECTED and ThemePainter.STATE_PRESSED.
public void setBackgroundOfState(int state, Color color)
setBackgroundOfState
in interface ComponentStateSupport
state
- the button state. Valid values are ThemePainter.STATE_DEFAULT, ThemePainter.STATE_ROLLOVER,
ThemePainter.STATE_SELECTED and ThemePainter.STATE_PRESSED.color
- the new background for the state.public Color getForegroundOfState(int state)
getForegroundOfState
in interface ComponentStateSupport
state
- the button state. Valid values are ThemePainter.STATE_DEFAULT, ThemePainter.STATE_ROLLOVER,
ThemePainter.STATE_SELECTED and ThemePainter.STATE_PRESSED.
public void setForegroundOfState(int state, Color color)
setForegroundOfState
in interface ComponentStateSupport
state
- the button state. Valid values are ThemePainter.STATE_DEFAULT, ThemePainter.STATE_ROLLOVER,
ThemePainter.STATE_SELECTED and ThemePainter.STATE_PRESSED.color
- the new foreground for the state.
|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |