home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / WILDASS / SOURCE / OPTSDLG.H < prev    next >
C/C++ Source or Header  |  1993-08-14  |  800b  |  35 lines

  1. // optsdlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // COptsDlg dialog
  6.  
  7. class COptsDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     COptsDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(COptsDlg)
  15.     enum { IDD = IDD_OPTIONS };
  16.     UINT    m_cPixelFrame;
  17.     BOOL    m_fComeUpAllways;
  18.     BOOL    m_fStayVisible;
  19.     //}}AFX_DATA
  20.  
  21. // Implementation
  22. protected:
  23.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  24.  
  25.     // Generated message map functions
  26.     //{{AFX_MSG(COptsDlg)
  27.     virtual BOOL OnInitDialog();
  28.     afx_msg void OnClickedDesktopOne();
  29.     afx_msg void OnClickedDesktopThree();
  30.     afx_msg void OnClickedDesktopTwo();
  31.     afx_msg void OnClickedHelp();
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34. };
  35.