-
Notifications
You must be signed in to change notification settings - Fork 0
/
FolderProp.cpp
51 lines (41 loc) · 1.25 KB
/
FolderProp.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// FolderProp.cpp : implementation file
//
#include "stdafx.h"
#include "grasp95.h"
#include "FolderProp.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFolderProp dialog
CFolderProp::CFolderProp(CWnd* pParent /*=NULL*/)
: CDialog(CFolderProp::IDD, pParent)
{
//{{AFX_DATA_INIT(CFolderProp)
m_strSpaceUsed = _T("");
m_strName = _T("");
m_strPercent = _T("");
m_strType = _T("");
m_strLastWritten = _T("");
//}}AFX_DATA_INIT
}
void CFolderProp::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CFolderProp)
DDX_Text(pDX, IDC_FOLDER_SPACE, m_strSpaceUsed);
DDX_Text(pDX, IDC_FOLDER_NAME, m_strName);
DDX_Text(pDX, IDC_FOLDER_PERCENT, m_strPercent);
DDX_Text(pDX, IDC_FOLDER_TYPE, m_strType);
DDX_Text(pDX, IDC_LAST_WRITTEN, m_strLastWritten);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CFolderProp, CDialog)
//{{AFX_MSG_MAP(CFolderProp)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFolderProp message handlers