Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis 3 Programmer Reference
ImageList.h
1#ifndef ImageList_H
2#define ImageList_H
3
4#include <QDebug>
5#include <QObject>
6#include <QList>
7#include <QMetaType>
8#include <QSharedPointer>
9
10#include "Image.h"
12#include "ImageListActionWorkOrder.h"
13#include "SerialNumberList.h"
14#include "WorkOrder.h"
15
16class QXmlStreamWriter;
17
18namespace Isis {
19 class FileName;
20
52 class ImageList : public QObject, public QList<Image *> {
53 Q_OBJECT
54
55 public:
56 friend class ImageListActionWorkOrder;
57
58 ImageList(QString name, QString path, QObject *parent = NULL);
59 explicit ImageList(QObject *parent = NULL);
60 explicit ImageList(QList<Image *>, QObject *parent = NULL);
61 explicit ImageList(QStringList &);
62 ImageList(const ImageList &);
63 ~ImageList();
64
65// QSharedPointer<SerialNumberList> serialNumberList();
67
68 // These are overridden (-ish) in order to add notifications to the list changing
69 void append(Image * const & value);
70 void append(const QList<Image *> &value);
71
72 void clear();
73
75 iterator erase(iterator begin, iterator end);
76
77 void insert(int i, Image * const & value);
78 iterator insert(iterator before, Image * const & value);
79
80 void prepend(Image * const & value);
81 void push_back(Image * const & value);
82 void push_front(Image * const & value);
83 int removeAll(Image * const & value);
84 void removeAt(int i);
85 void removeFirst();
86 void removeLast();
87 bool removeOne(Image * const & value);
88 void swap(QList<Image *> &other);
89 Image *takeAt(int i);
91 Image *takeLast();
92
93 ImageList &operator+=(const QList<Image *> &other);
94 ImageList &operator+=(Image * const &other);
95 ImageList &operator<<(const QList<Image *> &other);
96 ImageList &operator<<(Image * const &other);
98
99 // This is our own assignment, but it needs to notify just like the operator=(QList)
100 ImageList &operator=(const ImageList &rhs);
101
102 // Done overriding (-ish)
103
104
107
108 void setName(QString newName);
109 void setPath(QString newPath);
110
111 QString name() const;
112 QString path() const;
113
114 void deleteFromDisk(Project *project);
115 void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const;
116
117 signals:
118 void countChanged(int newCount);
119
120 private:
121
131 class CopyImageDataFunctor : public std::function<void *(Image * const &)> {
132 public:
133 CopyImageDataFunctor(const Project *project, FileName newProjectRoot);
136
137 void *operator()(Image * const &imageToCopy);
138
140
141 private:
150 };
151
152 private:
162 QAction *result = NULL;
163
164 if (project) {
165 result = new ImageListActionWorkOrder(action, project);
166 ((ImageListActionWorkOrder *)result)->setData(this);
167 }
168 else {
169 result = new QAction(
171 this),
172 this);
173 }
174
175 return result;
176 }
177
178 void applyAlphas(QStringList alphaValues);
179 void applyColors(QStringList colorValues, int column = 0);
180 void applyShowLabel(QStringList showLabelValues);
181 void applyShowFill(QStringList showFillValues);
182 void applyShowDNs(QStringList showDNsValues);
183 void applyShowOutline(QStringList showOutlineValues);
184 bool askAlpha(int *alphaResult) const;
185 bool askNewColor(QColor *colorResult) const;
186 QStringList saveAndApplyAlpha(int newAlpha);
187 QStringList saveAndApplyColor(QColor newColor);
189
190 private slots:
191 void askAndUpdateAlpha();
192 void askAndUpdateColor();
193 void showRandomColor();
198
199 private:
203 QString m_name;
204
215 QString m_path;
216 };
217
218}
219
220Q_DECLARE_METATYPE(Isis::ImageList *);
221
222#endif
Property
This is a list of properties and actions that are possible.
This represents a cube in a project-based GUI interface.
Definition Image.h:105
const Project * m_project
This stores the name of the project that is going to be copied to.
Definition ImageList.h:145
FileName m_newProjectRoot
This stores the path to the root of the project that is going to be copied to.
Definition ImageList.h:149
CopyImageDataFunctor & operator=(const CopyImageDataFunctor &rhs)
Assignment operator for CopyImageDataFunctor.
CopyImageDataFunctor(const Project *project, FileName newProjectRoot)
Constructor for CopyImageDataFunctor.
void * operator()(Image *const &imageToCopy)
Copies the cub/ecub files for an image into m_project.
~CopyImageDataFunctor()
Destructor for CopyImageDataFunctor.
static QString toString(Action)
Convert an action to a string.
static QString qualifyString(QString unqualifiedString, ImageList *)
Determine whether a toggle action should show or hide.
Action
Type of action to be performed by the work order.
Internalizes a list of images and allows for operations on the entire list.
Definition ImageList.h:52
void applyShowOutline(QStringList showOutlineValues)
Sets the visibility of the outlines of the images in the image list based on a list of values.
Image * takeLast()
Removes and returns the last image.
void applyShowDNs(QStringList showDNsValues)
Sets the visibility of the DNs of the images in the image list based on a list of values.
void deleteFromDisk(Project *project)
Delete all of the contained Images from disk.
int removeAll(Image *const &value)
Removes all occurances of an image.
QStringList saveAndToggleShowDNs()
Changes the visibility of the DNs of the first image in the image list and synchronizes the visibilit...
QString path() const
Get the path to the images in the image list (relative to project root).
~ImageList()
Destructor.
ImageList & operator+=(const QList< Image * > &other)
Appends a list of images to the end of the image list.
void applyAlphas(QStringList alphaValues)
Sets the alpha values of the images based on a list of values.
ImageList & operator<<(const QList< Image * > &other)
Appends a list of images to the end of the image list.
void applyShowLabel(QStringList showLabelValues)
Sets the visibility of the display names of the images in the image list based on a list of values.
void setPath(QString newPath)
Set the relative path (from the project root) to this image list's folder.
void insert(int i, Image *const &value)
Inserts an image into the image list at an index.
void showRandomColor()
This applies a new semi-random color to every image's display property for every image in this image ...
void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const
Convert this image list into XML format for saving/restoring capabilities.
bool removeOne(Image *const &value)
Removes the first occurance of an image.
Image * takeAt(int i)
Removes the image at an index and returns it.
void push_front(Image *const &value)
Prepends an image to the beginning of the image list.
void applyColors(QStringList colorValues, int column=0)
Sets the colors values of the images based on a list of values.
Image * takeFirst()
Removes and returns the first image.
ImageList & operator=(const QList< Image * > &rhs)
Assigns another list of images to the image list.
void prepend(Image *const &value)
Inserts an image at the beginning of the image list.
ImageList(QString name, QString path, QObject *parent=NULL)
Creates an image list from an image list name and path (does not read Images).
Definition ImageList.cpp:53
bool askAlpha(int *alphaResult) const
Prompts the user for an alpha value.
QStringList saveAndToggleShowOutline()
Changes the visibility of the outline of the first image in the image list and synchronizes the visib...
iterator erase(iterator pos)
Erases a single image from the image list.
QAction * createWorkOrder(Project *project, ImageListActionWorkOrder::Action action)
Creates an ImageListActionWorkOrder and sets the image list as the data for the work order.
Definition ImageList.h:161
void askAndUpdateAlpha()
Prompt the user for a new alpha value.
SerialNumberList * serialNumberList()
Creates a SerialNumberList from the image list.
void askAndUpdateColor()
Prompt the user for a new color.
void removeAt(int i)
Removes the image at an index.
bool askNewColor(QColor *colorResult) const
Prompts the user for color values.
void push_back(Image *const &value)
Appends an image to the end of the image list.
QString m_name
This stores the image list's name.
Definition ImageList.h:203
bool allSupport(ImageDisplayProperties::Property prop)
Check if all images in the image list support a display property.
QStringList saveAndToggleShowLabel()
Changes the visibility of the display name of the first image in the image list and synchronizes the ...
void append(Image *const &value)
Appends an image to the image list.
QStringList saveAndApplyColor(QColor newColor)
Sets the color values of every image to a specificed set of values.
QStringList saveAndApplyAlpha(int newAlpha)
Sets the alpha value of every image in the image list to a specificed value.
void applyShowFill(QStringList showFillValues)
Sets the visibility of the fill areas of the images in the image list based on a list of values.
QList< QAction * > supportedActions(Project *project=NULL)
Gets a list of pre-connected actions that have to do with display.
QString m_path
This stores the directory name that contains the images in this image list.
Definition ImageList.h:215
void swap(QList< Image * > &other)
Swaps the image list with another list of images.
void setName(QString newName)
Set the human-readable name of this image list.
QStringList saveAndToggleShowFill()
Changes the visibility of the fill area of the first image in the image list and synchronizes the vis...
QString name() const
Get the human-readable name of this image list.
void clear()
Clears the image list.
void removeFirst()
Removes the image at the front of the image list.
void removeLast()
Removes the image at the end of the image list.
QStringList saveAndApplyRandomColor()
Sets the color values of every image to a random color.
The main project for ipce.
Definition Project.h:287
Serial Number list generator.
This is free and unencumbered software released into the public domain.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16