|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4.OurTabbedSyntaxWidget
public final class OurTabbedSyntaxWidget
Graphical multi-tabbed syntax-highlighting editor.
Thread Safety: Can be called only by the AWT event thread.
Invariant: each tab has distinct file name.
Field Summary | |
---|---|
Listeners |
listeners
The current list of listeners; possible events are { STATUS_CHANGE, FOCUSED, CARET_MOVED }. |
Constructor Summary | |
---|---|
OurTabbedSyntaxWidget(java.lang.String fontName,
int fontSize,
int tabSize)
Constructs a tabbed editor pane. |
Method Summary | |
---|---|
void |
addTo(javax.swing.JComponent newParent,
java.lang.Object constraint)
Add this object into the given container. |
void |
clearShade()
Removes all highlights from every text buffer, then adjust the TAB LABEL COLOR if necessary. |
void |
close()
Close the current tab (then create a new empty tab if there were no tabs remaining) |
boolean |
closeAll()
Close every tab then create a new empty tab; returns true iff success. |
int |
count()
Returns the number of tabs. |
void |
enableSyntax(boolean flag)
Enables or disables syntax highlighting. |
OurSyntaxWidget |
get()
Returns the JTextArea of the current text buffer. |
java.util.List<java.lang.String> |
getFilenames()
Returns the list of filenames corresponding to each text buffer. |
boolean |
modified(int i)
True if the i-th text buffer has been modified since it was last loaded/saved |
boolean |
newtab(java.lang.String filename)
Create a new tab with the given filename (if filename==null, we'll create a blank tab instead) |
void |
next()
Switches to the next tab. |
void |
prev()
Switches to the previous tab. |
void |
reloadAll()
Refresh all tabs. |
java.lang.String |
save(boolean alwaysPickNewName)
Save the current tab content to the file system. |
void |
setFont(java.lang.String name,
int size,
int tabSize)
Changes the font name, font size, and tabsize of every text buffer. |
void |
shade(java.lang.Iterable<Pos> set,
java.awt.Color color,
boolean clearOldHighlightsFirst)
Highlights the text editor, based on the location information in the set of Pos objects. |
void |
shade(Pos pos)
Highlights the text editor, based on the location information in the Pos object. |
java.util.Map<java.lang.String,java.lang.String> |
takeSnapshot()
Return a modifiable map from each filename to its text content (Note: changes to the map does NOT affect this object) |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public final Listeners listeners
Constructor Detail |
---|
public OurTabbedSyntaxWidget(java.lang.String fontName, int fontSize, int tabSize)
Method Detail |
---|
public void addTo(javax.swing.JComponent newParent, java.lang.Object constraint)
public void clearShade()
public void reloadAll()
public java.lang.String save(boolean alwaysPickNewName)
alwaysPickNewName
- - if true, it will always pop up a File Selection dialog box to ask for the filename
public void close()
public boolean closeAll()
public int count()
public java.util.Map<java.lang.String,java.lang.String> takeSnapshot()
public java.util.List<java.lang.String> getFilenames()
public void setFont(java.lang.String name, int size, int tabSize)
public void enableSyntax(boolean flag)
public OurSyntaxWidget get()
public boolean modified(int i)
public void prev()
public void next()
public boolean newtab(java.lang.String filename)
If a text buffer with that filename already exists, we will just switch to it; else we'll read that file into a new tab.
public void shade(java.lang.Iterable<Pos> set, java.awt.Color color, boolean clearOldHighlightsFirst)
public void shade(Pos pos)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |