本文整理汇总了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();
}