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