home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Windows 95 Special 1 / WINDOWS95_1.bin / internet / vogon / slides.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-02  |  1.0 KB  |  47 lines

  1. // slides.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSlideShowDlg dialog
  6.  
  7. class CSlideShowDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CSlideShowDlg(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. public:
  14.    CStringArray* m_pSlideList;
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CSlideShowDlg)
  18.     enum { IDD = IDD_SLIDESHOWSETUP };
  19.     CListBox    m_listboxSlides;
  20.     CEdit    m_editSlideName;
  21.     UINT    m_uintInterval;
  22.     BOOL    m_doLoop;
  23.     CString    m_stringSlideName;
  24.     //}}AFX_DATA
  25.  
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CSlideShowDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35.  
  36.     // Generated message map functions
  37. protected:
  38.     //{{AFX_MSG(CSlideShowDlg)
  39.     virtual BOOL OnInitDialog();
  40.     virtual void OnOK();
  41.     afx_msg void OnButtonAdd();
  42.     afx_msg void OnButtonRemove();
  43.     afx_msg void OnSelChangeListSlides();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.