Author: laylaoesper
Date: 2010-07-26 11:17:31 -0700 (Mon, 26 Jul 2010)
New Revision: 21026
Modified:
csplugins/trunk/soc/layla/SemanticSummary/jars/SemanticSummary.jar
csplugins/trunk/soc/layla/SemanticSummary/src/cytoscape/csplugins/semanticsummary/SemanticSummaryInputPanel.java
Log:
Update tooltip for Clustering Stuff.
Modified: csplugins/trunk/soc/layla/SemanticSummary/jars/SemanticSummary.jar
===================================================================
(Binary files differ)
Modified:
csplugins/trunk/soc/layla/SemanticSummary/src/cytoscape/csplugins/semanticsummary/SemanticSummaryInputPanel.java
===================================================================
---
csplugins/trunk/soc/layla/SemanticSummary/src/cytoscape/csplugins/semanticsummary/SemanticSummaryInputPanel.java
2010-07-26 17:32:57 UTC (rev 21025)
+++
csplugins/trunk/soc/layla/SemanticSummary/src/cytoscape/csplugins/semanticsummary/SemanticSummaryInputPanel.java
2010-07-26 18:17:31 UTC (rev 21026)
@@ -504,6 +504,7 @@
gridBagConstraints = new GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 2;
+ gridBagConstraints.gridwidth = 3;
gridBagConstraints.anchor = GridBagConstraints.WEST;
gridBagConstraints.insets = new Insets(5,0,0,0);
wordPanel.add(numExclusion, gridBagConstraints);
@@ -540,8 +541,14 @@
cmbStyle.setEditable(false);
Dimension d = cmbStyle.getPreferredSize();
cmbStyle.setPreferredSize(new Dimension(15, d.height));
- cmbStyle.setToolTipText("Visual style for the cloud layout");
+ StringBuffer toolTip = new StringBuffer();
+ toolTip.append("<html>" + "--Visual style for the cloud layout--"
+"<br>");
+ toolTip.append("<b>Clustered:</b> If a style with clustering is
selected, then the cloud will be comprised of groups of words." + "<br>");
+ toolTip.append("Each cluster is build by analyzing which words
appear next to each other and what order they appear." + "<br>");
+ toolTip.append("<b> No Clustering:</b> When a non-clustering option
is selected, words appear in decreasing order of of size.");
+ cmbStyle.setToolTipText(toolTip.toString());
+
GridBagConstraints gridBagConstraints = new
GridBagConstraints();
gridBagConstraints.gridx = 0;
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.