Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.3 KiB

  1. /**************************************************/
  2. /* */
  3. /* */
  4. /* Update EUDC Dialog */
  5. /* */
  6. /* */
  7. /* Copyright (c) 1997-1999 Microsoft Corporation. */
  8. /**************************************************/
  9. #include "eudclist.h"
  10. class CEudcDlg : public CDialog
  11. {
  12. public:
  13. CEudcDlg(CWnd* pParent = NULL);
  14. //{{AFX_DATA(CEudcDlg)
  15. enum { IDD = IDD_CUSTOMCODE };
  16. //}}AFX_DATA
  17. protected:
  18. void SetViewCustomFont();
  19. public:
  20. CEudcList m_EditList;
  21. CViewEdit m_ViewChar;
  22. #ifdef BUILD_ON_WINNT
  23. CColumnHeading m_ColumnHeading;
  24. #endif //BUILD_ON_WINNT
  25. CCustomListFrame m_ListFrame;
  26. CCustomInfoFrame m_Frame;
  27. CCustomInfoFrame m_InfoFrame2;
  28. CCustomInfoFrame m_InfoFrame3;
  29. CComboBox m_ComboRange;
  30. CStatic m_StaticRange;
  31. BOOL WorRFlag;
  32. private:
  33. void AdjustFileName();
  34. void AdjustFontName();
  35. void RegistRegFont();
  36. TCHAR FileName[MAX_PATH];
  37. TCHAR FontName[LF_FACESIZE];
  38. protected:
  39. virtual BOOL OnInitDialog();
  40. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  41. //{{AFX_MSG(CEudcDlg)
  42. virtual void OnOK();
  43. afx_msg void OnSelchangeChinarange();
  44. virtual void OnCancel();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };