Isis 3 Programmer Reference
SetActiveImageListWorkOrder.h
Go to the documentation of this file.
1 #ifndef SetActiveImageListWorkOrder_H
2 #define SetActiveImageListWorkOrder_H
3 
23 #include "WorkOrder.h"
24 
25 namespace Isis {
26  class ImageList;
27 
53  Q_OBJECT
54  public:
58 
59  virtual SetActiveImageListWorkOrder *clone() const;
60 
61  virtual bool isExecutable(ImageList *imageList);
62 
63  virtual bool setupExecution();
64  virtual void execute();
65 
66  private:
68  };
69 }
70 #endif
virtual SetActiveImageListWorkOrder * clone() const
Returns a copy of this SetActiveImageListWorkOrder instance.
Internalizes a list of images and allows for operations on the entire list.
Definition: ImageList.h:55
The main project for ipce.
Definition: Project.h:289
virtual bool setupExecution()
Simply calls the parent WorkOrder::setupExecution().
Provide Undo/redo abilities, serialization, and history for an operation.
Definition: WorkOrder.h:322
Unless noted otherwise, the portions of Isis written by the USGS are public domain.
virtual bool isExecutable(ImageList *imageList)
Determines if we can set this imageList as active.
SetActiveImageListWorkOrder(Project *project)
Creates a not undable WorkOrder that will set the active ImageList in the project.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1314
virtual void execute()
Executes this work order.
This is a child of class WorkOrder which is used for anything that performs an action in a Project...
ImageList * imageList()
Returns a pointer to the ImageList for this WorkOrder.
Definition: WorkOrder.cpp:645