|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.awt.Component
java.awt.Container
java.awt.Window
java.awt.Dialog
javax.swing.JDialog
com.compomics.util.gui.VennDiagramDialog
public class VennDiagramDialog
A dialog for creating and displaying Venn diagrams. (Work in progress...)
Nested Class Summary | |
---|---|
static class |
VennDiagramDialog.VennDiagramType
The supported Venn diagram types. |
Nested classes/interfaces inherited from class javax.swing.JDialog |
---|
JDialog.AccessibleJDialog |
Nested classes/interfaces inherited from class java.awt.Dialog |
---|
Dialog.AccessibleAWTDialog, Dialog.ModalExclusionType, Dialog.ModalityType |
Nested classes/interfaces inherited from class java.awt.Window |
---|
Window.AccessibleAWTWindow |
Nested classes/interfaces inherited from class java.awt.Container |
---|
Container.AccessibleAWTContainer |
Nested classes/interfaces inherited from class java.awt.Component |
---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
Field Summary |
---|
Fields inherited from class javax.swing.JDialog |
---|
accessibleContext, rootPane, rootPaneCheckingEnabled |
Fields inherited from class java.awt.Dialog |
---|
DEFAULT_MODALITY_TYPE |
Fields inherited from class java.awt.Component |
---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface javax.swing.WindowConstants |
---|
DISPOSE_ON_CLOSE, DO_NOTHING_ON_CLOSE, EXIT_ON_CLOSE, HIDE_ON_CLOSE |
Fields inherited from interface java.awt.image.ImageObserver |
---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
---|---|
VennDiagramDialog(Frame dialogParent,
Image normalIcon,
Image waitingIcon,
boolean modal)
Creates a new XYPlottingDialog. |
Method Summary | |
---|---|
org.jfree.chart.ChartPanel |
getChartPanel()
Returns the chart panel. |
VennDiagramDialog.VennDiagramType |
getCurrentVennDiagramType()
Returns the current Venn diagram type. |
String |
getDefaultExportFolder()
Returns the default folder used for the export. |
ArrayList<org.jfree.chart.entity.ChartEntity> |
getEntitiesForPoint(int viewX,
int viewY)
Returns a list of the entities at the given x, y view location. |
HashMap<String,String> |
getGroupNames()
Returns a standard map of the group names. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetAFourWay()
Returns the legend location of dataset A in a four way Venn diagram. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetAThreeWay()
Returns the legend location of Dataset A in a three way Venn diagram. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetBFourWay()
Returns the legend location of dataset B in a four way Venn diagram. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetBThreeWay()
Returns the legend location of dataset B in a three way Venn diagram. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetCFourWay()
Returns the legend location of dataset C in a four way Venn diagram. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetCThreeWay()
Returns the legend location of dataset C in a three way Venn diagram. |
no.uib.jsparklines.data.XYDataPoint |
getLegendDatasetDFourWay()
Returns the legend location of dataset D in a four way Venn diagram. |
Image |
getNormalIcon()
Returns the normal icon. |
Image |
getWaitingIcon()
Returns the waiting icon. |
static void |
main(String[] args)
Main method. |
void |
mouseClickedInChart(org.jfree.chart.ChartMouseEvent event)
Handles mouse clicks in the chart panel. |
void |
mouseMovedInChart(org.jfree.chart.ChartMouseEvent event)
Handles mouse movements in the chart panel. |
void |
setLegendDatasetAFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetAFourWay)
Set the legend location of Dataset A in a four way Venn diagram. |
void |
setLegendDatasetAThreeWay(no.uib.jsparklines.data.XYDataPoint legendDatasetAThreeWay)
Set the legend location of Dataset A in a three way Venn diagram. |
void |
setLegendDatasetBFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetBFourWay)
Set the legend location of Dataset B in a four way Venn diagram. |
void |
setLegendDatasetBThreeWay(no.uib.jsparklines.data.XYDataPoint legendDatasetBThreeWay)
Set the legend location of Dataset B in a three way Venn diagram. |
void |
setLegendDatasetCFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetCFourWay)
Set the legend location of Dataset C in a four way Venn diagram. |
void |
setLegendDatasetCThreeWay(no.uib.jsparklines.data.XYDataPoint legendDatasetCThreeWay)
Set the legend location of Dataset C in a three way Venn diagram. |
void |
setLegendDatasetDFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetDFourWay)
Set the legend location of Dataset D in a four way Venn diagram. |
void |
setSelectedExportFolder(String selectedFolder)
Set the default folder to use for exporting the graphics. |
void |
updatePlot()
Update the plot. |
HashMap<String,ArrayList<String>> |
vennDiagramMaker(ArrayList<String> groupA,
ArrayList<String> groupB,
ArrayList<String> groupC,
ArrayList<String> groupD)
Create the Venn diagram groupings based on the provided data. |
Methods inherited from class java.awt.Dialog |
---|
addNotify, getModalityType, getTitle, hide, isModal, isResizable, isUndecorated, setModal, setModalityType, setResizable, setTitle, setUndecorated, setVisible, show, toBack |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public VennDiagramDialog(Frame dialogParent, Image normalIcon, Image waitingIcon, boolean modal)
dialogParent
- the dialog parentmodal
- normalIcon
- the normal icon for the parent dialogwaitingIcon
- the icon to use when busyMethod Detail |
---|
public static void main(String[] args)
args
- public void updatePlot()
public void mouseClickedInChart(org.jfree.chart.ChartMouseEvent event)
event
- public void mouseMovedInChart(org.jfree.chart.ChartMouseEvent event)
event
- public ArrayList<org.jfree.chart.entity.ChartEntity> getEntitiesForPoint(int viewX, int viewY)
viewX
- the x locationviewY
- the y location
public void setSelectedExportFolder(String selectedFolder)
ExportGraphicsDialogParent
setSelectedExportFolder
in interface ExportGraphicsDialogParent
selectedFolder
- the default folderpublic String getDefaultExportFolder()
ExportGraphicsDialogParent
getDefaultExportFolder
in interface ExportGraphicsDialogParent
public HashMap<String,ArrayList<String>> vennDiagramMaker(ArrayList<String> groupA, ArrayList<String> groupB, ArrayList<String> groupC, ArrayList<String> groupD)
groupA
- groupB
- groupC
- groupD
-
public Image getNormalIcon()
ExportGraphicsDialogParent
getNormalIcon
in interface ExportGraphicsDialogParent
public Image getWaitingIcon()
ExportGraphicsDialogParent
getWaitingIcon
in interface ExportGraphicsDialogParent
public org.jfree.chart.ChartPanel getChartPanel()
public HashMap<String,String> getGroupNames()
public no.uib.jsparklines.data.XYDataPoint getLegendDatasetAThreeWay()
public void setLegendDatasetAThreeWay(no.uib.jsparklines.data.XYDataPoint legendDatasetAThreeWay)
legendDatasetAThreeWay
- the legendDatasetAThreeWay to setpublic no.uib.jsparklines.data.XYDataPoint getLegendDatasetBThreeWay()
public void setLegendDatasetBThreeWay(no.uib.jsparklines.data.XYDataPoint legendDatasetBThreeWay)
legendDatasetBThreeWay
- the legendDatasetBThreeWay to setpublic no.uib.jsparklines.data.XYDataPoint getLegendDatasetCThreeWay()
public void setLegendDatasetCThreeWay(no.uib.jsparklines.data.XYDataPoint legendDatasetCThreeWay)
legendDatasetCThreeWay
- the legendDatasetCThreeWay to setpublic no.uib.jsparklines.data.XYDataPoint getLegendDatasetAFourWay()
public void setLegendDatasetAFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetAFourWay)
legendDatasetAFourWay
- the legendDatasetAFourWay to setpublic no.uib.jsparklines.data.XYDataPoint getLegendDatasetBFourWay()
public void setLegendDatasetBFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetBFourWay)
legendDatasetBFourWay
- the legendDatasetBFourWay to setpublic no.uib.jsparklines.data.XYDataPoint getLegendDatasetCFourWay()
public void setLegendDatasetCFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetCFourWay)
legendDatasetCFourWay
- the legendDatasetCFourWay to setpublic no.uib.jsparklines.data.XYDataPoint getLegendDatasetDFourWay()
public void setLegendDatasetDFourWay(no.uib.jsparklines.data.XYDataPoint legendDatasetDFourWay)
legendDatasetDFourWay
- the legendDatasetDFourWay to setpublic VennDiagramDialog.VennDiagramType getCurrentVennDiagramType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |