Package com.jidesoft.swing
Interface ButtonStyle
-
- All Known Implementing Classes:
CornerScroller
,HeaderBox
,JideButton
,JideSplitButton
,JideToggleButton
,JideToggleSplitButton
,NullJideButton
,SimpleScrollPane.ScrollButton
public interface ButtonStyle
The definitions of various button style. This is used byJideButton
andJideSplitButton
.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
BUTTON_STYLE_PROPERTY
static java.lang.String
CLIENT_PROPERTY_SEGMENT_POSITION
static int
FLAT_STYLE
static int
HYPERLINK_STYLE
static java.lang.String
SEGMENT_POSITION_FIRST
static java.lang.String
SEGMENT_POSITION_LAST
static java.lang.String
SEGMENT_POSITION_MIDDLE
static java.lang.String
SEGMENT_POSITION_ONLY
static int
TOOLBAR_STYLE
static int
TOOLBOX_STYLE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getButtonStyle()
Gets the button style.void
setButtonStyle(int buttonStyle)
Sets the button style.
-
-
-
Field Detail
-
BUTTON_STYLE_PROPERTY
static final java.lang.String BUTTON_STYLE_PROPERTY
- See Also:
- Constant Field Values
-
TOOLBAR_STYLE
static final int TOOLBAR_STYLE
- See Also:
- Constant Field Values
-
TOOLBOX_STYLE
static final int TOOLBOX_STYLE
- See Also:
- Constant Field Values
-
FLAT_STYLE
static final int FLAT_STYLE
- See Also:
- Constant Field Values
-
HYPERLINK_STYLE
static final int HYPERLINK_STYLE
- See Also:
- Constant Field Values
-
CLIENT_PROPERTY_SEGMENT_POSITION
static final java.lang.String CLIENT_PROPERTY_SEGMENT_POSITION
- See Also:
- Constant Field Values
-
SEGMENT_POSITION_FIRST
static final java.lang.String SEGMENT_POSITION_FIRST
- See Also:
- Constant Field Values
-
SEGMENT_POSITION_MIDDLE
static final java.lang.String SEGMENT_POSITION_MIDDLE
- See Also:
- Constant Field Values
-
SEGMENT_POSITION_LAST
static final java.lang.String SEGMENT_POSITION_LAST
- See Also:
- Constant Field Values
-
SEGMENT_POSITION_ONLY
static final java.lang.String SEGMENT_POSITION_ONLY
- See Also:
- Constant Field Values
-
-