UND_LeftToRight.cpp
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // UND_LeftToRight.cpp: implementation of the CUND_LeftToRight class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "graphsoft.h"
  6. #include "UND_LeftToRight.h"
  7. #include "Core.h"
  8. #include "GraphDefines.h"
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[]=__FILE__;
  12. #define new DEBUG_NEW
  13. #endif
  14. //////////////////////////////////////////////////////////////////////
  15. // Construction/Destruction
  16. //////////////////////////////////////////////////////////////////////
  17. CUND_LeftToRight::CUND_LeftToRight()
  18. {
  19. CString str;
  20. str.LoadString(IDS_LEFTTORIGHT);
  21. SetTitle(str);
  22. m_pSLfToRt=NULL;
  23. }
  24. CUND_LeftToRight::CUND_LeftToRight(void* pVoid)
  25. {
  26. m_pSLfToRt=NULL;
  27. m_pSLfToRt=(SUNDLeftToRight*)pVoid;
  28. CString str;
  29. str.LoadString(IDS_LEFTTORIGHT);
  30. SetTitle(str);
  31. }
  32. CUND_LeftToRight::~CUND_LeftToRight()
  33. {
  34. if(m_pSLfToRt!=NULL)
  35. delete m_pSLfToRt;
  36. m_pSLfToRt=NULL;
  37. }
  38. void CUND_LeftToRight::Destroy()
  39. {
  40. }
  41. BOOL CUND_LeftToRight::OnEditUndo(CCore *pCore)
  42. {
  43. int nShapeNum=m_pSLfToRt->ArrId.GetSize();
  44. CShape* pShape;
  45. CRect rtOut=m_pSLfToRt->rtOut;
  46. CDC* pDC=CDC::FromHandle(GetDC(pCore->m_pView->GetSafeHwnd()));
  47. for(int i=0;i<nShapeNum;i++){
  48. pShape=pCore->GetShapeByID(m_pSLfToRt->ArrId.GetAt(i));
  49. pCore->DrawGraph(pShape,FALSE);
  50. pShape->LeftToRight(pDC,rtOut);
  51. pCore->DrawGraph(pShape,TRUE);
  52. }
  53. return TRUE;
  54. }
  55. BOOL CUND_LeftToRight::OnEditRedo(CCore *pCore)
  56. {
  57.     return this->OnEditUndo(pCore);
  58. }
  59. BOOL CUND_LeftToRight::OutputLog(CCore *pCore) 
  60. //未做
  61. return false; 
  62. }