-
Notifications
You must be signed in to change notification settings - Fork 0
/
SearchTask.h
54 lines (41 loc) · 1.07 KB
/
SearchTask.h
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
52
53
54
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
#pragma once
class CSearchTask : public CMFCTasksPane
{
// Construction
public:
CSearchTask();
// Attributes
int m_nUserColorGroup;
int m_nUserColorTask;
protected:
int m_nDocumentsGroup;
CFont m_Font;
//CTreeCtrl m_wndTree;
CEdit m_wndEdit;
CCheckListBox m_wndCheck;
// Operations
public:
void UpdateMRUFilesList ();
//void UpdateToolbar ();
// Overrides
public:
protected:
//BOOL CreateTreeControl();
BOOL CreateEditControl();
BOOL CreateCheckBoxControl();
// Implementation
public:
virtual ~CSearchTask();
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
};