blob: ee3fbeb51caa3120f59300cdab1a3fa56c978a79 (
plain)
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
|
// browserf.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "browserf.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBrowserFilter
CBrowserFilter::CBrowserFilter()
{
}
CBrowserFilter::~CBrowserFilter()
{
}
BEGIN_MESSAGE_MAP(CBrowserFilter, CComboBox)
//{{AFX_MSG_MAP(CBrowserFilter)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CBrowserFilter message handlers
void CBrowserFilter::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
{
// TODO: Add your code to determine the size of specified item
}
|