The status bar Bean has the following information and Customizer functions.
See
"Package Guide"- JFStatusbar
Property information
Name | Type | Reference | Setting | Explanation |
---|---|---|---|---|
background | java.awt | Y | Y | Background color |
componentOrientation | java.awt | Y | Y | The orientation of the string. It depends on the language |
enableMenu | boolean | Y | Y | Whether to display the popup menu |
enableToolTip | boolean | Y | Y | Whether to display the tool tip |
enabled | boolean | Y | Y | Whether enabled |
focusTraversalKeysEnabled | boolean | Y | Y | Whether the focus traversal key is available |
focusable | boolean | Y | Y | Whether the focus can be set |
font | java.awt | Y | Y | Font |
foreground | java.awt | Y | Y | Foreground color |
height | int | Y | Y | Pane height |
ignoreRepaint | boolean | Y | Y | Whether the paint message of the operating system should be ignored |
image | (Array) | (Array) | (Array) | Pane image |
indexOfProgressbar | int | Y | Pane to display the progress bar | |
insets | java.awt | Y | Y | Inset |
inside | boolean | Y | Pane is/is not in the screen | |
locale | java.util | Y | Y | Locale information |
name | java.lang | Y | Y | Name |
paneAlignmentHorizontal | com.fujitsu.jbk.gui | Y | Display position of pane horizontal characters | |
paneAlignmentVertical | com.fujitsu.jbk.gui | Y | Display position of pane vertical characters | |
paneBackground | com.fujitsu.jbk.gui | Y | Background color of pane | |
paneBorderType | com.fujitsu.jbk.gui | Y | Pane border type | |
paneBorderWidth | com.fujitsu.jbk.gui | Y | Pane border width | |
paneBounds | (Array) | (Array) | Pane draw position | |
paneFont | com.fujitsu.jbk.gui | Y | Pane font | |
paneForeground | com.fujitsu.jbk.gui | Y | Foreground color of pane | |
paneMode | int | Y | Y | Pane position mode |
paneVisible | com.fujitsu.jbk.gui | Y | Pane display/no display | |
paneWidth | com.fujitsu.jbk.gui | Y | Pane width | |
parts | int | Y | Y | Number of panes |
remoteFont | boolean | Y | Whether the registered font is a remote font | |
spacing | int | Y | Y | Gap between panes |
text | com.fujitsu.jbk.gui | Y | Pane character string | |
toolTipText | java.lang | Y | Y | Tool tip text |
visible | boolean | Y | Y | Whether visible |
Event information
Name | Listener | Addition/removal | Method | Explanation |
---|---|---|---|---|
action | java.awt.event | addActionListener | actionPerformed | Is issued when the pane is clicked. |
component | java.awt.event | addComponentListener | componentResized | Is issued when the component status changes. |
componentMoved | ||||
componentShown | ||||
componentHidden | ||||
focus | java.awt.event | addFocusListener | focusGained | Is issued when the focus moves. |
focusLost | ||||
inputMethod | java.awt.event | addInputMethodListener | caretPositionChanged | Is issued when the input method status changes. |
inputMethodTextChanged | ||||
key | java.awt.event | addKeyListener | keyTyped | Is issued by key operation. |
keyPressed | ||||
keyReleased | ||||
mouse | java.awt.event | addMouseListener | mouseClicked | Is issued by mouse operation. |
mousePressed | ||||
mouseReleased | ||||
mouseEntered | ||||
mouseExited | ||||
mouseMotion | java.awt.event | addMouseMotionListener | mouseDragged | Is issued when the mouse moves. |
mouseMoved | ||||
mouseWheel | java.awt.event | addMouseWheelListener | mouseWheelMoved | Is issued by mouse wheel operation. |
propertyChange | java.beans | addPropertyChangeListener | propertyChange | Is issued when the property changes. |
Method information
Name | Parameters | Explanation |
---|---|---|
hideToolTip | Erases the tool tip. | |
requestFocus | Requests an input focus. | |
showToolTip | java.lang | Displays the tool tip. |
java.awt | ||
java.awt | ||
long | ||
transferFocus | Moves the focus to the next component. |
Customizer
Pane
Set the status bar pane (text display area) attributes.
In the initial status, pane attributes cannot be set because the status bar is not defined. First, set the number of panes in the 'pane' property, then set the attributes of each pane. To edit the pane attribute, specify the pane index.
Set the number of panes. Specify 0 to 2147483647 as the number of panes.
Specify the pane index. For the index, set a series of positive integers starting at 0. The maximum value of the index is the number of panes minus 1.
Set the text of the pane specified by 'Index'.
Set the width of the pane specified by 'Index' with a pixel value. Specify 0 to 2147483647 as the width of the pane.
Select the horizontal display position of the strings in the pane set by 'Index' from among Left justified, Centered or Right justified.
Select the vertical display position of the strings in the pane set by index from among Top-justified, Centered or Bottom-justified.
Set the font of the pane specified by 'Index'. When the button is pressed, [Font] setting dialog is displayed.
Set the foreground color and background color of the pane specified by 'Index'. When the button is pressed, [Foreground Color/Background Color] setting dialog is displayed.
Select the border type of the pane specified by 'Index' from among Flag, Convex, or Concave.
Set the border width of the pane specified by 'Index' with a pixel value. Specify 0 to 5 as the border width.
Set display/no display for the pane specified by 'Index'. If this item is checked, the pane is displayed.
Paint
Sets the status bar display attributes.
Set the upper inset with a pixel value. Specify from -2147483648 to 2147483647 as the inset upper.
Set the left inset with a pixel value. Specify from -2147483648 to 2147483647 as the inset left.
Set the bottom inset with a pixel value. Specify from -2147483648 to 2147483647 as the inset bottom.
Set the right inset with a pixel value. Specify from -2147483648 to 2147483647 as the inset right.
Set the height with a pixel value. Specify 0 to 2147483647 as the height.
Set the gap between panes with a pixel value. Specify 0 to 2147483647 as the gap between panes.
Select the pane position mode from Left justified/Right justified.
When left-justified is selected, the right pane is adjusted (shrunk) according to the status bar size. When right-justified is selected, the left pane is adjusted (shrunk) according to the status bar size.