javax.swing.plaf.basic.BasicSeparatorUI Java Examples

The following examples show how to use javax.swing.plaf.basic.BasicSeparatorUI. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DockingUtils.java    From ghidra with Apache License 2.0 5 votes vote down vote up
public static JSeparator createToolbarSeparator() {
	Dimension sepDim = new Dimension(2, ICON_SIZE + 2);
	JSeparator separator = new JSeparator(SwingConstants.VERTICAL);
	if (DockingWindowsLookAndFeelUtils.isUsingAquaUI(separator.getUI())) {
		separator.setUI(new BasicSeparatorUI());
	}
	separator.setPreferredSize(sepDim); // ugly work around to force height of separator
	return separator;
}