25#include "IException.h"
28#include <QColorDialog>
33#include <QInputDialog>
35#include <QProgressDialog>
36#include <QtConcurrentMap>
37#include <QXmlStreamWriter>
41#include "IException.h"
97 foreach (QString fileName, fileNames) {
125 for (
int i = 0; i < count(); i++) {
126 result->
add((*
this)[i]->fileName());
141 emit countChanged(count());
154 emit countChanged(count());
164 bool countChanging = count();
167 emit countChanged(count());
183 emit countChanged(count());
202 emit countChanged(count());
218 emit countChanged(count());
234 emit countChanged(count());
248 emit countChanged(count());
262 emit countChanged(count());
276 emit countChanged(count());
293 emit countChanged(count());
309 emit countChanged(count());
320 emit countChanged(count());
331 emit countChanged(count());
348 emit countChanged(count());
365 if (count() != other.count()) {
366 emit countChanged(count());
382 emit countChanged(count());
396 emit countChanged(count());
410 emit countChanged(count());
429 emit countChanged(count());
448 emit countChanged(count());
467 emit countChanged(count());
486 emit countChanged(count());
501 bool countChanging = (rhs.count() != count());
505 emit countChanged(count());
520 bool countChanging = (rhs.count() != count());
527 emit countChanged(count());
553 QList<QAction *> actions;
561 connect(alphaAction, SIGNAL(triggered()),
564 actions.append(alphaAction);
568 connect(colorAction, SIGNAL(triggered()),
571 actions.append(colorAction);
575 connect(ranColorAction, SIGNAL(triggered()),
578 actions.append(ranColorAction);
585 connect(labelVisibleAction, SIGNAL(triggered()),
588 actions.append(labelVisibleAction);
594 connect(fillAction, SIGNAL(triggered()),
597 actions.append(fillAction);
604 connect(cubeDataAction, SIGNAL(triggered()),
607 actions.append(cubeDataAction);
614 connect(outlineAction, SIGNAL(triggered()),
617 actions.append(outlineAction);
620 actions.append(NULL);
629 foreach (
Image *image, *
this) {
630 connect(moveToTopAct, SIGNAL(triggered()),
633 connect(moveUpAct, SIGNAL(triggered()),
636 connect(moveToBottomAct, SIGNAL(triggered()),
639 connect(moveDownAct, SIGNAL(triggered()),
643 actions.append(moveToTopAct);
644 actions.append(moveUpAct);
645 actions.append(moveToBottomAct);
646 actions.append(moveDownAct);
649 actions.append(NULL);
653 connect(zoomFit, SIGNAL(triggered()),
654 first()->displayProperties(), SIGNAL(zoomFit()));
655 actions.append(zoomFit);
674 foreach (
Image *image, *
this) {
734 foreach (
Image *image, *
this) {
773 stream.writeStartElement(
"imageList");
774 stream.writeAttribute(
"name",
m_name);
775 stream.writeAttribute(
"path",
m_path);
781 if (dataRoot.startsWith(
"/")) {
782 dataRoot.remove(0,1);
784 stream.writeAttribute(
"dataRoot", dataRoot);
787 "/" +
m_path +
"/images.xml");
789 if (!settingsFileName.
dir().mkpath(settingsFileName.
path())) {
791 QString(
"Failed to create directory [%1]")
792 .arg(settingsFileName.
path()),
795 QFile imageListContentsFile(settingsFileName.
toString());
797 if (!imageListContentsFile.open(QIODevice::ReadWrite | QIODevice::Truncate)) {
799 QString(
"Unable to save image information for [%1] because [%2] could not be opened for "
805 QXmlStreamWriter imageDetailsWriter(&imageListContentsFile);
806 imageDetailsWriter.setAutoFormatting(
true);
807 imageDetailsWriter.writeStartDocument();
809 imageDetailsWriter.writeStartElement(
"images");
813 int countWidth = QString(
"%1L").arg(count()).size() - 1;
814 QChar paddingChar(
'0');
816 QLabel *progressLabel =
new QLabel;
818 QProgressDialog progressDialog;
819 progressDialog.setLabel(progressLabel);
820 progressDialog.setRange(-1, count());
821 progressDialog.setValue(-1);
824 QFuture<void *> future = QtConcurrent::mapped(*
this,
827 for (
int i = 0; i < count(); i++) {
828 int newProgressValue = progressDialog.value() + 1;
829 progressLabel->setText(
830 tr(
"Saving Image Information for [%1] - %L2/%L3 done")
832 .arg(newProgressValue, countWidth, 10, paddingChar)
834 progressDialog.setValue(newProgressValue);
838 catch(std::exception &e) {
839 QString msg(
"Could not save ImageList: "+this->
name() );
844 progressLabel->setText(tr(
"Finalizing..."));
845 progressDialog.setRange(0, 0);
846 progressDialog.setValue(0);
849 foreach (
Image *image, *
this) {
850 image->
save(imageDetailsWriter, project, newProjectRoot);
853 imageDetailsWriter.writeEndElement();
855 imageDetailsWriter.writeEndDocument();
857 stream.writeEndElement();
880 m_project = other.m_project;
881 m_newProjectRoot = other.m_newProjectRoot;
902 imageToCopy->copyToNewProjectRoot(m_project, m_newProjectRoot);
905 IString msg =
"Could not copy image [" + imageToCopy->displayProperties()->displayName() +
923 m_newProjectRoot = rhs.m_newProjectRoot;
937 if (count() == alphaValues.count()) {
938 for (
int i = 0; i < count(); i++) {
941 color.setAlpha(alphaValues[i].
toInt());
942 dispProps->setColor(color);
958 if (count() == colorValues.count()) {
959 for (
int i = 0; i < count(); i++) {
960 QString colorData = colorValues[i].split(
" ")[column];
978 if (count() == showLabelValues.count()) {
979 for (
int i = 0; i < count(); i++) {
998 if (count() == showFillValues.count()) {
999 for (
int i = 0; i < count(); i++) {
1001 dispProps->
setShowFill(showFillValues[i] ==
"shown");
1017 if (count() == showDNsValues.count()) {
1018 for (
int i = 0; i < count(); i++) {
1020 dispProps->
setShowDNs(showDNsValues[i] ==
"shown");
1036 if (count() == showOutlineValues.count()) {
1037 for (
int i = 0; i < count(); i++) {
1059 bool result =
false;
1063 *alphaResult = QInputDialog::getInt(NULL,
"Transparency Value",
1064 "Set the cube's transparency\nValues are 0 (invisible) to 255 (solid)",
1066 0, 255, 1, &result);
1087 *colorResult = QColor();
1091 *colorResult = QColorDialog::getColor(
1093 "Cube Display Color",
1094 QColorDialog::ShowAlphaChannel);
1097 return colorResult->isValid();
1111 foreach (
Image *image, *
this) {
1114 QColor displayColor = displayProperties->
getValue(
1117 results.append(QString::number(displayColor.alpha()));
1119 displayColor.setAlpha(newAlpha);
1120 displayProperties->
setColor(displayColor);
1139 if (newColor.isValid()) {
1140 foreach (
Image *image, *
this) {
1143 QColor displayColor = displayProperties->
getValue(
1148 displayProperties->
setColor(newColor);
1166 foreach (
Image *image, *
this) {
1171 QColor displayColor = displayProperties->
getValue(
1175 ranColor.setAlpha(displayColor.alpha());
1182 displayProperties->
setColor(ranColor);
1218 foreach (
Image *image, *
this) {
1238 foreach (
Image *image, *
this) {
1242 results.append(value?
"shown" :
"hidden");
1266 foreach (
Image *image, *
this) {
1270 results.append(value?
"shown" :
"hidden");
1294 foreach (
Image *image, *
this) {
1298 results.append(value?
"shown" :
"hidden");
1322 foreach (
Image *image, *
this) {
1326 results.append(value?
"shown" :
"hidden");
static QString toRGBAString(QColor)
Convert a QColor to its QString.
static QColor fromRGBAString(QString)
Converts a QString to its QColor.
QVariant getValue(int property) const
Get a property's associated data.
bool supports(int property)
Support may come later, please make sure you are connected to the supportAdded signal.
File name manipulation and expansion.
QString path() const
Returns the path of the file name.
QDir dir() const
Returns the path of the file's parent directory as a QDir object.
QString original() const
Returns the full file name including the file path.
QString toString() const
Returns a QString of the full file name including the file path, excluding the attributes with any Is...
@ Io
A type of error that occurred when performing an actual I/O operation.
Adds specific functionality to C++ strings.
This is the GUI communication mechanism for cubes.
void setShowLabel(bool)
Change the visibility of the display name associated with this cube.
void setShowFill(bool)
Change the visibility of the fill area associated with this cube.
void setShowDNs(bool)
Change the visibility of DNs associated with this cube.
Property
This is a list of properties and actions that are possible.
@ ShowLabel
True if the cube should show its display name (bool)
@ ShowFill
True if the cube should show a fill area if possible (bool)
@ ShowDNs
True if the cube should show DN values if possible (bool)
@ Zooming
Data ignored. Tells if the cube supports the zoomFit action.
@ Color
The color of the cube, default randomized (QColor)
@ ZOrdering
Data ignored. Tells if the cube supports the "move*" actions.
@ ShowOutline
True if the cube should be outlined (bool)
void setColor(QColor newColor)
Change the color associated with this cube.
void setShowOutline(bool)
Change the visibility of the outline associated with this cube.
static QColor randomColor()
Creates and returns a random color for the intial color of the footprint polygon.
This represents a cube in a project-based GUI interface.
void closeCube()
Cleans up the Cube pointer.
void save(QXmlStreamWriter &stream, const Project *project, FileName newProjectRoot) const
Write the Image properties out to an XML file.
ImageDisplayProperties * displayProperties()
Get the display (GUI) properties (information) associated with this image.
void deleteFromDisk()
Delete the image data from disk.
This functor is used for copying the images between two projects quickly.
const Project * m_project
This stores the name of the project that is going to be copied to.
FileName m_newProjectRoot
This stores the path to the root of the project that is going to be copied to.
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.
@ ToggleShowOutline
Show or hide each image's outline.
@ MoveToBottom
Move the image to the back.
@ ChangeTransparency
Change the alpha values of the image list.
@ ToggleShowFilled
Show or hide each image's fill area.
@ ChangeColor
Change the color values of the image list.
@ ToggleShowCubeData
Show or hide each image's DNs.
@ MoveDownOne
Move the image backward.
@ ZoomFit
Zoom in on the image so that it fits the screen.
@ MoveToTop
Move the image to the front.
@ MoveUpOne
Move the image forward.
@ ToggleShowLabel
Show or hide each image's display name.
@ RandomizeColor
Set each image in the list to a random color.
Internalizes a list of images and allows for operations on the entire list.
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 & 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).
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.
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.
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.
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.
QString newProjectRoot() const
Get the top-level folder of the new project.
QString imageDataRoot() const
Accessor for the root directory of the image data.
QString projectRoot() const
Get the top-level folder of the project.
static QString imageDataRoot(QString projectRoot)
Appends the root directory name 'images' to the project .
Serial Number list generator.
void add(const QString &filename, bool def2filename=false)
Adds a new filename / serial number pair to the SerialNumberList.
This is free and unencumbered software released into the public domain.
This is free and unencumbered software released into the public domain.
int toInt(const QString &string)
Global function to convert from a string to an integer.