// slides.h : header file // ///////////////////////////////////////////////////////////////////////////// // CSlideShowDlg dialog class CSlideShowDlg : public CDialog { // Construction public: CSlideShowDlg(CWnd* pParent = NULL); // standard constructor public: CStringArray* m_pSlideList; // Dialog Data //{{AFX_DATA(CSlideShowDlg) enum { IDD = IDD_SLIDESHOWSETUP }; CListBox m_listboxSlides; CEdit m_editSlideName; UINT m_uintInterval; BOOL m_doLoop; CString m_stringSlideName; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CSlideShowDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation // Generated message map functions protected: //{{AFX_MSG(CSlideShowDlg) virtual BOOL OnInitDialog(); virtual void OnOK(); afx_msg void OnButtonAdd(); afx_msg void OnButtonRemove(); afx_msg void OnSelChangeListSlides(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };