当前位置: 首页>>代码示例>>Java>>正文


Java JScrollPane.LOWER_LEFT_CORNER属性代码示例

本文整理汇总了Java中javax.swing.JScrollPane.LOWER_LEFT_CORNER属性的典型用法代码示例。如果您正苦于以下问题:Java JScrollPane.LOWER_LEFT_CORNER属性的具体用法?Java JScrollPane.LOWER_LEFT_CORNER怎么用?Java JScrollPane.LOWER_LEFT_CORNER使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.swing.JScrollPane的用法示例。


在下文中一共展示了JScrollPane.LOWER_LEFT_CORNER属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: AutoCompletePopupWindow

/**
 * Constructor.
 *
 * @param parent The parent window (hosting the text component).
 * @param ac The auto-completion instance.
 */
public AutoCompletePopupWindow(Window parent, final AutoCompletion ac) {

	super(parent);
	ComponentOrientation o = ac.getTextComponentOrientation();

	this.ac = ac;
	model = new CompletionListModel();
	list = new PopupList(model);

	list.setCellRenderer(new DelegatingCellRenderer());
	list.addListSelectionListener(this);
	list.addMouseListener(this);

	JPanel contentPane = new JPanel(new BorderLayout());
	JScrollPane sp = new JScrollPane(list,
						JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
						JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);

	// In 1.4, JScrollPane.setCorner() has a bug where it won't accept
	// JScrollPane.LOWER_TRAILING_CORNER, even though that constant is
	// defined.  So we have to put the logic added in 1.5 to handle it
	// here.
	JPanel corner = new SizeGrip();
	//sp.setCorner(JScrollPane.LOWER_TRAILING_CORNER, corner);
	boolean isLeftToRight = o.isLeftToRight();
    String str = isLeftToRight ? JScrollPane.LOWER_RIGHT_CORNER :
    								JScrollPane.LOWER_LEFT_CORNER;
    sp.setCorner(str, corner);

	contentPane.add(sp);
	setContentPane(contentPane);
	applyComponentOrientation(o);

	// Give apps a chance to decorate us with drop shadows, etc.
	if (Util.getShouldAllowDecoratingMainAutoCompleteWindows()) {
		PopupWindowDecorator decorator = PopupWindowDecorator.get();
		if (decorator!=null) {
			decorator.decorate(this);
		}
	}

	pack();

	setFocusableWindowState(false);

	lastLine = -1;

}
 
开发者ID:Thecarisma,项目名称:powertext,代码行数:54,代码来源:AutoCompletePopupWindow.java


注:本文中的javax.swing.JScrollPane.LOWER_LEFT_CORNER属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。