123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #if !defined(AFX_PICLISTDLG_H__CE375690_294F_4281_805A_B64827CCAB9F__INCLUDED_)
- #define AFX_PICLISTDLG_H__CE375690_294F_4281_805A_B64827CCAB9F__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // PicListDlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CPicListDlg dialog
- class CPicListDlg : public CDialog
- {
- // Construction
- public:
- CPicListDlg(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CPicListDlg)
- enum { IDD = IDD_PICLIST };
- CString m_strPicName;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CPicListDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CPicListDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnDblclkListPic();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- void FileSearch(CListBox* pList, CString strPath, CString strFileName, int nLayer);
- BOOL DirSearch(CString strPath, CString strFileName);
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_PICLISTDLG_H__CE375690_294F_4281_805A_B64827CCAB9F__INCLUDED_)
|