- Timestamp:
- 07/04/08 13:41:43 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/SRC/org/openmicroscopy/shoola/agents/imviewer/view/ImViewer.java
r5500 r5528 30 30 import java.awt.Point; 31 31 import java.awt.image.BufferedImage; 32 import java.util.Collection; 32 33 import java.util.List; 33 34 import java.util.Map; … … 39 40 40 41 //Application-internal dependencies 42 import org.openmicroscopy.shoola.agents.imviewer.util.proj.ProjectionRef; 41 43 import org.openmicroscopy.shoola.env.data.model.ChannelMetadata; 42 44 import org.openmicroscopy.shoola.env.rnd.RenderingControl; … … 44 46 import org.openmicroscopy.shoola.util.ui.component.ObservableComponent; 45 47 import pojos.ExperimenterData; 48 import pojos.ImageData; 46 49 47 50 /** … … 835 838 /** Sets the original rendering settings. */ 836 839 public void setOriginalRndSettings(); 840 841 /** Shows the projection dialog and preview. */ 842 public void showProjection(); 843 844 /** 845 * Projects a selected portion of the optical sections 846 * for the currently selected timepoint and active channel. 847 * 848 * @param ref Object containing the projection parameters. 849 */ 850 public void projectionPreview(ProjectionRef ref); 851 852 /** 853 * Projects the whole image according the projection parameters. 854 * 855 * @param ref Object containing the projection parameters. 856 */ 857 public void projectImage(ProjectionRef ref); 858 859 /** 860 * Sets the containers contained the image. 861 * 862 * @param containers The collection to set. 863 */ 864 public void setContainers(Collection containers); 865 866 /** Loads the containers containing the image. */ 867 public void loadContainers(); 868 869 /** 870 * Sets the projected preview image. 871 * 872 * @param image The value to display. 873 */ 874 public void setRenderProjected(BufferedImage image); 875 876 /** 877 * Sets the newly created projected image. 878 * 879 * @param image The projected image. 880 */ 881 public void setProjectedImage(ImageData image); 837 882 838 883 }
