Isis 3 Programmer Reference
SetActiveControlWorkOrder.h
Go to the documentation of this file.
1 #ifndef SetActiveControlWorkOrder_H
2 #define SetActiveControlWorkOrder_H
3 
23 #include "WorkOrder.h"
24 
25 namespace Isis {
26  class Control;
27 
50  Q_OBJECT
51  public:
55 
56  virtual SetActiveControlWorkOrder *clone() const;
57 
58  virtual bool isExecutable(ControlList *controls);
59 
60  bool setupExecution();
61  void execute();
62 
63  private:
65  };
66 }
67 #endif
The main project for ipce.
Definition: Project.h:289
virtual SetActiveControlWorkOrder * clone() const
Returns a copy of this SetActiveControlWorkOrder instance.
Maintains a list of Controls so that control nets can easily be copied from one Project to another...
Definition: ControlList.h:36
This is a child of class WorkOrder which is used for anything that performs an action in a Project...
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.
SetActiveControlWorkOrder(Project *project)
Creates a WorkOrder that will set the active Control in the project.
bool setupExecution()
Make sure an active ImageList has been chosen.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
virtual bool isExecutable(ControlList *controls)
Determines if we can set this control as active.
void execute()
Set the active control net for the project.
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1314