Isis Developer Reference
SensorGetInfoWorkOrder.h
Go to the documentation of this file.
1 #ifndef SensorGetInfoWorkOrder_H
2 #define SensorGetInfoWorkOrder_H
3 
25 #include "WorkOrder.h"
26 
27 namespace Isis {
28  class GuiCamera;
29 
47  Q_OBJECT
48  public:
52 
53  virtual SensorGetInfoWorkOrder *clone() const;
54 
55  virtual bool isExecutable(GuiCameraQsp camera);
56  bool setupExecution();
57 
58  protected:
59  bool dependsOn(WorkOrder *other) const;
60  void execute();
61  void undoExecution();
62 
63  private:
64  SensorGetInfoWorkOrder &operator=(const SensorGetInfoWorkOrder &rhs);
65  };
66 }
67 #endif
Isis::Directory::addSensorInfoView
SensorInfoWidget * addSensorInfoView(GuiCameraQsp camera)
Add sensor data view widget to the window.
Definition: Directory.cpp:1004
Isis::WorkOrder::setupExecution
virtual bool setupExecution()
This sets up the state for the work order.
Definition: WorkOrder.cpp:1261
QList
This is free and unencumbered software released into the public domain.
Definition: BoxcarCachingAlgorithm.h:13
Isis::WorkOrder
Provide Undo/redo abilities, serialization, and history for an operation.
Definition: WorkOrder.h:311
Project.h
Isis::WorkOrder::m_isSavedToHistory
bool m_isSavedToHistory
Set the work order to be shown in the HistoryTreeWidget.
Definition: WorkOrder.h:537
Directory.h
Isis::WorkOrder::setInternalData
void setInternalData(QStringList data)
Sets the internal data for this WorkOrder.
Definition: WorkOrder.cpp:1318
Isis::SensorGetInfoWorkOrder::~SensorGetInfoWorkOrder
~SensorGetInfoWorkOrder()
The Destructor.
Definition: SensorGetInfoWorkOrder.cpp:64
Isis::SensorGetInfoWorkOrder::clone
virtual SensorGetInfoWorkOrder * clone() const
Returns a copy of the current instance of this WorkOrder.
Definition: SensorGetInfoWorkOrder.cpp:72
Isis::SensorGetInfoWorkOrder::undoExecution
void undoExecution()
Deletes the last view.
Definition: SensorGetInfoWorkOrder.cpp:152
QSharedPointer< GuiCamera >
SensorInfoWidget.h
QStringList
Isis::Project
The main project for ipce.
Definition: Project.h:289
Isis::Project::directory
Directory * directory() const
Returns the directory associated with this Project.
Definition: Project.cpp:1229
WorkOrder.h
Isis::WorkOrder::m_isUndoable
bool m_isUndoable
Set the workorder to be undoable/redoable This is defaulted to true - his will allow the workorder to...
Definition: WorkOrder.h:523
_FILEINFO_
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:24
SensorGetInfoWorkOrder.h
Isis::SensorGetInfoWorkOrder
This is a child of class WorkOrder which is used for anything that performs an action in a Project.
Definition: SensorGetInfoWorkOrder.h:46
Isis::WorkOrder::project
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1300
Isis::SensorGetInfoWorkOrder::dependsOn
bool dependsOn(WorkOrder *other) const
Determines whether a WorkOrder depends upon SensorGetInfoWorkerOrder.
Definition: SensorGetInfoWorkOrder.cpp:127
GuiCamera.h
Isis::IException
Isis exception class.
Definition: IException.h:91
Isis::SensorGetInfoWorkOrder::setupExecution
bool setupExecution()
Attempts to retrieve target body info from the camera and display it in a view.
Definition: SensorGetInfoWorkOrder.cpp:106
Isis::SensorInfoWidget
Widget for displaying information about a sensor.
Definition: SensorInfoWidget.h:30
IException.h
Isis::IException::Programmer
@ Programmer
This error is for when a programmer made an API call that was illegal.
Definition: IException.h:146
Isis::WorkOrder::guiCamera
GuiCameraQsp guiCamera()
WorkOrder::guiCamera.
Definition: WorkOrder.cpp:756
Isis::Directory::sensorInfoViews
QList< SensorInfoWidget * > sensorInfoViews()
Accessor for the list of SensorInfoWidgets currently available.
Definition: Directory.cpp:1365
Isis::WorkOrder::internalData
QStringList internalData() const
Gets the internal data for this WorkOrder.
Definition: WorkOrder.cpp:1377
Isis::SensorGetInfoWorkOrder::isExecutable
virtual bool isExecutable(GuiCameraQsp camera)
Determine if we already have a view for this camera.
Definition: SensorGetInfoWorkOrder.cpp:86
Isis::SensorGetInfoWorkOrder::execute
void execute()
Redisplays the sensor view.
Definition: SensorGetInfoWorkOrder.cpp:136
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::SensorGetInfoWorkOrder::SensorGetInfoWorkOrder
SensorGetInfoWorkOrder(Project *project)
Creates a WorkOrder that will retrieve target body info.
Definition: SensorGetInfoWorkOrder.cpp:43