Work orders that can be performed on an image list that modifies internal state. More...
#include <ImageListActionWorkOrder.h>


Public Types | |
| enum | Action { UnknownAction = 0 , ChangeTransparency , ChangeColor , RandomizeColor , ToggleShowLabel , ToggleShowFilled , ToggleShowCubeData , ToggleShowOutline , MoveToTop , MoveUpOne , MoveToBottom , MoveDownOne , ZoomFit , FirstAction = UnknownAction , LastAction = ZoomFit } |
| Type of action to be performed by the work order. More... | |
| enum | WorkOrderStatus { WorkOrderUnknownStatus = 0 , WorkOrderNotStarted , WorkOrderRedoing , WorkOrderRedone , WorkOrderUndoing , WorkOrderUndone , WorkOrderFinished , WorkOrderLastStatus = WorkOrderFinished } |
| This enumeration is used by other functions to set and retrieve the current state of the WorkOrder. More... | |
| enum | Context { NoContext , ProjectContext } |
| This enumeration is for recording the context of the current Workorder (whether it is part of a project or not). More... | |
Public Slots | |
| void | enableWorkOrder () |
| Enables the work order. | |
| void | disableWorkOrder () |
| Disables the work order. | |
| virtual void | redo () |
| Starts (or enqueues) a redo. | |
| virtual void | undo () |
| Starts (or enqueues) an undo. | |
Signals | |
| void | bringToFront () |
| void | creatingProgress (WorkOrder *) |
| void | deletingProgress (WorkOrder *) |
| void | finished (WorkOrder *) |
| void | statusChanged (WorkOrder *) |
Public Member Functions | |
| ImageListActionWorkOrder (Project *project) | |
| Construct a work order for the given project. | |
| ImageListActionWorkOrder (Action action, Project *project) | |
| Construct a work order for the given project and action. | |
| ImageListActionWorkOrder (const ImageListActionWorkOrder &other) | |
| Copy constructor. | |
| ~ImageListActionWorkOrder () | |
| Destructor. | |
| ImageListActionWorkOrder * | clone () const |
| Clone the current work order. | |
| bool | isExecutable (ImageList *images) |
| Check if the work order can run on a given image list. | |
| void | setData (ImageList *images) |
| Assign an image list to the work order. | |
| bool | setupExecution () |
| If needed, prompt the user for input and save it. | |
| void | execute () |
| Perform the action stored in the work order and update the work order's internal data with the results of the action. | |
| void | undoExecution () |
| Undo the action stored in the work order and update the work order's internal data with the results of the undo. | |
| virtual bool | isExecutable (Context) |
| Re-implement this method if your work order utilizes controls for data in order to operate. | |
| virtual bool | isExecutable (ShapeList *shapes) |
| Re-implement this method if your work order utilizes shapes for data in order to operate. | |
| virtual bool | isExecutable (ControlList *controls) |
| Re-implement this method if your work order utilizes a control for data in order to operate. | |
| virtual bool | isExecutable (CorrelationMatrix) |
| virtual bool | isExecutable (TargetBodyQsp targetBody) |
| Re-implement this method if your work order utilizes a control list (a list of control networks) for data in order to operate. | |
| virtual bool | isExecutable (Template *currentTemplate) |
| Re-implement this method if your work order utilizes a control list (a list of control networks) for data in order to operate. | |
| virtual bool | isExecutable (GuiCameraQsp guiCamera) |
| Re-implement this method if your WorkOrder utilizes GuiCameraQsp (a QSharedPointer to a GuiCamera object) for data in order to operate. | |
| virtual bool | isExecutable (FileItemQsp fileItem) |
| Re-implement this method if your WorkOrder utilizes FileItemQsp (a QSharedPointer to a FileItem object) for data in order to operate. | |
| virtual bool | isExecutable (ProjectItem *item) |
| Determines if the WorkOrder is execuatable on the data stored in a ProjectItem. | |
| void | save (QXmlStreamWriter &stream) const |
| : Saves a WorkOrder to a data stream. | |
| virtual void | setData (Context) |
| Sets the context data for this WorkOrder. | |
| virtual void | setData (QString data) |
| virtual void | setData (ShapeList *shapes) |
| Sets the ShapeList data for this WorkOrder. | |
| virtual void | setData (ControlList *controls) |
| Sets the Control data for this WorkOrder. | |
| virtual void | setData (Template *currentTemplate) |
| Sets the TargetBody data for this WorkOrder. | |
| virtual void | setData (CorrelationMatrix) |
| Sets the CorrelationMatrix data for this WorkOrder. | |
| virtual void | setData (TargetBodyQsp targetBody) |
| Sets the TargetBody data for this WorkOrder. | |
| virtual void | setData (GuiCameraQsp guiCamera) |
| Sets the GuiCamera data for this WorkOrder. | |
| virtual void | setData (FileItemQsp fileItem) |
| Sets the FileItem data for this WorkOrder. | |
| virtual void | setData (ProjectItem *item) |
| Sets the internal data to the data stored in a ProjectItem. | |
| void | setNext (WorkOrder *nextWorkOrder) |
| Sets the next WorkOrder in the sequence. | |
| void | setPrevious (WorkOrder *previousWorkOrder) |
| Sets the previous WorkOrder in the sequence. | |
| QString | bestText () const |
| Generate unique action names We don't use action text anymore because Directory likes to rename our actions. | |
| bool | isUndoable () const |
| Returns true if this work order is undoable, otherwise false. | |
| bool | isSavedToHistory () const |
| Returns true if this work order is to be shown in History, otherwise false. | |
| bool | isSynchronous () const |
| Returns true if this work order is run synchronously, otherwise false. | |
| bool | createsCleanState () const |
| Returns the CleanState status (whether the Project has been saved to disk or not). | |
| QDateTime | executionTime () const |
| Gets the execution time of this WorkOrder. | |
| bool | isFinished () const |
| Returns the finished state of this WorkOrder. | |
| bool | isRedoing () const |
| Returns the redoing status of this WorkOrder. | |
| bool | isRedone () const |
| Returns the WorkOrder redone status. | |
| bool | isUndoing () const |
| Returns the WorkOrderUndoing state. | |
| bool | isUndone () const |
| Returns the WorkOrder undo status. | |
| bool | modifiesDiskState () const |
| Returns the modified disk state. | |
| WorkOrder * | next () const |
| Gets the next WorkOrder. | |
| WorkOrder * | previous () const |
| Gets the previous WorkOrder. | |
| QString | statusText () const |
| WorkOrder::statusText. | |
| ProgressBar * | progressBar () |
| Returns the ProgressBar. | |
Static Public Member Functions | |
| static QString | qualifyString (QString unqualifiedString, ImageList *) |
| Determine whether a toggle action should show or hide. | |
| static QString | toString (Action) |
| Convert an action to a string. | |
| static Action | fromActionString (QString) |
| Convert a string to an action. | |
| static WorkOrderStatus | fromStatusString (QString) |
| Attempts to query the current status of the WorkOrder. | |
| static QString | toString (WorkOrderStatus) |
| Gets the current status of the WorkOrder. | |
Protected Slots | |
| void | addCloneToProject () |
| Runs a copy of the current WorkOrder and stores it in the project. | |
Protected Member Functions | |
| ImageList * | imageList () |
| Returns a pointer to the ImageList for this WorkOrder. | |
| const ImageList * | imageList () const |
| A thread-safe method for retrieving a pointer to the imageList. | |
| ShapeList * | shapeList () |
| @briefReturns a pointer to the ShapeList for this WorkOrder. | |
| const ShapeList * | shapeList () const |
| A thread-safe method for retrieving a pointer to the shapeList. | |
| CorrelationMatrix | correlationMatrix () |
| Returns the CorrleationMatrix for this WorkOrder. | |
| QPointer< ControlList > | controlList () |
| Returns the Control List for this WorkOrder (a list of control networks). | |
| Template * | getTemplate () |
| WorkOrder::getTemplate. | |
| TargetBodyQsp | targetBody () |
| WorkOrder::targetBody. | |
| GuiCameraQsp | guiCamera () |
| WorkOrder::guiCamera. | |
| FileItemQsp | fileItem () |
| WorkOrder::fileItem. | |
| virtual bool | dependsOn (WorkOrder *other) const |
| Indicate workorder dependency This is a virtual function whose role in child classes is to determine if this WorkOrder depends on the WorkOrder passed in as an argument. | |
| Directory * | directory () const |
| return the workorder project directory Returns the Directory object of the Project this WorkOrder is attached to. | |
| Project * | project () const |
| Returns the Project this WorkOrder is attached to. | |
| void | setCreatesCleanState (bool createsCleanState) |
| Declare that this work order is saving the project. | |
| void | setModifiesDiskState (bool changesProjectOnDisk) |
| void | setInternalData (QStringList data) |
| Sets the internal data for this WorkOrder. | |
| int | progressMin () const |
| Gets the minimum value of the progress range of the WorkOrder. | |
| int | progressMax () const |
| Gets the maximum value of the progress range of the WorkOrder. | |
| int | progressValue () const |
| Gets the current progress value of the WorkOrder. | |
| void | setProgressRange (int, int) |
| Sets the progress range of the WorkOrder. | |
| void | setProgressValue (int) |
| Sets the current progress value for the WorkOrder. | |
| QStringList | internalData () const |
| Gets the internal data for this WorkOrder. | |
| virtual void | postExecution () |
| Perform any necessary actions after execution of a workorder. | |
| virtual void | postUndoExecution () |
| Perform any steps necessary after an undo of a workorder. | |
Protected Attributes | |
| bool | m_isUndoable |
| Set the workorder to be undoable/redoable This is defaulted to true - his will allow the workorder to be redone. | |
| bool | m_isSynchronous |
| This is defaulted to true. | |
| bool | m_isSavedToHistory |
| Set the work order to be shown in the HistoryTreeWidget. | |
| WorkOrderStatus | m_status |
Work orders that can be performed on an image list that modifies internal state.
This encapsulates the set of image list work orders that modifies internal state to the image list. This means these work orders typically modify the ImageDisplayProperties on the images.
These work orders rely on the internal data to know the action to perform and what the expected state is. The internal data is stored like this:
internalData = (ActionString, UserInputValue (optional), OriginalValue1 (optional) SPACE NewValue1 (optional), OriginalValue2 (optional) SPACE NewValue2 (optional), OriginalValue3 (optional) SPACE NewValue3 (optional), OriginalValue4 (optional) SPACE NewValue4 (optional), ... )
For example, if we're changing the colors of the images, the internal data would be: internalData = (Change Color, NewColor, File1OriginalColor, File2OriginalColor, File3OriginalColor, ... )
The original colors will let us undo this action. A second example (randomize colors): internalData = (Random Color, File1OriginalColor File1NewColor, File2OriginalColor File2NewColor, File3OriginalColor File3NewColor, ... )
Type of action to be performed by the work order.
|
inherited |
|
inherited |
This enumeration is used by other functions to set and retrieve the current state of the WorkOrder.
| Enumerator | |
|---|---|
| WorkOrderUnknownStatus | |
| WorkOrderNotStarted | |
| WorkOrderRedoing | |
| WorkOrderRedone | |
| WorkOrderUndoing | |
| WorkOrderUndone | |
| WorkOrderFinished | This is used for work orders that will not undo or redo (See createsCleanState()) |
| WorkOrderLastStatus | |
| Isis::ImageListActionWorkOrder::ImageListActionWorkOrder | ( | Project * | project | ) |
Construct a work order for the given project.
| project | The project that the work order is for |
References Isis::WorkOrder::m_isSavedToHistory, Isis::WorkOrder::project(), and Isis::WorkOrder::WorkOrder().
Referenced by bringToFront(), clone(), and ImageListActionWorkOrder().
Construct a work order for the given project and action.
| action | The action that the work order will perform |
| project | The project that the work order is for |
References Isis::WorkOrder::internalData(), Isis::WorkOrder::m_isSavedToHistory, Isis::WorkOrder::project(), Isis::WorkOrder::setInternalData(), toString(), and Isis::WorkOrder::WorkOrder().
| Isis::ImageListActionWorkOrder::ImageListActionWorkOrder | ( | const ImageListActionWorkOrder & | other | ) |
Copy constructor.
| other | The work order to be copied from |
References Isis::WorkOrder::imageList(), ImageListActionWorkOrder(), Isis::WorkOrder::m_isSavedToHistory, and Isis::WorkOrder::WorkOrder().
| Isis::ImageListActionWorkOrder::~ImageListActionWorkOrder | ( | ) |
Destructor.
|
protectedslotinherited |
Runs a copy of the current WorkOrder and stores it in the project.
References Isis::Project::addToProject(), clone(), and project().
Referenced by WorkOrder(), and WorkOrder().
|
inherited |
Generate unique action names We don't use action text anymore because Directory likes to rename our actions.
It converts a set of actions that have the same text, like Zoom Fit, to be in a menu named Zoom Fit with items that name their widgets. Widget names are unhelpful as a description of the action.
|
signal |
References ImageListActionWorkOrder().
Referenced by setData().
|
virtual |
Clone the current work order.
Implements Isis::WorkOrder.
References ImageListActionWorkOrder().
|
protectedinherited |
Returns the Control List for this WorkOrder (a list of control networks).
References project().
Referenced by Isis::CnetEditorViewWorkOrder::execute(), Isis::ExportControlNetWorkOrder::execute(), Isis::SetActiveControlWorkOrder::execute(), isExecutable(), setData(), Isis::CnetEditorViewWorkOrder::setupExecution(), Isis::ControlHealthMonitorWorkOrder::setupExecution(), Isis::ExportControlNetWorkOrder::setupExecution(), and Isis::SetActiveControlWorkOrder::setupExecution().
|
protectedinherited |
Returns the CorrleationMatrix for this WorkOrder.
References project().
Referenced by Isis::MatrixViewWorkOrder::execute(), isExecutable(), setData(), and Isis::MatrixViewWorkOrder::setupExecution().
|
inherited |
Returns the CleanState status (whether the Project has been saved to disk or not).
If this is set to true the work order will avoid being put on the undo stack, meaning it will not be undoable. It will also set the undo stack to a clean state, by doing this it makes all previous workorders done before the save to be no longer undoable.
References project().
Referenced by Isis::Project::addToProject(), setCreatesCleanState(), setupExecution(), and statusChanged().
|
signalinherited |
References WorkOrder().
|
signalinherited |
References WorkOrder().
|
protectedvirtualinherited |
Indicate workorder dependency This is a virtual function whose role in child classes is to determine if this WorkOrder depends on the WorkOrder passed in as an argument.
Reimplemented in Isis::CnetEditorViewWorkOrder, Isis::CubeDnViewWorkOrder, Isis::JigsawWorkOrder, Isis::MatrixViewWorkOrder, Isis::RenameProjectWorkOrder, Isis::SensorGetInfoWorkOrder, Isis::TargetGetInfoWorkOrder, Isis::TemplateEditViewWorkOrder, and Isis::ViewControlNet3DWorkOrder.
References WorkOrder().
Referenced by redo().
|
protectedinherited |
return the workorder project directory Returns the Directory object of the Project this WorkOrder is attached to.
References Isis::Project::directory(), and project().
Referenced by Isis::CubeDnViewWorkOrder::execute(), Isis::Footprint2DViewWorkOrder::execute(), Isis::ImageFileListViewWorkOrder::execute(), Isis::JigsawWorkOrder::isExecutable(), and Isis::MosaicSceneWorkOrder::scene().
|
slotinherited |
Disables the work order.
Disables the work order so it cannot be triggered (grayed-out).
|
slotinherited |
Enables the work order.
Enables the work order so that it can be triggered (clicked).
|
virtual |
Perform the action stored in the work order and update the work order's internal data with the results of the action.
Reimplemented from Isis::WorkOrder.
References ChangeColor, ChangeTransparency, fromActionString(), Isis::Color::fromRGBAString(), Isis::WorkOrder::imageList(), Isis::WorkOrder::internalData(), MoveDownOne, MoveToBottom, MoveToTop, MoveUpOne, RandomizeColor, Isis::WorkOrder::setInternalData(), ToggleShowCubeData, ToggleShowFilled, ToggleShowLabel, ToggleShowOutline, UnknownAction, and ZoomFit.
|
inherited |
|
protectedinherited |
References project().
Referenced by clone(), Isis::BundleObservationViewWorkOrder::execute(), Isis::BundleObservationViewWorkOrder::isExecutable(), isExecutable(), and setData().
|
signalinherited |
References WorkOrder().
Referenced by redo(), undo(), WorkOrder(), and WorkOrder().
|
static |
Convert a string to an action.
| actionString | The string to be converted |
References FirstAction, LastAction, toString(), and UnknownAction.
Referenced by execute(), qualifyString(), setupExecution(), and undoExecution().
|
staticinherited |
Attempts to query the current status of the WorkOrder.
| statusString | The status we want information about. |
References toString(), WorkOrderLastStatus, and WorkOrderUnknownStatus.
|
protectedinherited |
References project().
Referenced by Isis::TemplateEditViewWorkOrder::execute(), and Isis::TemplateEditViewWorkOrder::setupExecution().
|
protectedinherited |
References project().
Referenced by clone(), Isis::SensorGetInfoWorkOrder::execute(), Isis::SensorGetInfoWorkOrder::isExecutable(), isExecutable(), setData(), and Isis::SensorGetInfoWorkOrder::setupExecution().
|
protectedinherited |
Returns a pointer to the ImageList for this WorkOrder.
References Isis::Project::image(), and project().
Referenced by Isis::ExportImagesWorkOrder::execute(), Isis::ImageFileListViewWorkOrder::execute(), Isis::ImageListActionWorkOrder::execute(), Isis::MoveDownOneSceneWorkOrder::execute(), Isis::MoveToBottomSceneWorkOrder::execute(), Isis::MoveToTopSceneWorkOrder::execute(), Isis::MoveUpOneSceneWorkOrder::execute(), Isis::RemoveImagesWorkOrder::execute(), Isis::SetActiveImageListWorkOrder::execute(), imageList(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::SetActiveImageListWorkOrder::isExecutable(), isExecutable(), Isis::ImageListActionWorkOrder::qualifyString(), redo(), Isis::MosaicSceneWorkOrder::restoreZPositions(), Isis::ImageListActionWorkOrder::setData(), setData(), Isis::ExportImagesWorkOrder::setupExecution(), Isis::Footprint2DViewWorkOrder::setupExecution(), Isis::ImageFileListViewWorkOrder::setupExecution(), Isis::ImageListActionWorkOrder::setupExecution(), Isis::RemoveImagesWorkOrder::setupExecution(), and Isis::ImageListActionWorkOrder::undoExecution().
|
protectedinherited |
A thread-safe method for retrieving a pointer to the imageList.
References imageList(), and WorkOrder().
|
protectedinherited |
Gets the internal data for this WorkOrder.
References project().
Referenced by Isis::CubeDnViewWorkOrder::execute(), Isis::ExportControlNetWorkOrder::execute(), Isis::ExportImagesWorkOrder::execute(), Isis::Footprint2DViewWorkOrder::execute(), Isis::ImageFileListViewWorkOrder::execute(), Isis::ImageListActionWorkOrder::execute(), Isis::ImportControlNetWorkOrder::execute(), Isis::ImportImagesWorkOrder::execute(), Isis::ImportMapTemplateWorkOrder::execute(), Isis::ImportRegistrationTemplateWorkOrder::execute(), Isis::ImportShapesWorkOrder::execute(), Isis::RenameProjectWorkOrder::execute(), Isis::SaveProjectAsWorkOrder::execute(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::MosaicSceneWorkOrder::restoreZPositions(), Isis::MosaicSceneWorkOrder::scene(), Isis::ImageListActionWorkOrder::setData(), Isis::CubeDnViewWorkOrder::setupExecution(), Isis::ExportControlNetWorkOrder::setupExecution(), Isis::ExportImagesWorkOrder::setupExecution(), Isis::Footprint2DViewWorkOrder::setupExecution(), Isis::ImageFileListViewWorkOrder::setupExecution(), Isis::ImageListActionWorkOrder::setupExecution(), Isis::ImportControlNetWorkOrder::setupExecution(), Isis::MatrixViewWorkOrder::setupExecution(), Isis::RenameProjectWorkOrder::setupExecution(), Isis::SensorGetInfoWorkOrder::setupExecution(), Isis::TargetGetInfoWorkOrder::setupExecution(), Isis::TemplateEditViewWorkOrder::setupExecution(), Isis::MosaicSceneWorkOrder::storeZPositions(), Isis::ImageListActionWorkOrder::undoExecution(), Isis::MatrixViewWorkOrder::undoExecution(), and Isis::RenameProjectWorkOrder::undoExecution().
|
virtual |
Check if the work order can run on a given image list.
This work order can be run on any non-empty image list.
| images | The image list to be checked |
Reimplemented from Isis::WorkOrder.
|
virtualinherited |
Re-implement this method if your work order utilizes controls for data in order to operate.
For example, "CnetEditorViewWorkOrder" works sometimes on controls
| context | This is an enum variable with two values: NoContext,ProjectContext. |
Reimplemented in Isis::RenameProjectWorkOrder.
Referenced by isExecutable(), and Isis::Directory::supportedActions().
|
virtualinherited |
Re-implement this method if your work order utilizes a control for data in order to operate.
| control | A control networks. |
Re-implement this method if your work order utilizes a control list (a list of control networks) for data in order to operate.
| controls | A list of control networks. |
Reimplemented in Isis::CnetEditorViewWorkOrder, Isis::ControlHealthMonitorWorkOrder, Isis::ExportControlNetWorkOrder, Isis::SetActiveControlWorkOrder, and Isis::ViewControlNet3DWorkOrder.
|
virtualinherited |
Reimplemented in Isis::MatrixViewWorkOrder.
References correlationMatrix().
|
virtualinherited |
Re-implement this method if your WorkOrder utilizes FileItemQsp (a QSharedPointer to a FileItem object) for data in order to operate.
| FileItemQsp |
Reimplemented in Isis::BundleObservationViewWorkOrder.
References fileItem().
|
virtualinherited |
Re-implement this method if your WorkOrder utilizes GuiCameraQsp (a QSharedPointer to a GuiCamera object) for data in order to operate.
| GuiCameraQsp |
Reimplemented in Isis::SensorGetInfoWorkOrder.
References guiCamera().
|
virtualinherited |
Determines if the WorkOrder is execuatable on the data stored in a ProjectItem.
| item | (ProjectItem *) The item containing the data. |
Reimplemented in Isis::ImportControlNetWorkOrder, Isis::ImportImagesWorkOrder, Isis::ImportMapTemplateWorkOrder, Isis::ImportRegistrationTemplateWorkOrder, Isis::ImportShapesWorkOrder, and Isis::TemplateEditViewWorkOrder.
References Isis::ProjectItem::control(), controlList(), Isis::ProjectItem::correlationMatrix(), Isis::ProjectItem::fileItem(), Isis::ProjectItem::getTemplate(), Isis::ProjectItem::guiCamera(), Isis::ProjectItem::image(), Isis::ProjectItem::imageList(), imageList(), Isis::ProjectItem::isControl(), Isis::ProjectItem::isControlList(), Isis::ProjectItem::isCorrelationMatrix(), isExecutable(), Isis::ProjectItem::isFileItem(), Isis::ProjectItem::isGuiCamera(), Isis::ProjectItem::isImage(), Isis::ProjectItem::isImageList(), Isis::ProjectItem::isProject(), Isis::ProjectItem::isShape(), Isis::ProjectItem::isShapeList(), Isis::ProjectItem::isTargetBody(), Isis::ProjectItem::isTemplate(), ProjectContext, Isis::ProjectItem::shape(), Isis::ProjectItem::shapeList(), shapeList(), and Isis::ProjectItem::targetBody().
|
virtualinherited |
Re-implement this method if your work order utilizes shapes for data in order to operate.
For example, "ImportShapeWorkOrder" works on shapes - the logic in side of ImportShapeWorkOrder::isExecutable(ShapeList) determines whethere or not a user is prompted with this work order as a possibility.
| shapes | A shape list that this work order should execute on |
Reimplemented in Isis::CubeDnViewWorkOrder, and Isis::Footprint2DViewWorkOrder.
|
virtualinherited |
Re-implement this method if your work order utilizes a control list (a list of control networks) for data in order to operate.
| controls | A list of control networks. |
Reimplemented in Isis::TargetGetInfoWorkOrder.
References targetBody().
|
virtualinherited |
Re-implement this method if your work order utilizes a control list (a list of control networks) for data in order to operate.
| controls | A list of control networks. |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
Returns true if this work order is to be shown in History, otherwise false.
References m_isSavedToHistory, and project().
Referenced by Isis::Project::addToProject().
|
inherited |
Returns true if this work order is run synchronously, otherwise false.
References m_isSynchronous, and project().
|
inherited |
Returns true if this work order is undoable, otherwise false.
This needs to be set to true and createsCleanState needs to be set to false in order for a WorkOrder to appear on the undoStack. This should be done by setting the member variable and should not be overloading this function.
References m_isUndoable, and project().
Referenced by Isis::Project::addToProject(), and setupExecution().
|
inherited |
Returns the WorkOrderUndoing state.
References m_status, project(), and WorkOrderUndoing.
Referenced by Isis::Project::lastNotUndoneWorkOrder(), Isis::Project::lastNotUndoneWorkOrder(), redo(), and undo().
|
inherited |
Returns the WorkOrder undo status.
References m_status, project(), and WorkOrderUndone.
Referenced by Isis::Project::lastNotUndoneWorkOrder(), Isis::Project::lastNotUndoneWorkOrder(), and undo().
|
inherited |
|
inherited |
Gets the next WorkOrder.
References project(), and WorkOrder().
Referenced by undo().
|
protectedvirtualinherited |
Perform any necessary actions after execution of a workorder.
State can be read from the parent WorkOrder class and from state set in either synchronous() or asyncRedo() while in this method. You can not set state to be used in any of the undo code safely. This method is always executed in the GUI thread and has no progress.
Reimplemented in Isis::ExportControlNetWorkOrder, Isis::ExportImagesWorkOrder, Isis::ImportControlNetWorkOrder, Isis::ImportImagesWorkOrder, and Isis::ImportShapesWorkOrder.
|
protectedvirtualinherited |
Perform any steps necessary after an undo of a workorder.
State can be read from the parent WorkOrder class and from state set undoExecution() while in this method. You can not set state to be used in any of the redo code safely. This method is always executed in the GUI thread and has no progress.
Reimplemented in Isis::ImportImagesWorkOrder, and Isis::ImportShapesWorkOrder.
|
inherited |
Gets the previous WorkOrder.
References project(), and WorkOrder().
Referenced by Isis::Project::addToProject(), Isis::Project::lastNotUndoneWorkOrder(), Isis::Project::lastNotUndoneWorkOrder(), and redo().
|
inherited |
Returns the ProgressBar.
References project().
Referenced by Isis::OpenProjectWorkOrder::setupExecution().
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
|
protectedinherited |
Returns the Project this WorkOrder is attached to.
| IException::Programmer | "This work order no longer has a project." |
Referenced by addCloneToProject(), Isis::BundleObservationViewWorkOrder::BundleObservationViewWorkOrder(), Isis::CloseProjectWorkOrder::CloseProjectWorkOrder(), Isis::CnetEditorViewWorkOrder::CnetEditorViewWorkOrder(), Isis::ControlHealthMonitorWorkOrder::ControlHealthMonitorWorkOrder(), controlList(), correlationMatrix(), createsCleanState(), Isis::CubeDnViewWorkOrder::CubeDnViewWorkOrder(), directory(), Isis::BundleObservationViewWorkOrder::execute(), Isis::CloseProjectWorkOrder::execute(), Isis::CnetEditorViewWorkOrder::execute(), Isis::ControlHealthMonitorWorkOrder::execute(), Isis::CubeDnViewWorkOrder::execute(), Isis::ExportControlNetWorkOrder::execute(), Isis::ExportImagesWorkOrder::execute(), Isis::Footprint2DViewWorkOrder::execute(), Isis::ImageFileListViewWorkOrder::execute(), Isis::ImportControlNetWorkOrder::execute(), Isis::ImportImagesWorkOrder::execute(), Isis::ImportMapTemplateWorkOrder::execute(), Isis::ImportRegistrationTemplateWorkOrder::execute(), Isis::ImportShapesWorkOrder::execute(), Isis::JigsawWorkOrder::execute(), Isis::MatrixViewWorkOrder::execute(), Isis::OpenProjectWorkOrder::execute(), Isis::RemoveImagesWorkOrder::execute(), Isis::RenameProjectWorkOrder::execute(), Isis::SaveProjectAsWorkOrder::execute(), Isis::SensorGetInfoWorkOrder::execute(), Isis::SetActiveControlWorkOrder::execute(), Isis::SetActiveImageListWorkOrder::execute(), Isis::TargetGetInfoWorkOrder::execute(), Isis::TemplateEditViewWorkOrder::execute(), executionTime(), Isis::ExportControlNetWorkOrder::ExportControlNetWorkOrder(), Isis::ExportImagesWorkOrder::ExportImagesWorkOrder(), fileItem(), Isis::Footprint2DViewWorkOrder::Footprint2DViewWorkOrder(), getTemplate(), guiCamera(), Isis::ImageFileListViewWorkOrder::ImageFileListViewWorkOrder(), imageList(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::ImportControlNetWorkOrder::ImportControlNetWorkOrder(), Isis::ImportImagesWorkOrder::ImportImagesWorkOrder(), Isis::ImportMapTemplateWorkOrder::ImportMapTemplateWorkOrder(), Isis::ImportRegistrationTemplateWorkOrder::ImportRegistrationTemplateWorkOrder(), Isis::ImportShapesWorkOrder::ImportShapesWorkOrder(), internalData(), Isis::JigsawWorkOrder::isExecutable(), Isis::SensorGetInfoWorkOrder::isExecutable(), Isis::SetActiveControlWorkOrder::isExecutable(), Isis::SetActiveImageListWorkOrder::isExecutable(), Isis::TargetGetInfoWorkOrder::isExecutable(), Isis::TemplateEditViewWorkOrder::isExecutable(), isRedoing(), isRedone(), isSavedToHistory(), isSynchronous(), isUndoable(), isUndoing(), isUndone(), Isis::JigsawWorkOrder::JigsawWorkOrder(), Isis::MatrixViewWorkOrder::MatrixViewWorkOrder(), modifiesDiskState(), Isis::MosaicSceneWorkOrder::MosaicSceneWorkOrder(), Isis::MosaicSceneWorkOrder::MosaicSceneWorkOrder(), Isis::MoveDownOneSceneWorkOrder::MoveDownOneSceneWorkOrder(), Isis::MoveDownOneSceneWorkOrder::MoveDownOneSceneWorkOrder(), Isis::MoveToBottomSceneWorkOrder::MoveToBottomSceneWorkOrder(), Isis::MoveToBottomSceneWorkOrder::MoveToBottomSceneWorkOrder(), Isis::MoveToTopSceneWorkOrder::MoveToTopSceneWorkOrder(), Isis::MoveToTopSceneWorkOrder::MoveToTopSceneWorkOrder(), Isis::MoveUpOneSceneWorkOrder::MoveUpOneSceneWorkOrder(), Isis::MoveUpOneSceneWorkOrder::MoveUpOneSceneWorkOrder(), next(), Isis::OpenProjectWorkOrder::OpenProjectWorkOrder(), Isis::ExportControlNetWorkOrder::postExecution(), Isis::ExportImagesWorkOrder::postExecution(), Isis::ImportControlNetWorkOrder::postExecution(), Isis::ImportImagesWorkOrder::postExecution(), Isis::ImportShapesWorkOrder::postExecution(), Isis::ImportImagesWorkOrder::postUndoExecution(), Isis::ImportShapesWorkOrder::postUndoExecution(), previous(), progressBar(), progressMax(), progressMin(), progressValue(), redo(), Isis::RemoveImagesWorkOrder::RemoveImagesWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::SaveProjectAsWorkOrder::SaveProjectAsWorkOrder(), Isis::SaveProjectWorkOrder::SaveProjectWorkOrder(), Isis::SensorGetInfoWorkOrder::SensorGetInfoWorkOrder(), Isis::SetActiveControlWorkOrder::SetActiveControlWorkOrder(), Isis::SetActiveImageListWorkOrder::SetActiveImageListWorkOrder(), Isis::CloseProjectWorkOrder::setupExecution(), Isis::CubeDnViewWorkOrder::setupExecution(), Isis::ExportControlNetWorkOrder::setupExecution(), Isis::ExportImagesWorkOrder::setupExecution(), Isis::Footprint2DViewWorkOrder::setupExecution(), Isis::ImageFileListViewWorkOrder::setupExecution(), Isis::ImportImagesWorkOrder::setupExecution(), Isis::MatrixViewWorkOrder::setupExecution(), Isis::OpenProjectWorkOrder::setupExecution(), Isis::RemoveImagesWorkOrder::setupExecution(), Isis::RenameProjectWorkOrder::setupExecution(), Isis::SaveProjectWorkOrder::setupExecution(), Isis::SetActiveControlWorkOrder::setupExecution(), shapeList(), statusText(), targetBody(), Isis::TargetGetInfoWorkOrder::TargetGetInfoWorkOrder(), Isis::TemplateEditViewWorkOrder::TemplateEditViewWorkOrder(), Isis::CnetEditorViewWorkOrder::undoExecution(), Isis::ImportImagesWorkOrder::undoExecution(), Isis::ImportMapTemplateWorkOrder::undoExecution(), Isis::ImportRegistrationTemplateWorkOrder::undoExecution(), Isis::ImportShapesWorkOrder::undoExecution(), Isis::MatrixViewWorkOrder::undoExecution(), Isis::RenameProjectWorkOrder::undoExecution(), Isis::ViewControlNet3DWorkOrder::ViewControlNet3DWorkOrder(), WorkOrder(), and WorkOrder().
|
static |
Determine whether a toggle action should show or hide.
| unqualifiedString | The action string. |
| imageList | The image list that the action will be performed on. |
References fromActionString(), Isis::DisplayProperties::getValue(), Isis::WorkOrder::imageList(), Isis::ImageDisplayProperties::ShowDNs, Isis::ImageDisplayProperties::ShowFill, Isis::ImageDisplayProperties::ShowLabel, Isis::ImageDisplayProperties::ShowOutline, ToggleShowCubeData, ToggleShowFilled, ToggleShowLabel, and ToggleShowOutline.
Referenced by setData(), and setupExecution().
|
virtualslotinherited |
Starts (or enqueues) a redo.
This should not be re-implemented by children.
References bestText(), dependsOn(), execute(), finished(), imageList(), isFinished(), isRedoing(), isRedone(), isSynchronous(), isUndoing(), m_status, previous(), project(), shapeList(), statusChanged(), WorkOrder(), and WorkOrderRedoing.
Referenced by Isis::Project::addToProject().
|
inherited |
: Saves a WorkOrder to a data stream.
The XML output format looks like this:
<workOrder actionText="..." undoText="..." type="..." status="...">
<images>
<image id="..." >
</images>
<internalDataValues>
<dataValue value="..." >
</internalDataValues>
</workOrder>
b QXmlStreamWriter stream The data stream we are saving the WorkOrder to.
| IException::Unknown | This exception is thrown if save is called while the WorkOrder is currently running. |
References bestText(), m_status, NoContext, and toString().
Referenced by Isis::CloseProjectWorkOrder::setupExecution(), and Isis::OpenProjectWorkOrder::setupExecution().
|
protectedinherited |
Declare that this work order is saving the project.
This makes the work order not appear in the undo stack (cannot undo/redo), and instead it is marked as a 'clean' state of the project. The QUndoCommand undo/redo will never be called. The default for createsCleanState is false. If this is set to true all wrokorders before this call will be locked.
| createsCleanState | True if this work order is going to save the project to disk, False otherwise. |
References createsCleanState().
Referenced by Isis::CloseProjectWorkOrder::CloseProjectWorkOrder(), Isis::OpenProjectWorkOrder::OpenProjectWorkOrder(), Isis::SaveProjectAsWorkOrder::SaveProjectAsWorkOrder(), and Isis::SaveProjectWorkOrder::SaveProjectWorkOrder().
|
virtual |
Assign an image list to the work order.
When this work order is assigned an image list, update the undo command text.
| images | The image list to be assigned to the work order |
Reimplemented from Isis::WorkOrder.
References bringToFront(), Isis::Image::displayProperties(), Isis::WorkOrder::imageList(), Isis::WorkOrder::internalData(), qualifyString(), and Isis::WorkOrder::setData().
|
virtualinherited |
Sets the context data for this WorkOrder.
| context | This is an enum variable with two values: NoContext,ProjectContext. |
Referenced by Isis::ImageListActionWorkOrder::setData(), setData(), Isis::ExportControlNetWorkOrder::setupExecution(), Isis::Directory::supportedActions(), and Isis::MosaicSceneWidget::supportedActions().
|
virtualinherited |
Sets the Control data for this WorkOrder.
| controls. | A pointer to the Control |
Sets the ControlList data for this WorkOrder.
| controls. | A pointer to the ControlList (which is a list of control networks). |
|
virtualinherited |
Sets the CorrelationMatrix data for this WorkOrder.
| correlationMatrix | The matrix data. |
References correlationMatrix().
|
virtualinherited |
Sets the FileItem data for this WorkOrder.
| FileItem | A QSharedPointer to the FileItem. |
References fileItem().
|
virtualinherited |
Sets the GuiCamera data for this WorkOrder.
| guiCamera | A QSharedPointer to the GuiCamera. |
References guiCamera().
|
virtualinherited |
Sets the internal data to the data stored in a ProjectItem.
| item | The item containing the data. |
References Isis::ProjectItem::control(), Isis::ProjectItem::controlList(), controlList(), Isis::ProjectItem::correlationMatrix(), Isis::ProjectItem::fileItem(), Isis::ProjectItem::getTemplate(), Isis::ProjectItem::guiCamera(), Isis::ProjectItem::image(), Isis::ProjectItem::imageList(), imageList(), Isis::ProjectItem::isControl(), Isis::ProjectItem::isControlList(), Isis::ProjectItem::isCorrelationMatrix(), Isis::ProjectItem::isFileItem(), Isis::ProjectItem::isGuiCamera(), Isis::ProjectItem::isImage(), Isis::ProjectItem::isImageList(), Isis::ProjectItem::isProject(), Isis::ProjectItem::isShape(), Isis::ProjectItem::isShapeList(), Isis::ProjectItem::isTargetBody(), Isis::ProjectItem::isTemplate(), ProjectContext, setData(), setData(), Isis::ProjectItem::shape(), Isis::ProjectItem::shapeList(), shapeList(), and Isis::ProjectItem::targetBody().
Referenced by setData().
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
Sets the TargetBody data for this WorkOrder.
| targetBody | A QSharedPointer to the TargetBody. |
References targetBody().
|
virtualinherited |
Sets the TargetBody data for this WorkOrder.
| targetBody | A QSharedPointer to the TargetBody. |
|
protectedinherited |
Sets the internal data for this WorkOrder.
WorkOrders may not use member variables to store data. Any data needed for the workorder should be saved in to the base WorkOrder using setInternalData.
| data | The data to set the internal data to. |
Referenced by Isis::ImageListActionWorkOrder::execute(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::ImportMapTemplateWorkOrder::isExecutable(), Isis::ImportRegistrationTemplateWorkOrder::isExecutable(), Isis::MosaicSceneWorkOrder::MosaicSceneWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::CubeDnViewWorkOrder::setupExecution(), Isis::ExportControlNetWorkOrder::setupExecution(), Isis::ExportImagesWorkOrder::setupExecution(), Isis::Footprint2DViewWorkOrder::setupExecution(), Isis::ImageFileListViewWorkOrder::setupExecution(), Isis::ImageListActionWorkOrder::setupExecution(), Isis::ImportControlNetWorkOrder::setupExecution(), Isis::ImportImagesWorkOrder::setupExecution(), Isis::ImportMapTemplateWorkOrder::setupExecution(), Isis::ImportRegistrationTemplateWorkOrder::setupExecution(), Isis::ImportShapesWorkOrder::setupExecution(), Isis::MatrixViewWorkOrder::setupExecution(), Isis::RenameProjectWorkOrder::setupExecution(), Isis::SaveProjectAsWorkOrder::setupExecution(), Isis::SensorGetInfoWorkOrder::setupExecution(), Isis::TargetGetInfoWorkOrder::setupExecution(), Isis::TemplateEditViewWorkOrder::setupExecution(), Isis::MosaicSceneWorkOrder::storeZPositions(), and Isis::ImageListActionWorkOrder::undoExecution().
|
protectedinherited |
By default, m_modifiesDiskState is False. If a WorkOrder modifies the Project on disk as a result of it's action, this should be set to true.
| changesProjectOnDisk | True if this WorkOrder modifies the Project on disk. False if it does not. |
Referenced by Isis::ImportControlNetWorkOrder::ImportControlNetWorkOrder(), Isis::ImportImagesWorkOrder::ImportImagesWorkOrder(), Isis::ImportMapTemplateWorkOrder::ImportMapTemplateWorkOrder(), Isis::ImportRegistrationTemplateWorkOrder::ImportRegistrationTemplateWorkOrder(), Isis::ImportShapesWorkOrder::ImportShapesWorkOrder(), and Isis::RemoveImagesWorkOrder::RemoveImagesWorkOrder().
|
inherited |
Sets the next WorkOrder in the sequence.
| nextWorkOrder | The next WorkOrder. |
References WorkOrder().
Referenced by Isis::Project::addToProject().
|
inherited |
Sets the previous WorkOrder in the sequence.
| previousWorkOrder | The previous WorkOrder. |
References WorkOrder().
Referenced by Isis::Project::addToProject().
|
protectedinherited |
Sets the progress range of the WorkOrder.
| minValue | The progress range minimum value. |
| maxValue | The progress range maximum value. |
Referenced by Isis::ExportImagesWorkOrder::execute(), and Isis::ImportControlNetWorkOrder::execute().
|
protectedinherited |
Sets the current progress value for the WorkOrder.
| int | value The value to set the current progress to. |
Referenced by Isis::ExportImagesWorkOrder::execute(), and Isis::ImportControlNetWorkOrder::execute().
|
virtual |
If needed, prompt the user for input and save it.
ChangeTransparency, ChangeColor, and potentially ToggleShowLabel will prompt for input from the user. This was renamed from execute() to setupExecution() according to WorkOrder's redesign.
Reimplemented from Isis::WorkOrder.
References ChangeColor, ChangeTransparency, fromActionString(), Isis::WorkOrder::imageList(), Isis::WorkOrder::internalData(), MoveDownOne, MoveToBottom, MoveToTop, MoveUpOne, qualifyString(), RandomizeColor, Isis::WorkOrder::setInternalData(), Isis::WorkOrder::setupExecution(), ToggleShowCubeData, ToggleShowFilled, ToggleShowLabel, ToggleShowOutline, Isis::Color::toRGBAString(), UnknownAction, and ZoomFit.
|
protectedinherited |
@briefReturns a pointer to the ShapeList for this WorkOrder.
References project(), and Isis::Project::shape().
Referenced by isExecutable(), redo(), setData(), and shapeList().
|
protectedinherited |
A thread-safe method for retrieving a pointer to the shapeList.
References shapeList(), and WorkOrder().
|
signalinherited |
References createsCleanState(), and WorkOrder().
Referenced by redo(), setupExecution(), and undo().
|
inherited |
References m_status, project(), and toString().
|
protectedinherited |
References project().
Referenced by clone(), Isis::TargetGetInfoWorkOrder::execute(), Isis::TargetGetInfoWorkOrder::isExecutable(), isExecutable(), setData(), and Isis::TargetGetInfoWorkOrder::setupExecution().
|
static |
Convert an action to a string.
| action | The action to be converted |
References ChangeColor, ChangeTransparency, MoveDownOne, MoveToBottom, MoveToTop, MoveUpOne, RandomizeColor, ToggleShowCubeData, ToggleShowFilled, ToggleShowLabel, ToggleShowOutline, UnknownAction, and ZoomFit.
Referenced by fromActionString(), and ImageListActionWorkOrder().
|
staticinherited |
Gets the current status of the WorkOrder.
| status | An enumeration of all possible WorkOrder states. |
References WorkOrderFinished, WorkOrderNotStarted, WorkOrderRedoing, WorkOrderRedone, WorkOrderUndoing, WorkOrderUndone, and WorkOrderUnknownStatus.
Referenced by fromStatusString(), save(), and statusText().
|
virtualslotinherited |
Starts (or enqueues) an undo.
This should not be re-implemented by children.
References bestText(), finished(), isFinished(), isRedoing(), isSynchronous(), isUndoing(), isUndone(), m_status, next(), statusChanged(), undoExecution(), WorkOrder(), WorkOrderNotStarted, and WorkOrderUndoing.
|
virtual |
Undo the action stored in the work order and update the work order's internal data with the results of the undo.
Reimplemented from Isis::WorkOrder.
References ChangeColor, ChangeTransparency, fromActionString(), Isis::WorkOrder::imageList(), Isis::WorkOrder::internalData(), MoveDownOne, MoveToBottom, MoveToTop, MoveUpOne, RandomizeColor, Isis::WorkOrder::setInternalData(), ToggleShowCubeData, ToggleShowFilled, ToggleShowLabel, ToggleShowOutline, UnknownAction, and ZoomFit.
|
protectedinherited |
Set the work order to be shown in the HistoryTreeWidget.
This is defaulted to true. If true the work order will be shown in the HistoryTreeWidget if false it will not be shown.
Referenced by Isis::BundleObservationViewWorkOrder::BundleObservationViewWorkOrder(), Isis::CloseProjectWorkOrder::CloseProjectWorkOrder(), Isis::CnetEditorViewWorkOrder::CnetEditorViewWorkOrder(), Isis::CubeDnViewWorkOrder::CubeDnViewWorkOrder(), Isis::Footprint2DViewWorkOrder::Footprint2DViewWorkOrder(), Isis::ImageFileListViewWorkOrder::ImageFileListViewWorkOrder(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), Isis::ImageListActionWorkOrder::ImageListActionWorkOrder(), isSavedToHistory(), Isis::MatrixViewWorkOrder::MatrixViewWorkOrder(), Isis::SensorGetInfoWorkOrder::SensorGetInfoWorkOrder(), Isis::TargetGetInfoWorkOrder::TargetGetInfoWorkOrder(), Isis::TemplateEditViewWorkOrder::TemplateEditViewWorkOrder(), Isis::ViewControlNet3DWorkOrder::ViewControlNet3DWorkOrder(), WorkOrder(), and WorkOrder().
|
protectedinherited |
This is defaulted to true.
If true, the work order will be executed on the GUI thread synchronously. If false, then the work order will be queued for execution on a non-GUI thread and will not block the GUI.
Referenced by Isis::ExportControlNetWorkOrder::ExportControlNetWorkOrder(), Isis::ExportImagesWorkOrder::ExportImagesWorkOrder(), Isis::ImportControlNetWorkOrder::ImportControlNetWorkOrder(), Isis::ImportImagesWorkOrder::ImportImagesWorkOrder(), Isis::ImportShapesWorkOrder::ImportShapesWorkOrder(), isSynchronous(), WorkOrder(), and WorkOrder().
|
protectedinherited |
Set the workorder to be undoable/redoable This is defaulted to true - his will allow the workorder to be redone.
Note the workorder undoExecution() method must be implemented. This will result on the workorder being placed on the QUndoStack and being displayed in the history as being undoable. If set to false, the work order will not be put on the QUndoStack and the workorder will not be able to be undone.
Referenced by Isis::BundleObservationViewWorkOrder::BundleObservationViewWorkOrder(), Isis::BundleObservationViewWorkOrder::BundleObservationViewWorkOrder(), Isis::CloseProjectWorkOrder::CloseProjectWorkOrder(), Isis::CnetEditorViewWorkOrder::CnetEditorViewWorkOrder(), Isis::ControlHealthMonitorWorkOrder::ControlHealthMonitorWorkOrder(), Isis::CubeDnViewWorkOrder::CubeDnViewWorkOrder(), Isis::ExportControlNetWorkOrder::ExportControlNetWorkOrder(), Isis::ExportImagesWorkOrder::ExportImagesWorkOrder(), Isis::Footprint2DViewWorkOrder::Footprint2DViewWorkOrder(), Isis::Footprint2DViewWorkOrder::Footprint2DViewWorkOrder(), Isis::ImageFileListViewWorkOrder::ImageFileListViewWorkOrder(), Isis::ImportControlNetWorkOrder::ImportControlNetWorkOrder(), Isis::ImportMapTemplateWorkOrder::ImportMapTemplateWorkOrder(), Isis::ImportRegistrationTemplateWorkOrder::ImportRegistrationTemplateWorkOrder(), Isis::ImportShapesWorkOrder::ImportShapesWorkOrder(), isUndoable(), Isis::JigsawWorkOrder::JigsawWorkOrder(), Isis::OpenProjectWorkOrder::OpenProjectWorkOrder(), Isis::RemoveImagesWorkOrder::RemoveImagesWorkOrder(), Isis::RemoveImagesWorkOrder::RemoveImagesWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::RenameProjectWorkOrder::RenameProjectWorkOrder(), Isis::SaveProjectAsWorkOrder::SaveProjectAsWorkOrder(), Isis::SensorGetInfoWorkOrder::SensorGetInfoWorkOrder(), Isis::SetActiveControlWorkOrder::SetActiveControlWorkOrder(), Isis::SetActiveImageListWorkOrder::SetActiveImageListWorkOrder(), Isis::TargetGetInfoWorkOrder::TargetGetInfoWorkOrder(), Isis::TemplateEditViewWorkOrder::TemplateEditViewWorkOrder(), WorkOrder(), and WorkOrder().
|
protectedinherited |
Referenced by Isis::ControlHealthMonitorWorkOrder::execute(), Isis::MatrixViewWorkOrder::execute(), Isis::SetActiveControlWorkOrder::execute(), Isis::SetActiveImageListWorkOrder::execute(), isFinished(), isRedoing(), isRedone(), isUndoing(), isUndone(), Isis::ImportControlNetWorkOrder::postExecution(), Isis::ImportImagesWorkOrder::postExecution(), redo(), save(), setupExecution(), statusText(), undo(), WorkOrder(), and WorkOrder().