ImageViewConfigStore
Index
Accessors
Methods
Accessors
colorBlendingImageMap
A map of all the color blended images with their ids as keys.
Returns Map<number, ColorBlendingStore>
colorBlendingImages
All the color blended images in the image list.
Returns ColorBlendingStore[]
currentImagePage
The index of the current page in the image view widget.
Returns number
frames
All the loaded images in the image list.
Returns FrameStore[]
imageNames
Filenames in the image list.
Returns string[]
imageNum
Number of images in the image list.
Returns number
imagePanelMode
The image panel mode.
Returns ImagePanelMode
imagesPerPage
The number of image panels on a page.
Returns number
numImageColumns
The number of columns in the image view widget.
Returns number
numImagePages
The total number of pages in the image view widget.
Returns number
numImageRows
The number of rows in the image view widget.
Returns number
visibleFrames
The frames visible on the current page, including the loaded images and the layers of the color blended images.
Returns FrameStore[]
visibleImages
The images on the current page in the image view widget.
Returns ImageViewItem[]
staticInstance
Returns ImageViewConfigStore
Methods
addFrame
Adds a loaded image to the image list.
Parameters
frame: FrameStore
The loaded image.
Returns void
createColorBlending
Creates a new color blended image and adds it to the image list.
Returns ColorBlendingStore
The new color blended image.
getImage
Returns an image from the image list by index.
Parameters
index: number
The index of the image.
Returns ImageViewItem
A loaded image or a color blended image.
getImageListIndex
Returns the index of an image in the image list.
Parameters
type: FRAME | COLOR_BLENDING
The type of the image.
id: number
The id of the image.
Returns number
The index of the image.
removeAllImages
Removes all images from the image list.
Returns void
removeColorBlending
Removes a color blended image from the image list.
Parameters
image: ColorBlendingStore
The color blended image to remove.
Returns void
removeFrame
Removes a loaded image from the image list.
Parameters
fileId: number
The file id of the loaded image.
Returns void
reorderImage
Reorders images in the image list.
Parameters
oldIndex: number
The first index of the images to move.
newIndex: number
The index to move the image to.
length: number
The length of the images to move.
Returns void
replaceFrame
Replaces a loaded image in the image list.
Parameters
index: number
The image list index.
frame: FrameStore
The new loaded image.
Returns void
Configuration of the images in the image view widget.