GuiFDir.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  * (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software; so you are free to use it any of your *
  9.  * applications(Freeware, Shareware, Commercial), but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements :(Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #if !defined(AFX_FDIR_H__25E4B82F_FB23_45B2_B475_91668BFF681B__INCLUDED_)
  23. #define AFX_FDIR_H__25E4B82F_FB23_45B2_B475_91668BFF681B__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // FDir.h : header file
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CFDir dialog
  31. class  CFWnd: public CWnd
  32. {
  33. public:
  34. void OnOpen();
  35. void OnReSize();
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. class GUILIBDLLEXPORT CGuiFDir : public CFileDialog
  39. {
  40. DECLARE_DYNAMIC(CGuiFDir)
  41. public:
  42. CGuiFDir(CWnd* parent);
  43. void OnInitDone();
  44. void OnFolderChange();
  45. public:
  46. CWnd* cw;
  47. CString m_GetPath;
  48. CEdit m_cedit;
  49. CFWnd cfwn;
  50. protected:
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_FDIR_H__25E4B82F_FB23_45B2_B475_91668BFF681B__INCLUDED_)