GetFileAttrDlg.cpp
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // GetFileAttrDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GetFileAttr.h"
  5. #include "GetFileAttrDlg.h"
  6. #include "ExecImageVersion.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CAboutDlg dialog used for App About
  14. class CAboutDlg : public CDialog
  15. {
  16. public:
  17. CAboutDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CAboutDlg)
  20. enum { IDD = IDD_ABOUTBOX };
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CAboutDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. //{{AFX_MSG(CAboutDlg)
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  34. {
  35. //{{AFX_DATA_INIT(CAboutDlg)
  36. //}}AFX_DATA_INIT
  37. }
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CAboutDlg)
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  45. //{{AFX_MSG_MAP(CAboutDlg)
  46. // No message handlers
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CGetFileAttrDlg dialog
  51. CGetFileAttrDlg::CGetFileAttrDlg(CWnd* pParent /*=NULL*/)
  52. : CDialog(CGetFileAttrDlg::IDD, pParent)
  53. {
  54. //{{AFX_DATA_INIT(CGetFileAttrDlg)
  55. m_strFile = _T("");
  56. m_strATime = _T("");
  57. m_strCTime = _T("");
  58. m_strMTime = _T("");
  59. m_strSize = _T("");
  60. m_bArchive = FALSE;
  61. m_bReadOnly = FALSE;
  62. m_bSystem = FALSE;
  63. m_bHidden = FALSE;
  64. //}}AFX_DATA_INIT
  65. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  66. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  67. }
  68. void CGetFileAttrDlg::DoDataExchange(CDataExchange* pDX)
  69. {
  70. CDialog::DoDataExchange(pDX);
  71. //{{AFX_DATA_MAP(CGetFileAttrDlg)
  72. DDX_Text(pDX, IDC_EDIT_FILE, m_strFile);
  73. DDX_Text(pDX, IDC_STATIC_ATIME, m_strATime);
  74. DDX_Text(pDX, IDC_STATIC_CTIME, m_strCTime);
  75. DDX_Text(pDX, IDC_STATIC_MTIME, m_strMTime);
  76. DDX_Text(pDX, IDC_STATIC_SIZE, m_strSize);
  77. DDX_Check(pDX, IDC_CHECK_ARCHIVE, m_bArchive);
  78. DDX_Check(pDX, IDC_CHECK_READONLY, m_bReadOnly);
  79. DDX_Check(pDX, IDC_CHECK_SYSTEM, m_bSystem);
  80. DDX_Check(pDX, IDC_CHECK_HIDDEN, m_bHidden);
  81. //}}AFX_DATA_MAP
  82. }
  83. BEGIN_MESSAGE_MAP(CGetFileAttrDlg, CDialog)
  84. //{{AFX_MSG_MAP(CGetFileAttrDlg)
  85. ON_WM_SYSCOMMAND()
  86. ON_WM_PAINT()
  87. ON_WM_QUERYDRAGICON()
  88. ON_BN_CLICKED(IDC_BUTTON_GETATTR, OnGetAttr)
  89. //}}AFX_MSG_MAP
  90. END_MESSAGE_MAP()
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CGetFileAttrDlg message handlers
  93. BOOL CGetFileAttrDlg::OnInitDialog()
  94. {
  95. CDialog::OnInitDialog();
  96. // Add "About..." menu item to system menu.
  97. // IDM_ABOUTBOX must be in the system command range.
  98. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  99. ASSERT(IDM_ABOUTBOX < 0xF000);
  100. CMenu* pSysMenu = GetSystemMenu(FALSE);
  101. if (pSysMenu != NULL)
  102. {
  103. CString strAboutMenu;
  104. strAboutMenu.LoadString(IDS_ABOUTBOX);
  105. if (!strAboutMenu.IsEmpty())
  106. {
  107. pSysMenu->AppendMenu(MF_SEPARATOR);
  108. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  109. }
  110. }
  111. // Set the icon for this dialog.  The framework does this automatically
  112. //  when the application's main window is not a dialog
  113. SetIcon(m_hIcon, TRUE); // Set big icon
  114. SetIcon(m_hIcon, FALSE); // Set small icon
  115. // TODO: Add extra initialization here
  116. return TRUE;  // return TRUE  unless you set the focus to a control
  117. }
  118. void CGetFileAttrDlg::OnSysCommand(UINT nID, LPARAM lParam)
  119. {
  120. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  121. {
  122. CAboutDlg dlgAbout;
  123. dlgAbout.DoModal();
  124. }
  125. else
  126. {
  127. CDialog::OnSysCommand(nID, lParam);
  128. }
  129. }
  130. // If you add a minimize button to your dialog, you will need the code below
  131. //  to draw the icon.  For MFC applications using the document/view model,
  132. //  this is automatically done for you by the framework.
  133. void CGetFileAttrDlg::OnPaint() 
  134. {
  135. if (IsIconic())
  136. {
  137. CPaintDC dc(this); // device context for painting
  138. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  139. // Center icon in client rectangle
  140. int cxIcon = GetSystemMetrics(SM_CXICON);
  141. int cyIcon = GetSystemMetrics(SM_CYICON);
  142. CRect rect;
  143. GetClientRect(&rect);
  144. int x = (rect.Width() - cxIcon + 1) / 2;
  145. int y = (rect.Height() - cyIcon + 1) / 2;
  146. // Draw the icon
  147. dc.DrawIcon(x, y, m_hIcon);
  148. }
  149. else
  150. {
  151. CDialog::OnPaint();
  152. }
  153. }
  154. // The system calls this to obtain the cursor to display while the user drags
  155. //  the minimized window.
  156. HCURSOR CGetFileAttrDlg::OnQueryDragIcon()
  157. {
  158. return (HCURSOR) m_hIcon;
  159. }
  160. void CGetFileAttrDlg::OnGetAttr() 
  161. {
  162. UpdateData(TRUE);
  163. CFileStatus rStatus;
  164. if(CFile::GetStatus(m_strFile,rStatus))
  165. {
  166. m_strSize.Format("%d字节",rStatus.m_size);
  167. m_strCTime = rStatus.m_ctime.Format("%Y年%m月%d日 %H:%M:%S");
  168. m_strMTime = rStatus.m_mtime.Format("%Y年%m月%d日 %H:%M:%S");
  169. m_strATime = rStatus.m_atime.Format("%Y年%m月%d日 %H:%M:%S");
  170. //判断是否只读
  171. if((rStatus.m_attribute & 0x01) == 0x01)
  172. m_bReadOnly = TRUE;
  173. else
  174. m_bReadOnly = FALSE;
  175. //判断是否隐藏
  176. if((rStatus.m_attribute & 0x02) == 0x02)
  177. m_bHidden = TRUE;
  178. else
  179. m_bHidden = FALSE;
  180. //判断是否存档
  181. if((rStatus.m_attribute & 0x20) == 0x20)
  182. m_bArchive = TRUE;
  183. else
  184. m_bArchive = FALSE;
  185. //判断是否是系统文件
  186. if((rStatus.m_attribute & 0x04) == 0x04)
  187. m_bSystem = TRUE;
  188. else
  189. m_bSystem = FALSE;
  190. UpdateData(FALSE);
  191. }
  192. }