MultiLanguageView.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MultiLanguageView.cpp : implementation of the CMultiLanguageView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "MainFrm.h"
  22. #include "MultiLanguageDoc.h"
  23. #include "MultiLanguageView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CMultiLanguageView
  31. IMPLEMENT_DYNCREATE(CMultiLanguageView, CView)
  32. BEGIN_MESSAGE_MAP(CMultiLanguageView, CView)
  33. //{{AFX_MSG_MAP(CMultiLanguageView)
  34. // NOTE - the ClassWizard will add and remove mapping macros here.
  35. //    DO NOT EDIT what you see in these blocks of generated code!
  36. //}}AFX_MSG_MAP
  37. // Standard printing commands
  38. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  39. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  40. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CMultiLanguageView construction/destruction
  44. CMultiLanguageView::CMultiLanguageView()
  45. {
  46. // TODO: add construction code here
  47. }
  48. CMultiLanguageView::~CMultiLanguageView()
  49. {
  50. }
  51. BOOL CMultiLanguageView::PreCreateWindow(CREATESTRUCT& cs)
  52. {
  53. // TODO: Modify the Window class or styles here by modifying
  54. //  the CREATESTRUCT cs
  55. return CView::PreCreateWindow(cs);
  56. }
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CMultiLanguageView drawing
  59. void CMultiLanguageView::OnDraw(CDC* pDC)
  60. {
  61. CXTPFontDC fontDC(pDC, XTPPaintManager()->GetRegularBoldFont());
  62. if (!IsLanguageFound())
  63. {
  64. pDC->SetTextColor(0xFF);
  65. pDC->TextOut(5,5, _T("Can't find language dlls"));
  66. pDC->TextOut(5,20, _T("Please build them using [ToolkitDir]\Workspace\Resource\Resource.dsw workspace"));
  67. }
  68. else
  69. {
  70. pDC->SetTextColor(0);
  71. pDC->TextOut(5,5, _T("Click the "Language" pull-down menu to see the translated text"));
  72. pDC->TextOut(5,20, _T("Also see "Scribble" multi-language project for localization sample."));
  73. }
  74. }
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CMultiLanguageView printing
  77. BOOL CMultiLanguageView::OnPreparePrinting(CPrintInfo* pInfo)
  78. {
  79. // default preparation
  80. return DoPreparePrinting(pInfo);
  81. }
  82. void CMultiLanguageView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  83. {
  84. // TODO: add extra initialization before printing
  85. }
  86. void CMultiLanguageView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  87. {
  88. // TODO: add cleanup after printing
  89. }
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CMultiLanguageView diagnostics
  92. #ifdef _DEBUG
  93. void CMultiLanguageView::AssertValid() const
  94. {
  95. CView::AssertValid();
  96. }
  97. void CMultiLanguageView::Dump(CDumpContext& dc) const
  98. {
  99. CView::Dump(dc);
  100. }
  101. CMultiLanguageDoc* CMultiLanguageView::GetDocument() // non-debug version is inline
  102. {
  103. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMultiLanguageDoc)));
  104. return (CMultiLanguageDoc*)m_pDocument;
  105. }
  106. #endif //_DEBUG
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CMultiLanguageView message handlers