|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4.OurSyntaxWidget
public final class OurSyntaxWidget
Graphical syntax-highlighting editor.
Thread Safety: Can be called only by the AWT event thread
Field Summary | |
---|---|
Listeners |
listeners
The current list of listeners; possible events are { STATUS_CHANGE, FOCUSED, CTRL_PAGE_UP, CTRL_PAGE_DOWN, CARET_MOVED }. |
javax.swing.JComponent |
obj1
This is an optional JComponent annotation. |
javax.swing.JComponent |
obj2
This is an optional JComponent annotation. |
Constructor Summary | |
---|---|
OurSyntaxWidget()
Constructs a syntax-highlighting widget. |
|
OurSyntaxWidget(boolean enableSyntax,
java.lang.String text,
java.lang.String fontName,
int fontSize,
int tabSize,
javax.swing.JComponent obj1,
javax.swing.JComponent obj2)
Constructs a syntax-highlighting widget. |
Method Summary | |
---|---|
void |
addTo(javax.swing.JComponent newParent,
java.lang.Object constraint)
Add this object into the given container. |
boolean |
canRedo()
Returns true if we can perform redo right now. |
boolean |
canUndo()
Returns true if we can perform undo right now. |
void |
clearUndo()
Clear the undo history. |
void |
copy()
Copy the current selection into the clipboard. |
void |
cut()
Cut the current selection into the clipboard. |
int |
getCaret()
Return the caret position. |
java.lang.String |
getFilename()
Returns the filename. |
int |
getLineCount()
Return the number of lines represented by the current text (where partial line counts as a line). |
int |
getLineOfOffset(int offset)
Return the line number that the offset is in (If "offset" argument is too large, it will just return do_getLineCount()-1). |
int |
getLineStartOffset(int line)
Return the starting offset of the given line (If "line" argument is too large, it will return the last line's starting offset) |
java.lang.String |
getText()
Return the entire text. |
boolean |
isFile()
Returns whether this textarea is based on an actual disk file. |
boolean |
modified()
Returns the modified-or-not flag. |
void |
moveCaret(int a,
int b)
Select the content between offset a and offset b, and move the caret to offset b. |
void |
paste()
Paste the current clipboard content. |
void |
redo()
Perform redo if possible. |
void |
requestFocusInWindow()
Transfer focus to this component. |
void |
setText(java.lang.String text)
Change the entire text to the given text (and sets the modified flag) |
void |
undo()
Perform undo if possible. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public final Listeners listeners
public final javax.swing.JComponent obj1
public final javax.swing.JComponent obj2
Constructor Detail |
---|
public OurSyntaxWidget()
public OurSyntaxWidget(boolean enableSyntax, java.lang.String text, java.lang.String fontName, int fontSize, int tabSize, javax.swing.JComponent obj1, javax.swing.JComponent obj2)
Method Detail |
---|
public void addTo(javax.swing.JComponent newParent, java.lang.Object constraint)
public java.lang.String getFilename()
public boolean modified()
public boolean isFile()
public int getLineCount()
For example: count("")==1, count("x")==1, count("x\n")==2, and count("x\ny")==2
public int getLineStartOffset(int line)
For example: given "ab\ncd\n", start(0)==0, start(1)==3, start(2...)==6. Same thing when given "ab\ncd\ne".
public int getLineOfOffset(int offset)
For example: given "ab\ncd\n", offset(0..2)==0, offset(3..5)==1, offset(6..)==2. Same thing when given "ab\ncd\ne".
public boolean canUndo()
public boolean canRedo()
public void undo()
public void redo()
public void clearUndo()
public int getCaret()
public void moveCaret(int a, int b)
public java.lang.String getText()
public void setText(java.lang.String text)
public void copy()
public void cut()
public void paste()
public void requestFocusInWindow()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |