-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from virtualcell/temporal-analysis
Measurement Script Feature Added to ImageJ Plugin
- Loading branch information
Showing
32 changed files
with
2,145 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
view-simulation-results/src/main/java/org/vcell/N5/UI/AdvancedFeatures.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package org.vcell.N5.UI; | ||
|
||
import javax.swing.*; | ||
import javax.swing.border.Border; | ||
import javax.swing.border.EtchedBorder; | ||
import java.awt.*; | ||
|
||
public class AdvancedFeatures extends JPanel { | ||
public final JButton openInMemory; | ||
public final JButton copyLink; | ||
public final JButton useN5Link; | ||
|
||
|
||
public AdvancedFeatures(){ | ||
Border lowerEtchedBorder = BorderFactory.createEtchedBorder(EtchedBorder.LOWERED); | ||
|
||
|
||
openInMemory = new JButton("Open In Memory"); | ||
JPanel checkBoxPanel = new JPanel(); | ||
// checkBoxPanel.add(openInMemory); | ||
|
||
JPanel buttonPanel = new JPanel(); | ||
copyLink = new JButton("Copy Link"); | ||
useN5Link = new JButton("Use N5 Link"); | ||
buttonPanel.add(copyLink); | ||
buttonPanel.add(useN5Link); | ||
buttonPanel.add(openInMemory); | ||
|
||
// setLayout(new BorderLayout()); | ||
// add(buttonPanel, BorderLayout.NORTH); | ||
// add(checkBoxPanel, BorderLayout.SOUTH); | ||
add(buttonPanel); | ||
this.setBorder(BorderFactory.createTitledBorder(lowerEtchedBorder, " Advanced Features ")); | ||
} | ||
} |
Oops, something went wrong.