Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "cmtkQtTriplanarWindow.h"
00034
00035 namespace
00036 cmtk
00037 {
00038
00039 void
00040 QtTriplanarWindow::slotView25()
00041 {
00042 this->slotSetZoom( 25 );
00043 }
00044
00045 void
00046 QtTriplanarWindow::slotView33()
00047 {
00048 this->slotSetZoom( 33 );
00049 }
00050
00051 void
00052 QtTriplanarWindow::slotView50()
00053 {
00054 this->slotSetZoom( 50 );
00055 }
00056
00057 void
00058 QtTriplanarWindow::slotView100()
00059 {
00060 this->slotSetZoom( 100 );
00061 }
00062
00063 void
00064 QtTriplanarWindow::slotView200()
00065 {
00066 this->slotSetZoom( 200 );
00067 }
00068
00069 void
00070 QtTriplanarWindow::slotView300()
00071 {
00072 this->slotSetZoom( 300 );
00073 }
00074
00075 void
00076 QtTriplanarWindow::slotView400()
00077 {
00078 this->slotSetZoom( 400 );
00079 }
00080
00081 void
00082 QtTriplanarWindow::slotView500()
00083 {
00084 this->slotSetZoom( 500 );
00085 }
00086
00087 void
00088 QtTriplanarWindow::slotViewInterpolation()
00089 {
00090 this->slotRenderAll();
00091 }
00092
00093 void
00094 QtTriplanarWindow::slotViewCrosshair()
00095 {
00096 const bool mode = this->m_CrosshairAction->isChecked();
00097 ScrollRenderViewAx->GetRenderImage()->SetCrosshairMode( mode );
00098 ScrollRenderViewCo->GetRenderImage()->SetCrosshairMode( mode );
00099 ScrollRenderViewSa->GetRenderImage()->SetCrosshairMode( mode );
00100 this->slotRenderAll();
00101 }
00102
00103 void
00104 QtTriplanarWindow::slotViewCheckerbox()
00105 {
00106 this->slotRenderAll();
00107 }
00108
00109 }