Isis 3 Programmer Reference
SensorGetInfoWorkOrder.cpp
Go to the documentation of this file.
1 
23 #include "SensorGetInfoWorkOrder.h"
24 
25 #include <QtDebug>
26 
27 #include <QFileDialog>
28 #include <QInputDialog>
29 
30 #include "Directory.h"
31 #include "IException.h"
32 #include "Project.h"
33 #include "GuiCamera.h"
34 #include "SensorInfoWidget.h"
35 
36 namespace Isis {
37 
44  WorkOrder(project) {
45  QAction::setText(tr("Get Info...") );
46  // Currently undo is not implemented.
47  m_isUndoable =false;
48  m_isSavedToHistory = false;
49  }
50 
51 
57  WorkOrder(other) {
58  }
59 
60 
65  }
66 
67 
73  return new SensorGetInfoWorkOrder(*this);
74  }
75 
76 
87  if (!guiCamera)
88  return false;
89 
90  // if we already have a view for this camera, don't redisplay
92  for (int i = 0; i < existingViews.size(); i++) {
93  if (existingViews.at(i)->objectName() == guiCamera->displayProperties()->displayName() )
94  return false;
95  }
96 
97  return true;
98  }
99 
100 
107  bool success = WorkOrder::setupExecution();
108 
109  if (success) {
110  QString sensorDisplayName = guiCamera()->displayProperties()->displayName();
111  QUndoCommand::setText(tr("Get %1 sensor info").arg(sensorDisplayName) );
112 
114  internalData.append(sensorDisplayName);
116  }
117 
118  return success;
119  }
120 
121 
128  // depend on types of ourselves.
129  return dynamic_cast<SensorGetInfoWorkOrder *>(other);
130  }
131 
132 
137 
138  SensorInfoWidget *sensorInfoWidget =
140 
141 
142  if (!sensorInfoWidget) {
143  QString msg = "error displaying sensor info";
145  }
146  }
147 
148 
153  //delete project()->directory()->cnetEditorViews().last();
154  }
155 }
Widget for displaying information about a sensor.
void execute()
Redisplays the sensor view.
The main project for ipce.
Definition: Project.h:289
This is a child of class WorkOrder which is used for anything that performs an action in a Project...
virtual bool setupExecution()
This sets up the state for the work order.
Definition: WorkOrder.cpp:1275
This error is for when a programmer made an API call that was illegal.
Definition: IException.h:162
SensorGetInfoWorkOrder(Project *project)
Creates a WorkOrder that will retrieve target body info.
Directory * directory() const
Returns the directory associated with this Project.
Definition: Project.cpp:1229
Provide Undo/redo abilities, serialization, and history for an operation.
Definition: WorkOrder.h:322
QList< SensorInfoWidget * > sensorInfoViews()
Accessor for the list of SensorInfoWidgets currently available.
Definition: Directory.cpp:1379
#define _FILEINFO_
Macro for the filename and line number.
Definition: IException.h:40
bool setupExecution()
Attempts to retrieve target body info from the camera and display it in a view.
bool m_isUndoable
Set the workorder to be undoable/redoable This is defaulted to true - his will allow the workorder to...
Definition: WorkOrder.h:534
virtual bool isExecutable(GuiCameraQsp camera)
Determine if we already have a view for this camera.
void undoExecution()
Deletes the last view.
SensorInfoWidget * addSensorInfoView(GuiCameraQsp camera)
Add sensor data view widget to the window.
Definition: Directory.cpp:1018
Isis exception class.
Definition: IException.h:107
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
bool dependsOn(WorkOrder *other) const
Determines whether a WorkOrder depends upon SensorGetInfoWorkerOrder.
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1314
GuiCameraQsp guiCamera()
WorkOrder::guiCamera.
Definition: WorkOrder.cpp:770
virtual SensorGetInfoWorkOrder * clone() const
Returns a copy of the current instance of this WorkOrder.
bool m_isSavedToHistory
Set the work order to be shown in the HistoryTreeWidget.
Definition: WorkOrder.h:548
QStringList internalData() const
Gets the internal data for this WorkOrder.
Definition: WorkOrder.cpp:1391
void setInternalData(QStringList data)
Sets the internal data for this WorkOrder.
Definition: WorkOrder.cpp:1332