Isis 3.0 Programmer Reference
Back | Home
MoveToBottomSceneWorkOrder.cpp
1 #include "IsisDebug.h"
2 #include "MoveToBottomSceneWorkOrder.h"
3 
4 #include "MosaicSceneWidget.h"
5 
6 namespace Isis {
7 
8  MoveToBottomSceneWorkOrder::MoveToBottomSceneWorkOrder(MosaicSceneWidget *scene,
9  Project *project) :
10  MosaicSceneWorkOrder(tr("Send to Back"), scene, project) {
11  }
12 
13 
14  MoveToBottomSceneWorkOrder::MoveToBottomSceneWorkOrder(Project *project) :
15  MosaicSceneWorkOrder(project) {
16  }
17 
18 
19  MoveToBottomSceneWorkOrder::MoveToBottomSceneWorkOrder(
20  const MoveToBottomSceneWorkOrder &other) : MosaicSceneWorkOrder(other) {
21  }
22 
23 
24  MoveToBottomSceneWorkOrder::~MoveToBottomSceneWorkOrder() {
25  }
26 
27 
28  MoveToBottomSceneWorkOrder *MoveToBottomSceneWorkOrder::clone() const {
29  return new MoveToBottomSceneWorkOrder(*this);
30  }
31 
32 
34  storeZPositions( scene()->moveToBottom(imageList()) );
35  }
36 
37 
39  restoreZPositions(false);
40  }
41 }
void syncRedo()
This method is designed to be implemented by children work orders.
void syncUndo()
This method is designed to be implemented by children work orders.
MosaicSceneWidget * scene()
Returns the MosaicSceneWidget corresponding to this work order's interal data (the MosaicSceneWidget'...
void restoreZPositions(bool zValuesMightBeInUse)
ImageList * imageList()
a pointer to the ImageList for this WorkOrder.
Definition: WorkOrder.cpp:565

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the ISIS Support Center
File Modified: 07/12/2023 23:24:12