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


Java RTextScrollPane.setPreferredSize方法代码示例

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


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

示例1: addTab

import org.fife.ui.rtextarea.RTextScrollPane; //导入方法依赖的package包/类
public void addTab(String title, String content){
	//remove the add tab button first
	if(editable){
		System.out.println("Should be removing the +'s");
		for(int i = 0;i < getTabCount(); i++){
			Component comp = getTabComponentAt(i);
			if(comp instanceof AddTabPanel){
				int r = indexOfTabComponent(comp);
				if (r != -1) {
					System.out.println("+ foudn adn removed");
					this.remove(i);
				}
			}
		}
	}

	//add the new tab
	RSyntaxTextArea textArea = new RSyntaxTextArea(content);
	textArea.setTabSize(3);
	textArea.setCaretPosition(0);
	textArea.setMarkOccurrences(true);
	textArea.setCodeFoldingEnabled(true);
	textArea.setClearWhitespaceLinesEnabled(true);
	textArea.setSyntaxEditingStyle(org.fife.ui.rsyntaxtextarea.SyntaxConstants.SYNTAX_STYLE_JAVASCRIPT);
	textArea.setEditable(editable);
	RTextScrollPane scrollPane = new RTextScrollPane(textArea, true);//true/false is if line numbers should appear
	scrollPane.setPreferredSize(new Dimension(600,250));//This seems to be a quick fix for over expanding
	add(title, scrollPane);

	//replaces tab title with UI
	TabPanel titleUI = new TabPanel(title);
	titleUI.setClosable(editable);
	this.setTabComponentAt(getTabCount()-1, titleUI);

	//re-add the addTab(this amkes surde the add tab is on the end)
	if(editable){
		add("+", null);
		setTabComponentAt(getTabCount()-1, new AddTabPanel());
	}
	Window.autoUpdateJAutoPanels();
}
 
开发者ID:apocist,项目名称:eMafiaClient,代码行数:42,代码来源:TabbedPanel.java


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