當前位置: 首頁>>代碼示例>>Java>>正文


Java RSyntaxTextArea.setTabsEmulated方法代碼示例

本文整理匯總了Java中org.fife.ui.rsyntaxtextarea.RSyntaxTextArea.setTabsEmulated方法的典型用法代碼示例。如果您正苦於以下問題:Java RSyntaxTextArea.setTabsEmulated方法的具體用法?Java RSyntaxTextArea.setTabsEmulated怎麽用?Java RSyntaxTextArea.setTabsEmulated使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.fife.ui.rsyntaxtextarea.RSyntaxTextArea的用法示例。


在下文中一共展示了RSyntaxTextArea.setTabsEmulated方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: PrologSourceEditor

import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea; //導入方法依賴的package包/類
public PrologSourceEditor() {
  super("Editor", new RSyntaxTextArea());

  final RSyntaxTextArea theEditor = (RSyntaxTextArea) this.editor;
  theEditor.setTabsEmulated(true);
  theEditor.setSyntaxEditingStyle("text/jprol");
  theEditor.getSyntaxScheme().getStyle(Token.VARIABLE).foreground = Color.RED.darker();
  theEditor.getSyntaxScheme().getStyle(Token.VARIABLE).font = theEditor.getFont().deriveFont(Font.BOLD);
  
  theEditor.getInputMap().put(KeyStroke.getKeyStroke("control Z"), "none");
  theEditor.getInputMap().put(KeyStroke.getKeyStroke("control Y"), "none");
  
  theEditor.setAntiAliasingEnabled(true);
  theEditor.setBracketMatchingEnabled(true);
  theEditor.setCodeFoldingEnabled(true);

  removePropertyFromList("EdWordWrap");

  editor.setForeground(Color.BLACK);
  editor.setBackground(Color.WHITE);
  editor.setCaretColor(Color.BLACK);
  editor.setFont(new Font("Courier", Font.BOLD, 14));

  editor.setVisible(true);

  setEnabled(true);

  this.undoManager = new RUndoManager(theEditor);
}
 
開發者ID:raydac,項目名稱:jprol,代碼行數:30,代碼來源:PrologSourceEditor.java

示例2: MacroEditor

import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea; //導入方法依賴的package包/類
public MacroEditor() {
  setLayout(new BorderLayout(0, 0));

  SCToolBar toolBar = new SCToolBar();
  toolBar.setFocusable(false);
  toolBar.setFloatable(false);
  add(toolBar, BorderLayout.NORTH);

  toolBar.add("macro:Open", AwesomeIconConstants.FA_FOLDER_OPEN_O,
      CoreBundle.get("key.open") + "...");
  toolBar.add("macro:Save", AwesomeIconConstants.FA_SAVE, CoreBundle.get("key.save") + "...");
  toolBar.addSeparator();
  JButton startRecordButton = toolBar.add("macro:ToggleRecordingMacro",
      AwesomeIconConstants.FA_CIRCLE, CoreBundle.get("key.startRecordMacro"));
  JButton stopRecordButton = toolBar.add("macro:ToggleRecordingMacro",
      AwesomeIconConstants.FA_STOP, CoreBundle.get("key.stopRecordMacro"));
  stopRecordButton.setVisible(false);
  toolBar.addSeparator();
  toolBar.add("macro:Run", AwesomeIconConstants.FA_PLAY, CoreBundle.get("key.run"));

  MacroRecorder.RECORDING
      .addValueChangedListener(new Consumer<Condition.ConditionValueChangeEvent>() {
        @Override
        public void accept(ConditionValueChangeEvent t) {
          startRecordButton.setVisible(!t.newValue);
          stopRecordButton.setVisible(t.newValue);
        }
      });

  textArea = new RSyntaxTextArea();
  // textArea.setWrapStyleWord(true);
  // textArea.setLineWrap(true);
  textArea.setTabSize(2);
  textArea.setSyntaxEditingStyle(SyntaxConstants.SYNTAX_STYLE_JAVASCRIPT);
  textArea.setCodeFoldingEnabled(true);
  textArea.setMarkOccurrences(true);
  textArea.setTabsEmulated(true);
  installAutoComplete(textArea);

  RTextScrollPane scrollPane = new RTextScrollPane(textArea);
  scrollPane.setBorder(
      BorderFactory.createMatteBorder(1, 0, 0, 0, UIConstants.getDefaultBorderColor()));
  add(scrollPane, BorderLayout.CENTER);

  MacroRecorder.setMacroAppendListener(lines -> {
    textArea.setText(String.join("\n", lines));
  });
}
 
開發者ID:kohii,項目名稱:smoothcsv,代碼行數:49,代碼來源:MacroEditor.java


注:本文中的org.fife.ui.rsyntaxtextarea.RSyntaxTextArea.setTabsEmulated方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。