Skip to content
Snippets Groups Projects
Commit 3bb0a98a authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

make BigDataViewer constructor public and allow access to some internals

parent 11e3dc53
Branches
Tags
No related merge requests found
......@@ -240,7 +240,7 @@ public class BigDataViewer
else throw new IllegalArgumentException( "ImgLoader of type " + type.getClass() + " not supported." );
}
protected BigDataViewer( final String xmlFilename, final String windowTitle, final ProgressWriter progressWriter ) throws SpimDataException
public BigDataViewer( final String xmlFilename, final String windowTitle, final ProgressWriter progressWriter ) throws SpimDataException
{
final int width = 800;
final int height = 600;
......@@ -380,6 +380,16 @@ public class BigDataViewer
// ( ( Hdf5ImageLoader ) seq.imgLoader ).initCachedDimensionsFromHdf5( false );
}
public ViewerPanel getViewer()
{
return viewer;
}
public SetupAssignments getSetupAssignments()
{
return setupAssignments;
}
protected boolean tryLoadSettings( final String xmlFilename )
{
proposedSettingsFile = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment