FontTestDlg.h
上传用户:sz81710966
上传日期:2013-03-01
资源大小:409k
文件大小:3k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // FontTestDlg.h : header file
  2. //
  3. //{{AFX_INCLUDES()
  4. #include "fontcurve.h"
  5. //}}AFX_INCLUDES
  6. #if !defined(AFX_FONTTESTDLG_H__484BD160_0E8D_4440_8BC2_2BB1C720E664__INCLUDED_)
  7. #define AFX_FONTTESTDLG_H__484BD160_0E8D_4440_8BC2_2BB1C720E664__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. #include "NumEdit.h"
  12. #include "NumSpinCtrl.h"
  13. #include "EnumFontComboBox.h"
  14. #include "..includeCommonHead.h"
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CFontTestDlg dialog
  17. class CFontTestDlg : public CDialog
  18. {
  19. // Construction
  20. public:
  21. CFontTestDlg(CWnd* pParent = NULL); // standard constructor
  22. // Dialog Data
  23. //{{AFX_DATA(CFontTestDlg)
  24. enum { IDD = IDD_FONTTEST_DIALOG };
  25. CEdit m_ctlEditSource;
  26. CComboBox m_ctlSourceFrom;
  27. CEnumFontComboBox m_ctlFontSel;
  28. CComboBox m_ctlFontColor;
  29. CNumSpinCtrl m_spinWidth;
  30. CNumSpinCtrl m_spinHeight;
  31. CComboBox m_ctlCombox;
  32. CEdit m_ctlCode;
  33. CEdit m_ctlEdit;
  34. CString m_strBeginCode;
  35. CFontCurve m_fontCurve;
  36. int m_nFontHeight;
  37. int m_nFontWidth;
  38. //}}AFX_DATA
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CFontTestDlg)
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. protected:
  46. HICON m_hIcon;
  47. // Generated message map functions
  48. //{{AFX_MSG(CFontTestDlg)
  49. virtual BOOL OnInitDialog();
  50. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  51. afx_msg void OnPaint();
  52. afx_msg HCURSOR OnQueryDragIcon();
  53. afx_msg void OnButtonStop();
  54. afx_msg void OnButtonNext();
  55. virtual void OnCancel();
  56. afx_msg void OnFileUrl();
  57. afx_msg void OnButtonApply();
  58. afx_msg void OnSelchangeComboCodeType();
  59. afx_msg void OnSize(UINT nType, int cx, int cy);
  60. afx_msg void OnChangeEditFontWidth();
  61. afx_msg void OnChangeEditFontHeight();
  62. afx_msg void OnCreateFont();
  63. afx_msg void OnSelectFile();
  64. afx_msg void OnSelchangeComboSource();
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. private:
  68. int  m_nAddOrDelete;
  69. BYTE *m_pFont;
  70. int m_nPrevCX;
  71. int m_nPrevCY;
  72. int m_nMemWidth;
  73. LOGFONT m_logFont;
  74. LANGID m_langID;
  75. short m_nShowType;
  76. HANDLE m_fontHandle;
  77. DWORD  m_dwThreadID;
  78. CString m_strCodeSel;
  79. COffsetDiffList  m_offSetDiffList;  //用于记录GBK,GB2312,BIG5编码在转换成UNICODE时不存在的地方
  80. int m_nMaxOffset;
  81. BYTE m_byShowBuf[TRAN_FILE_BUF_LEN];
  82. CString m_strSourceFile;            //保存手动选择的源文件名
  83. int m_nCurHandSel;                  //当前手动选项的指针位置
  84. private:
  85. bool ShowInfo();
  86. bool InitParameter();
  87. bool GetFontSize(FONT_SHOW_SIZE &fontShow);
  88. bool TranFile(CFile * pDesFile, CFile * pSrcFile);
  89. bool GetCharToWORD(bool bInitBegin = false);
  90. bool PreviewShow(int nMemWidth, int nMemHeight, int nOffset);
  91. int     AnalyzeOffset(int nMemWidth, int nMemHeight, int nSourceType = SOURCE_ALL_CODE);
  92. bool ShowGridInfo();
  93. bool    FreeResource();
  94. public:
  95. bool CreateFontLibrary(int nCreateType = SOURCE_ALL_CODE);
  96. };
  97. //{{AFX_INSERT_LOCATION}}
  98. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  99. #endif // !defined(AFX_FONTTESTDLG_H__484BD160_0E8D_4440_8BC2_2BB1C720E664__INCLUDED_)