Isis 3 Programmer Reference
ImportMapTemplateWorkOrder.h
Go to the documentation of this file.
1 #ifndef ImportMapTemplateWorkOrder_H
2 #define ImportMapTemplateWorkOrder_H
3 
25  #include "WorkOrder.h"
26  #include "ProjectItem.h"
27  #include "Template.h"
28  #include "TemplateList.h"
29 
30  namespace Isis {
42  Q_OBJECT
43  public:
47 
48  virtual ImportMapTemplateWorkOrder *clone() const;
49 
50  virtual bool isExecutable(ProjectItem *item);
51  bool setupExecution();
52  void execute();
53  void undoExecution();
54 
55  private:
57 
58  TemplateList *m_list;
59  };
60  }
61 
62  #endif
Isis::ImportMapTemplateWorkOrder::clone
virtual ImportMapTemplateWorkOrder * clone() const
This method clones the current ImportMapTemplateWorkOrder and returns it.
Definition: ImportMapTemplateWorkOrder.cpp:78
Isis::WorkOrder
Provide Undo/redo abilities, serialization, and history for an operation.
Definition: WorkOrder.h:311
Isis::TemplateList
Definition: TemplateList.h:35
Isis::ImportMapTemplateWorkOrder::setupExecution
bool setupExecution()
Sets up the work order for execution.
Definition: ImportMapTemplateWorkOrder.cpp:110
Isis::Project
The main project for ipce.
Definition: Project.h:289
Isis::WorkOrder::project
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1300
Isis::ImportMapTemplateWorkOrder::execute
void execute()
Imports the templates.
Definition: ImportMapTemplateWorkOrder.cpp:141
Isis::ImportMapTemplateWorkOrder::ImportMapTemplateWorkOrder
ImportMapTemplateWorkOrder(Project *project)
Creates a work order to import map templates.
Definition: ImportMapTemplateWorkOrder.cpp:42
Isis::ImportMapTemplateWorkOrder
Add map templates to a project.
Definition: ImportMapTemplateWorkOrder.h:41
Isis::ImportMapTemplateWorkOrder::~ImportMapTemplateWorkOrder
~ImportMapTemplateWorkOrder()
Destructor.
Definition: ImportMapTemplateWorkOrder.cpp:68
Isis::ImportMapTemplateWorkOrder::undoExecution
void undoExecution()
Deletes the previously imported templates.
Definition: ImportMapTemplateWorkOrder.cpp:170
Isis::ImportMapTemplateWorkOrder::isExecutable
virtual bool isExecutable(ProjectItem *item)
This method returns true if the user clicked on a project tree node with the text "Maps".
Definition: ImportMapTemplateWorkOrder.cpp:93
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::ProjectItem
Represents an item of a ProjectItemModel in Qt's model-view framework.
Definition: ProjectItem.h:134