OPTIONS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #ifndef __OPTIONS_H__
  2. #define __OPTIONS_H__
  3. // Options.h : header file
  4. //
  5. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. /////////////////////////////////////////////////////////////////////////////
  8. // COptions dialog
  9. class COptions : public CDialog
  10. {
  11. // Construction
  12. public:
  13. COptions(CString SelectedAPI, CWnd* pParent = NULL);   // standard constructor
  14. // Dialog Data
  15. //{{AFX_DATA(COptions)
  16. enum { IDD = IDD_OPTIONS };
  17. CEdit   m_TopicID;
  18. CEdit   m_TopicName;
  19. CStatic m_Static4;
  20. CStatic m_Static3;
  21. CStatic m_Static2;
  22. CStatic m_Static1;
  23. CEdit   m_RTFFileName;
  24. CButton m_RTF;
  25. CEdit   m_HTMLFileName;
  26. CButton m_HTML;
  27. CButton m_BrowseRTF;
  28. CButton m_BrowseHTML;
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(COptions)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. CString m_strPrototype;
  39. // Generated message map functions
  40. //{{AFX_MSG(COptions)
  41. afx_msg void OnHTML();
  42. afx_msg void OnRTF();
  43. afx_msg void OnBrowseHTML();
  44. afx_msg void OnBrowseRTF();
  45. virtual void OnOK();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51. #endif // __OPTIONS_H__