update for HEAD-2003091401
[reactos.git] / subsys / system / explorer / Seashell / FilterDlg.cpp
1 // FilterDlg.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "SeaShell.h"
6 #include "FilterDlg.h"
7
8 #ifdef _DEBUG
9 #define new DEBUG_NEW
10 #undef THIS_FILE
11 static char THIS_FILE[] = __FILE__;
12 #endif
13
14 /////////////////////////////////////////////////////////////////////////////
15 // CFilterDlg dialog
16
17
18 CFilterDlg::CFilterDlg(CWnd* pParent /*=NULL*/)
19         : CDialog(CFilterDlg::IDD, pParent)
20 {
21         //{{AFX_DATA_INIT(CFilterDlg)
22         m_FileType = _T("");
23         m_Filter = _T("");
24         //}}AFX_DATA_INIT
25 }
26
27
28 void CFilterDlg::DoDataExchange(CDataExchange* pDX)
29 {
30         CDialog::DoDataExchange(pDX);
31         //{{AFX_DATA_MAP(CFilterDlg)
32         DDX_Text(pDX, IDC_EDIT_FILE_TYPE, m_FileType);
33         DDX_Text(pDX, IDC_EDIT_FILTER, m_Filter);
34         //}}AFX_DATA_MAP
35 }
36
37
38 BEGIN_MESSAGE_MAP(CFilterDlg, CDialog)
39         //{{AFX_MSG_MAP(CFilterDlg)
40         //}}AFX_MSG_MAP
41 END_MESSAGE_MAP()
42
43 /////////////////////////////////////////////////////////////////////////////
44 // CFilterDlg message handlers
45
46 BOOL CFilterDlg::OnInitDialog() 
47 {
48         CDialog::OnInitDialog();
49         
50         // TODO: Add extra initialization here
51         
52         return TRUE;  // return TRUE unless you set the focus to a control
53                       // EXCEPTION: OCX Property Pages should return FALSE
54 }