X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fdlgprojections.cpp;h=9921cbe1804bd380cd831aab0f23341e292e8992;hp=615c922fcd95b361c72826a62baa66fc802e4138;hb=f7ee98f7d964ed361068179f0e7ea4475ed1abdf;hpb=37d0a9642338bd25e4185f8c96fbef445d6988ff diff --git a/src/dlgprojections.cpp b/src/dlgprojections.cpp index 615c922..9921cbe 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); @@ -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 @@ -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();