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

  1. #ifndef __CONFIG_H__
  2. #define __CONFIG_H__
  3.  
  4. // Config.h : header file
  5. //
  6.  
  7. // Copyright (C) 1992-1998 Microsoft Corporation
  8. // All rights reserved.
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CConfigure dialog
  12.  
  13. class CConfigure : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CConfigure(CWnd* pParent = NULL);
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CConfigure)
  21.     enum { IDD = IDD_CONFIGURATION };
  22.     CButton m_StatusWarnErr;
  23.     CStatic m_StatusText;
  24.     CEdit   m_StatusLine;
  25.     CEdit   m_SendTo;
  26.     CStatic m_SendText;
  27.     CButton m_SendMail;
  28.     CButton m_SendGroup;
  29.     CStatic m_FileName;
  30.     CButton m_CloseWhenDone;
  31.     CButton m_Browse;
  32.     CButton m_BodyGroup;
  33.     CEdit   m_BodyFileName;
  34.     //}}AFX_DATA
  35.  
  36.     CString m_strSendTo;
  37.     CString m_strStatusLine;
  38.     CString m_strFileToSend;
  39.     BOOL m_bSendFile;
  40.     BOOL m_bIncBuildResults;
  41.     BOOL m_bMailOnEach;
  42.     BOOL m_bCloseWhenDone;
  43.     BOOL m_bSendMail;
  44.  
  45.  
  46. // Overrides
  47.     // ClassWizard generated virtual function overrides
  48.     //{{AFX_VIRTUAL(CConfigure)
  49.     protected:
  50.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  51.     //}}AFX_VIRTUAL
  52.  
  53. // Implementation
  54.     protected:
  55.     // Generated message map functions
  56.     //{{AFX_MSG(CConfigure)
  57.     afx_msg void OnWorkspaces();
  58.     afx_msg void OnBrowse();
  59.     afx_msg void OnSendFileAsBody();
  60.     afx_msg void OnBlankBody();
  61.     afx_msg void OnSendMail();
  62.     virtual void OnOK();
  63.     virtual BOOL OnInitDialog();
  64.     //}}AFX_MSG
  65.     DECLARE_MESSAGE_MAP()
  66. };
  67.  
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  70.  
  71. #endif // __CONFIG_H__
  72.