Windows NT 4.0 source code leak
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.2 KiB

4 years ago
  1. /************************************************************************
  2. * *
  3. * CMAPFONT.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. #ifndef __CMAPFONT_H__
  10. #define __CMAPFONT_H__
  11. class CMapFont : public CDialog
  12. {
  13. public:
  14. CMapFont(LPCSTR pszMap, CWnd* pParent = NULL);
  15. ~CMapFont();
  16. LPCSTR GetString() { return m_pszMap; }
  17. protected:
  18. virtual void DoDataExchange(CDataExchange* pDX);
  19. virtual BOOL OnInitDialog();
  20. LPSTR m_pszMap;
  21. LPSTR m_pszComment;
  22. // The following sections are ClassWizard maintained
  23. public:
  24. //{{AFX_DATA(CMapFont)
  25. enum { IDD = IDD_EDIT_FONT_MAPPING };
  26. //}}AFX_DATA
  27. protected:
  28. CComboBox* m_pcomboNames1;
  29. CComboBox* m_pcomboNames2;
  30. CEdit* m_peditSize1;
  31. CEdit* m_peditSize2;
  32. CComboBox* m_pcomboCharset1;
  33. CComboBox* m_pcomboCharset2;
  34. CEdit* m_peditComment;
  35. //{{AFX_MSG(CMapFont)
  36. //}}AFX_MSG
  37. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  38. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  39. void afx_msg OnOverviewButton();
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. #endif // __CMAPFONT__