git @ Cat's Eye Technologies yoob / 2714724
Add subclass of JTextArea for program text. Chris Pressey 13 years ago
15 changed file(s) with 34 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
5151 $(CDIR)/AbstractDepiction.class \
5252 $(CDIR)/TapeDepiction.class \
5353 $(CDIR)/PlayfieldDepiction.class \
54 $(CDIR)/ProgramTextArea.class \
5455 $(CDIR)/TextAreasWorld.class \
5556 $(CDIR)/ContentPane.class \
5657 \
188189 $(CDIR)/PlayfieldDepiction.class: src/PlayfieldDepiction.java $(CDIR)/Playfield.class $(CDIR)/AbstractDepiction.class
189190 $(JAVAC) $(JFLAGS) -cp bin -d bin src/PlayfieldDepiction.java
190191
192 $(CDIR)/ProgramTextArea.class: src/ProgramTextArea.java
193 $(JAVAC) $(JFLAGS) -cp bin -d bin src/ProgramTextArea.java
194
191195 $(CDIR)/TextAreasWorld.class: src/TextAreasWorld.java $(CDIR)/World.class
192196 $(JAVAC) $(JFLAGS) -cp bin -d bin src/TextAreasWorld.java
193197
9393 private TapeDepiction[] td = {null, null, null, null, null};
9494 private JLabel statusBar;
9595 private Font editFont;
96 private JTextArea progBox, inputBox, outputBox, editBox, aboutBox;
96 private ProgramTextArea progBox;
97 private JTextArea inputBox, outputBox, editBox, aboutBox;
9798 private JScrollPane editScrollPane, aboutScrollPane;
9899 private JPanel interiorPanel, aboutPanel, editPanel;
99100 private JComponent languageComponent = null;
384385
385386 //---------- the program text -----------
386387 if (language.hasProgramText()) {
387 progBox = new JTextArea();
388 progBox = new ProgramTextArea();
388389 progBox.setEditable(false);
389390 progBox.setFont(editFont);
390391 JScrollPane progScrollPane = new JScrollPane(progBox);
567568
568569 refreshDepictions();
569570 this.setVisible(true);
570 if (language.hasProgramText()) {
571 progBox.requestFocus();
572 }
573571 }
574572
575573 protected void refreshDepictions() {
578576 if (language.hasProgramText()) {
579577 progBox.setText(currentState.getProgramText());
580578 int pos = currentState.getProgramPosition();
581 progBox.setCaretPosition(pos);
582 progBox.setSelectionStart(pos);
583 progBox.setSelectionEnd(pos + 1);
579 progBox.highlightPosition(pos);
584580 }
585581
586582 for (int pfNum = 0; pfNum <= language.numPlayfields(); pfNum++) {
0 /*
1 * A ProgramTextArea is a JTextArea which supports niceties for displaying
2 * the program text of a text-based esolang. Specifically, it supports
3 * highlighting the current area of the program being executed.
4 * The source code in this file has been placed into the public domain.
5 */
6 package tc.catseye.yoob;
7
8 import javax.swing.JTextArea;
9 import javax.swing.text.BadLocationException;
10 import javax.swing.text.DefaultHighlighter;
11 import javax.swing.text.Highlighter;
12
13 public class ProgramTextArea extends JTextArea {
14 public void highlightPosition(int position) {
15 // highlight all characters that appear in charsToHighlight
16 Highlighter h = getHighlighter();
17 h.removeAllHighlights();
18 try {
19 h.addHighlight(position, position + 1,
20 DefaultHighlighter.DefaultPainter);
21 } catch (BadLocationException ble) {
22 // oh well
23 }
24 }
25 }