| Interface | Description |
|---|---|
| ContentAssistable |
A component (such as a text field) that supports content assist.
|
| Class | Description |
|---|---|
| AssistanceIconPanel |
A panel meant to be displayed alongside a text component, that can display
assistance icons for that text component.
|
| CollapsibleSectionPanel |
A panel that can show or hide contents anchored to its bottom via a
shortcut.
|
| DecorativeIconPanel |
A panel that displays an 8x8 decorative icon for a component, such as a
text field or combo box.
|
| EscapableDialog |
A dialog that closes itself when the Escape key is pressed.
|
| GoToDialog |
A "Go To" dialog allowing you to go to a specific line number in an
instance of RSyntaxTextArea.
|
| MaxWidthComboBox<E> |
A combo box whose width cannot go over a specified value.
|
| RComboBoxModel<E> |
A combo box model that limits the number of items the combo box will
"remember." You can use it like so:
RComboBoxModel model = new RComboBoxModel();model.setMaxNumElements(10);JComboBox comboBox = new JComboBox(model);It also won't let you add an item to the combo box twice (i.e., no duplicates), and it adds new items to the beginning of the list, not the end (as JComboBox's do by default).It defaults to 8 elements remembered. |
| ResizableFrameContentPane |
A panel to be used as the content pane for
JDialogs
and JFrames that are resizable. |
| SizeGripIcon |
An icon that looks like a Windows 98 or XP-style size grip.
|
| TextFilePropertiesDialog |
A dialog that displays the properties of an individual text file being
edited by a
TextEditorPane. |
| UIUtil |
Utility methods for
org.fife.rsta.ui GUI components. |