X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fdlgprojections.cpp;h=6058b5c0499bee1d770d246069cfdbb9341465de;hp=615c922fcd95b361c72826a62baa66fc802e4138;hb=bb09705ec0a20bf5b41b4248cf7800b000bc3fcb;hpb=1a050c98763fbbc0662731b0b76953acede6f5d7 diff --git a/src/dlgprojections.cpp b/src/dlgprojections.cpp index 615c922..6058b5c 100644 --- a/src/dlgprojections.cpp +++ b/src/dlgprojections.cpp @@ -59,7 +59,7 @@ BEGIN_EVENT_TABLE(ProjectionsDialog, wxDialog) ProjectionsDialog::ProjectionsDialog (Scanner& rScanner, Projections& rProj, const Phantom& rPhantom, const int iTrace, wxWindow *parent) - : wxDialog(parent, -1, "Collect Projections", wxDefaultPosition), m_rScanner(rScanner), m_rProjections(rProj), m_rPhantom(rPhantom), +: wxDialog(parent, -1, _T("Collect Projections"), wxDefaultPosition), m_rScanner(rScanner), m_rProjections(rProj), m_rPhantom(rPhantom), m_pSGPDriver(NULL), m_pSGP(NULL), m_iTrace(iTrace), m_pDC(NULL), m_btnAbort(0), m_btnPause(0), m_btnStep(0) { m_state = Continue; @@ -79,7 +79,7 @@ BEGIN_EVENT_TABLE(ProjectionsDialog, wxDialog) m_btnAbort->SetConstraints(c); - m_btnPause = new wxButton (this, ID_BTN_PAUSE, wxString("Pause")); + m_btnPause = new wxButton (this, ID_BTN_PAUSE, _T("Pause")); wxLayoutConstraints* cPause = new wxLayoutConstraints; cPause->right.SameAs(this, wxRight, 3*LAYOUT_X_MARGIN + sizeBtn.x); cPause->bottom.SameAs(this, wxBottom, 2*LAYOUT_Y_MARGIN); @@ -87,7 +87,7 @@ BEGIN_EVENT_TABLE(ProjectionsDialog, wxDialog) cPause->height.Absolute(sizeBtn.y); m_btnPause->SetConstraints(cPause); - m_btnStep = new wxButton (this, ID_BTN_STEP, wxString("Step")); + m_btnStep = new wxButton (this, ID_BTN_STEP, _T("Step")); wxLayoutConstraints* cStep = new wxLayoutConstraints; cStep->right.SameAs(this, wxRight, 5*LAYOUT_X_MARGIN + sizeBtn.x * 2); cStep->bottom.SameAs(this, wxBottom, 2*LAYOUT_Y_MARGIN); @@ -129,7 +129,7 @@ BEGIN_EVENT_TABLE(ProjectionsDialog, wxDialog) m_pSGP->setTextPointSize(10); #ifdef __WXMAC__ - MacUpdateImmediately(); + // MacUpdateImmediately(); #endif } @@ -187,7 +187,7 @@ ProjectionsDialog::projectView (int iViewNumber) showView (iViewNumber); wxYield(); // update the display if (m_iTrace >= Trace::TRACE_PLOT) { - ::wxUsleep(500); + ::wxMilliSleep(500); } } else { m_state = Finished; // so that we return TRUE below and @@ -195,7 +195,7 @@ ProjectionsDialog::projectView (int iViewNumber) } #ifdef __WXMAC__ - MacUpdateImmediately(); + // MacUpdateImmediately(); #endif return m_state != Cancelled; @@ -232,12 +232,12 @@ ProjectionsDialog::OnPause (wxCommandEvent& event) m_pSGP->setDC (&m_memoryDC); showView (m_iLastView); m_state = Paused; - m_btnPause->SetLabel (wxString("Resume")); + m_btnPause->SetLabel (_T("Resume")); m_pSGP->setDC (m_pDC); m_memoryDC.SelectObject(wxNullBitmap); } else if (m_state == Paused) { m_state = Continue; - m_btnPause->SetLabel (wxString("Pause")); + m_btnPause->SetLabel (_T("Pause")); } } @@ -252,7 +252,7 @@ ProjectionsDialog::OnStep (wxCommandEvent& event) showView (m_iLastView); // m_rScanner.collectProjections (m_rProjections, m_rPhantom, m_iLastView, 1, true, m_iTrace, m_pSGP); m_state = Paused; - m_btnPause->SetLabel (wxString("Resume")); + m_btnPause->SetLabel (_T("Resume")); m_pSGP->setDC (m_pDC); m_memoryDC.SelectObject(wxNullBitmap); Refresh();