home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / api2help / options.h < prev    next >
C/C++ Source or Header  |  1998-04-02  |  1KB  |  64 lines

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