模拟拼音输入法Dlg.h
上传用户:sztcmy
上传日期:2013-01-09
资源大小:154k
文件大小:2k
源码类别:

输入法编程

开发平台:

Visual C++

  1. // 模拟拼音输入法Dlg.h : header file
  2. //
  3. #if !defined(AFX_DLG_H__3FB0B674_FADB_41A3_A5C1_78D2089E9C18__INCLUDED_)
  4. #define AFX_DLG_H__3FB0B674_FADB_41A3_A5C1_78D2089E9C18__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyDlg dialog
  10. class CMyDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CMyDlg(CWnd* pParent = NULL); // standard constructor
  15. void ChangeOrder();                         //修改汉字先后顺序
  16. void ShowText();                            //接收汉字
  17. void DisplayHanzi();                        //显示提示汉字
  18. void ReadFile();                            //读取文件
  19. CString strstr1;                            //保存用户输入的拼音  
  20. CString strstr2;
  21. int flag;                                   //标志是否找到拼音对应的汉字
  22. int page;                                   //翻页的变量
  23. int length;                                 //保存汉字所占的字节数
  24. int Num;                                            
  25. struct Array
  26. {
  27. unsigned char ch[3];
  28. }MyArray[500];                              //用来存放汉字的数组
  29.     CMapStringToString m_Map;                   //定义映射对象    
  30. // Dialog Data
  31. //{{AFX_DATA(CMyDlg)
  32. enum { IDD = IDD_MY_DIALOG };
  33. // NOTE: the ClassWizard will add data members here
  34. CString m_text;
  35. CString m_hanzi;
  36. CString m_pinyin;
  37. //}}AFX_DATA
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CMyDlg)
  40. public:
  41. virtual BOOL PreTranslateMessage(MSG* pMsg);
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. HICON m_hIcon;
  48. // Generated message map functions
  49. //{{AFX_MSG(CMyDlg)
  50. virtual BOOL OnInitDialog();
  51. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  52. afx_msg void OnPaint();
  53. afx_msg HCURSOR OnQueryDragIcon();
  54. afx_msg void OnChangeInputpy();
  55. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  56. afx_msg void OnExit();
  57. afx_msg void OnAbout();
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_DLG_H__3FB0B674_FADB_41A3_A5C1_78D2089E9C18__INCLUDED_)