home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 January / dppcpro0199a.iso / January / Fp98 / SDK / WebBot / votebot / client / VoteBotDialog.h < prev   
Encoding:
C/C++ Source or Header  |  1997-09-18  |  1.1 KB  |  52 lines

  1. //
  2. // Copyright (c) 1997 Microsoft Corp.  All Rights Reserved
  3. //
  4. // VoteBotDialog.h : header file
  5. //
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CVoteBotDialog dialog
  9.  
  10. #include "../webbot.h"
  11.  
  12. class CVoteBotDialog : public CDialog
  13. {
  14. // Construction
  15. public:
  16.     CVoteBotDialog(CWnd* pParent = NULL);   // standard constructor
  17.  
  18.     void DialogToDictionary(CWebBotDict &dict);
  19.     
  20.     void DictionaryToDialog(CWebBotDict &dict);
  21.     // reads bot info from WebBotDict and maps to component editor dialog
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CVoteBotDialog)
  25.     enum { IDD = IDD_DIALOG1 };
  26.     int      m_votetype;
  27.     int      m_voteopt;
  28.     bool    m_bModified;
  29.     bool    m_bFirstEdit;
  30.  
  31.     //}}AFX_DATA
  32.  
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CVoteBotDialog)
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41.     
  42. // Implementation
  43. protected:
  44.  
  45.     afx_msg void setModFlag();
  46.  
  47.     // Generated message map functions
  48.     //{{AFX_MSG(CVoteBotDialog)
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.