|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4viz.VizGUI
public final class VizGUI
GUI main window for the visualizer.
Thread Safety: Can be called only by the AWT event thread.
Constructor Summary | |
---|---|
VizGUI(boolean standalone,
java.lang.String xmlFileName,
javax.swing.JMenu windowmenu)
Creates a new visualization GUI window; this method can only be called by the AWT event thread. |
|
VizGUI(boolean standalone,
java.lang.String xmlFileName,
javax.swing.JMenu windowmenu,
Computer enumerator,
Computer evaluator)
Creates a new visualization GUI window; this method can only be called by the AWT event thread. |
|
VizGUI(boolean standalone,
java.lang.String xmlFileName,
javax.swing.JMenu windowmenu,
Computer enumerator,
Computer evaluator,
boolean makeWindow)
Creates a new visualization GUI window; this method can only be called by the AWT event thread. |
Method Summary | |
---|---|
void |
addMinMaxActions(javax.swing.JMenu menu)
This method inserts "Minimize" and "Maximize" entries into a JMenu. |
void |
componentHidden(java.awt.event.ComponentEvent e)
Invoked when the Visualizationwindow is hidden. |
void |
componentMoved(java.awt.event.ComponentEvent e)
Invoked when the Visualizationwindow is moved. |
void |
componentResized(java.awt.event.ComponentEvent e)
Invoked when the Visualizationwindow is resized. |
void |
componentShown(java.awt.event.ComponentEvent e)
Invoked when the Visualizationwindow is shown. |
void |
doSetFontSize(int fontSize)
This method changes the font size for everything (except the graph) |
Runner |
doShowTree()
This method changes the display mode to show the instance as a tree (the return value is always null). |
Runner |
doShowTxt()
This method changes the display mode to show the equivalent dot text (the return value is always null). |
Runner |
doShowViz()
This method changes the display mode to show the instance as a graph (the return value is always null). |
ConstList<java.lang.String> |
getInstances()
Return the list of XML files loaded in this session so far. |
java.lang.String |
getInstanceTitle(java.lang.String xmlFileName)
Returns a short descriptive title associated with an XML file. |
javax.swing.JSplitPane |
getPanel()
Returns the JSplitPane containing the customization/evaluator panel in the left and the graph on the right. |
java.lang.String |
getThemeFilename()
Returns the current THM filename; "" if no theme file is currently loaded. |
GraphViewer |
getViewer()
Returns the GraphViewer that contains the graph; can be null if the graph hasn't been loaded yet. |
VizState |
getVizState()
Returns the current visualization settings (and you can call getOriginalInstance() on it to get the current instance). |
java.lang.String |
getXMLfilename()
Returns the current XML filename; "" if no file is currently loaded. |
boolean |
loadThemeFile(java.lang.String filename)
This method loads a specific theme file. |
void |
loadXML(java.lang.String fileName,
boolean forcefully)
Load the XML instance. |
boolean |
saveThemeFile(java.lang.String filename)
This method saves a specific current theme (if filename==null, it asks the user); returns true if it succeeded. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public VizGUI(boolean standalone, java.lang.String xmlFileName, javax.swing.JMenu windowmenu)
standalone
- - whether the JVM should shutdown after the last file is closedxmlFileName
- - the filename of the incoming XML file; "" if there's no file to openwindowmenu
- - if standalone==false and windowmenu!=null, then this will be added as a menu on the menubar
Note: if standalone==false and xmlFileName.length()==0, then we will initially hide the window.
public VizGUI(boolean standalone, java.lang.String xmlFileName, javax.swing.JMenu windowmenu, Computer enumerator, Computer evaluator)
standalone
- - whether the JVM should shutdown after the last file is closedxmlFileName
- - the filename of the incoming XML file; "" if there's no file to openwindowmenu
- - if standalone==false and windowmenu!=null, then this will be added as a menu on the menubarenumerator
- - if it's not null, it provides solution enumeration abilityevaluator
- - if it's not null, it provides solution evaluation ability
Note: if standalone==false and xmlFileName.length()==0, then we will initially hide the window.
public VizGUI(boolean standalone, java.lang.String xmlFileName, javax.swing.JMenu windowmenu, Computer enumerator, Computer evaluator, boolean makeWindow)
standalone
- - whether the JVM should shutdown after the last file is closedxmlFileName
- - the filename of the incoming XML file; "" if there's no file to openwindowmenu
- - if standalone==false and windowmenu!=null, then this will be added as a menu on the menubarenumerator
- - if it's not null, it provides solution enumeration abilityevaluator
- - if it's not null, it provides solution evaluation abilitymakeWindow
- - if false, then we will only construct the JSplitPane, without making the window
Note: if standalone==false and xmlFileName.length()==0 and makeWindow==true, then we will initially hide the window.
Method Detail |
---|
public VizState getVizState()
public javax.swing.JSplitPane getPanel()
public java.lang.String getThemeFilename()
public java.lang.String getXMLfilename()
public ConstList<java.lang.String> getInstances()
public java.lang.String getInstanceTitle(java.lang.String xmlFileName)
public void componentResized(java.awt.event.ComponentEvent e)
componentResized
in interface java.awt.event.ComponentListener
public void componentMoved(java.awt.event.ComponentEvent e)
componentMoved
in interface java.awt.event.ComponentListener
public void componentShown(java.awt.event.ComponentEvent e)
componentShown
in interface java.awt.event.ComponentListener
public void componentHidden(java.awt.event.ComponentEvent e)
componentHidden
in interface java.awt.event.ComponentListener
public GraphViewer getViewer()
public void loadXML(java.lang.String fileName, boolean forcefully)
public boolean loadThemeFile(java.lang.String filename)
public boolean saveThemeFile(java.lang.String filename)
public void doSetFontSize(int fontSize)
public void addMinMaxActions(javax.swing.JMenu menu)
public Runner doShowViz()
public Runner doShowTree()
public Runner doShowTxt()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |