29 #include <QUndoCommand> 37 #include "XmlStackedHandler.h" 41 class QXmlStreamWriter;
53 class XmlStackedHandlerReader;
333 WorkOrderUnknownStatus = 0,
372 void save(QXmlStreamWriter &stream)
const;
375 virtual void setData(QString data);
512 virtual bool startElement(
const QString &namespaceURI,
const QString &localName,
513 const QString &qName,
const QXmlAttributes &atts);
586 QPointer<ImageList> m_imageList;
587 QPointer<ShapeList> m_shapeList;
588 QPointer<ControlList> m_controlList;
Internalizes a list of shapes and allows for operations on the entire list.
QString bestText() const
Generate unique action names We don't use action text anymore because Directory likes to rename our a...
bool isSynchronous() const
Returns true if this work order is run synchronously, otherwise false.
bool isInStableState() const
Determines if the WorkOrder is in a stable state, or if it's busy doing something.
void setProgressValue(int)
Sets the current progress value for the WorkOrder.
Internalizes a list of images and allows for operations on the entire list.
bool m_modifiesDiskState
This is defaulted to false.
The main project for ipce.
virtual void postExecution()
Perform any necessary actions after execution of a workorder.
XmlHandler(WorkOrder *workOrder)
Passes a pointer to a WorkOrder to the WorkOrder::XmlHandler class.
This is a container for the correlation matrix that comes from a bundle adjust.
void attemptQueuedAction()
Attempts to execute an action on the action queue.
bool modifiesDiskState() const
Returns the modified disk state.
virtual bool startElement(const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts)
The XML reader invokes this method at the start of every element in the XML document.
void updateProgress()
Updates the progress bar.
QPointer< QTimer > m_progressBarUpdateTimer
A pointer to the QTimer which updates the ProgressBar.
int progressMax() const
Gets the maximum value of the progress range of the WorkOrder.
bool isRedoing() const
Returns the redoing status of this WorkOrder.
Unless noted otherwise, the portions of Isis written by the USGS are public domain.
Maintains a list of Controls so that control nets can easily be copied from one Project to another...
virtual bool setupExecution()
This sets up the state for the work order.
void read(XmlStackedHandlerReader *xmlReader)
Read this work order's data from disk.
int m_progressRangeMinValue
The miniumum value of the Progess Bar.
WorkOrder * next() const
Gets the next WorkOrder.
QPointer< WorkOrder > m_previousWorkOrder
A pointer to the previous WorkOrder in the queue.
bool isRedone() const
Returns the WorkOrder redone status.
TargetBodyQsp targetBody()
WorkOrder::targetBody.
ShapeList * shapeList()
a pointer to the ShapeList for this WorkOrder.
virtual void redo()
Starts (or enqueues) a redo.
QPointer< ProgressBar > m_progressBar
A pointer to the ProgressBar.
virtual bool isExecutable(Context)
Re-implement this method if your work order utilizes controls for data in order to operate...
QTime * m_elapsedTimer
A QTime object holding the excecution time of the WorkOrder.
QDateTime m_executionTime
This is the date/time that setupExecution() was called.
WorkOrder(Project *project)
Create a work order that will work with the given project.
void disableWorkOrder()
Disables the work order.
virtual void undo()
Starts (or enqueues) an undo.
void listenForShapeDestruction()
Checks to see if we have lost any shapes in the ShapeList.
int progressMin() const
Gets the minimum value of the progress range of the WorkOrder.
static QString toString(WorkOrderStatus)
Gets the current status of the WorkOrder.
QPointer< QTimer > m_progressBarDeletionTimer
A pointer to the ProgressBar deletion timer.
Provide Undo/redo abilities, serialization, and history for an operation.
bool isSavedToHistory() const
Returns true if this work order is to be shown in History, otherwise false.
int m_progressValue
The current value of the Progress Bar.
Q_DECLARE_METATYPE(Isis::WorkOrder *)
This allows WorkOrder *'s to be stored in a QVariant.
bool createsCleanState() const
Returns the CleanState status (whether the Project has been saved to disk or not).
WorkOrderStatus
This enumeration is used by other functions to set and retrieve the current state of the WorkOrder...
QStringList m_internalData
A QStringList of internal properties for this WorkOrder.
XML Handler that parses XMLs in a stack-oriented way.
virtual void execute()
Execute the workorder.
void setPrevious(WorkOrder *previousWorkOrder)
Sets the previous WorkOrder in the sequence.
Template * getTemplate()
WorkOrder::getTemplate.
QPointer< WorkOrder > m_nextWorkOrder
A pointer to the next WorkOrder in the queue.
bool m_isSynchronous
This is defaulted to true.
int progressValue() const
Gets the current progress value of the WorkOrder.
WorkOrder * previous() const
Gets the previous WorkOrder.
bool m_isUndoable
Set the workorder to be undoable/redoable This is defaulted to true - his will allow the workorder to...
bool m_createsCleanState
This is defaulted to false.
virtual void setData(Context)
Sets the context data for this WorkOrder.
void clearShapeList()
Clears the list of shapes.
Template * m_template
A QSharedPointer to the Template (A Template object but encapsulated within a Gui framework...
int m_progressRangeMaxValue
The maximum value of the Progess Bar.
void resetProgressBar()
Resets the ProgressBar.
bool isFinished() const
Returns the finished state of this WorkOrder.
void executionFinished()
Signals the Project that the WorkOrder is finished, deletes the update time for the Progress bar...
void setProgressRange(int, int)
Sets the progress range of the WorkOrder.
virtual ~WorkOrder()
The Destructor.
bool isUndoing() const
Returns the WorkOrderUndoing state.
TargetBodyQsp m_targetBody
A QSharedPointer to the TargetBody (A Target object but encapsulated within a Gui framework...
Unless noted otherwise, the portions of Isis written by the USGS are public domain.
double m_secondsElapsed
The seconds that have elapsed since the WorkOrder started executing.
void setModifiesDiskState(bool changesProjectOnDisk)
QPointer< QFutureWatcher< void > > m_futureWatcher
A pointer to a QFutureWatcher object which monitors a QFuture object using signals and slots...
QueuedWorkOrderAction
This enum describes the current state of a Queued WorkOrder.
QMutex * m_transparentConstMutex
This is used to protect the integrity of data the WorkOrder is working on so that only one thread at ...
void listenForImageDestruction()
Checks to see if we have lost any images in the ImageList.
void setProgressToFinalText()
Sets the ProgressBar to display the final status of the operation.
Context
This enumeration is for recording the context of the current Workorder (whether it is part of a proje...
static WorkOrderStatus fromStatusString(QString)
Attempts to query the current status of the WorkOrder.
QString statusText() const
WorkOrder::statusText.
Represents an item of a ProjectItemModel in Qt's model-view framework.
FileItemQsp fileItem()
WorkOrder::fileItem.
bool isUndone() const
Returns the WorkOrder undo status.
QDateTime executionTime() const
Gets the execution time of this WorkOrder.
Namespace for ISIS/Bullet specific routines.
virtual void postUndoExecution()
Perform any steps necessary after an undo of a workorder.
CorrelationMatrix correlationMatrix()
Returns the CorrleationMatrix for this WorkOrder.
void setNext(WorkOrder *nextWorkOrder)
Sets the next WorkOrder in the sequence.
void enableWorkOrder()
Enables the work order.
This is used for work orders that will not undo or redo (See createsCleanState()) ...
This class is used for processing an XML file containing information about a WorkOrder.
Project * project() const
Returns the Project this WorkOrder is attached to.
virtual void undoExecution()
Execute the steps necessary to undo this workorder.
GuiCameraQsp m_guiCamera
A QSharedPointer to the GuiCamera (the Camera object but encapsulated within a Gui framework...
GuiCameraQsp guiCamera()
WorkOrder::guiCamera.
QPointer< ControlList > controlList()
Returns the Control List for this WorkOrder (a list of control networks).
ProgressBar * progressBar()
Returns the ProgressBar.
ImageList * imageList()
Returns a pointer to the ImageList for this WorkOrder.
Manage a stack of content handlers for reading XML files.
void addCloneToProject()
Runs a copy of the current WorkOrder and stores it in the project.
bool m_isSavedToHistory
Set the work order to be shown in the HistoryTreeWidget.
QStringList m_shapeIds
A QStringList of unique shape identifiers for all of the shapes this WorkOrder is dealing with...
QStringList internalData() const
Gets the internal data for this WorkOrder.
bool isUndoable() const
Returns true if this work order is undoable, otherwise false.
virtual bool dependsOn(WorkOrder *other) const
Indicate workorder dependency This is a virtual function whose role in child classes is to determine ...
FileItemQsp m_fileItem
A QSharedPointer to the FileItem.
void clearImageList()
Clears the list of images.
void setInternalData(QStringList data)
Sets the internal data for this WorkOrder.
void startRedo()
WorkOrder::startRedo This function is currently empty.
void setCreatesCleanState(bool createsCleanState)
Declare that this work order is saving the project.
QPointer< Project > m_project
A pointer to the Project this WorkOrder is attached to.
void save(QXmlStreamWriter &stream) const
: Saves a WorkOrder to a data stream.
Directory * directory() const
return the workorder project directory Returns the Directory object of the Project this WorkOrder is ...
QStringList m_imageIds
A QStringList of unique image identifiers for all of the images this WorkOrder is dealing with...
WorkOrder * m_workOrder
This is a pointer to the WorkOrder the XmlHandler is filling with information it parses from an XML f...