Author: mes
Date: 2010-11-22 16:05:58 -0800 (Mon, 22 Nov 2010)
New Revision: 22988
Modified:
core3/swing-application-impl/trunk/src/main/java/org/cytoscape/internal/view/CytoscapeDesktop.java
Log:
added status toolbar
Modified:
core3/swing-application-impl/trunk/src/main/java/org/cytoscape/internal/view/CytoscapeDesktop.java
===================================================================
---
core3/swing-application-impl/trunk/src/main/java/org/cytoscape/internal/view/CytoscapeDesktop.java
2010-11-23 00:05:09 UTC (rev 22987)
+++
core3/swing-application-impl/trunk/src/main/java/org/cytoscape/internal/view/CytoscapeDesktop.java
2010-11-23 00:05:58 UTC (rev 22988)
@@ -108,6 +108,7 @@
private final CytoscapeShutdown shutdown;
private final CyEventHelper cyEventHelper;
private final CyServiceRegistrar registrar;
+ private final JToolBar statusToolBar;
/**
* Creates a new CytoscapeDesktop object.
@@ -133,6 +134,10 @@
main_panel.add(masterPane, BorderLayout.CENTER);
main_panel.add(cyMenus.getJToolBar(), BorderLayout.NORTH);
+
+ statusToolBar = new JToolBar();
+ main_panel.add(statusToolBar, BorderLayout.SOUTH);
+
setJMenuBar(cyMenus.getJMenuBar());
//don't automatically close window. Let shutdown.exit(returnVal)
@@ -354,4 +359,8 @@
CytoPanelImp impl = getCytoPanelInternal(cp.getCytoPanelName());
impl.remove(cp);
}
+
+ public JToolBar getStatusToolBar() {
+ return statusToolBar;
+ }
}
--
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.